Minor edits.

This commit is contained in:
sforman 2023-08-12 08:40:55 -07:00
parent 8bbbd2a4a4
commit 6ed3a770fb
1 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
# Simple Test Set for Joy Programming Language # Simple Test Set for Joy Programming Language
Each test consists of a snippet of Joy code along with the expected Each test consists of a snippet of Joy code along with the expected
output (stdout and stderr) for a (conforming) Joy implementation. They output (stdout and stderr) for a conforming Joy implementation. They
are run with make. are run with GNU make.
For the explanation of how this test system works see: For the explanation of how this test system works see:
https://chrismorgan.info/blog/make-and-git-diff-test-harness/ https://chrismorgan.info/blog/make-and-git-diff-test-harness/
@ -10,11 +10,11 @@ https://chrismorgan.info/blog/make-and-git-diff-test-harness/
Set the JOY environment variable to point to the joy interpreter to test, Set the JOY environment variable to point to the joy interpreter to test,
e.g.: e.g.:
export JOY="python -m joy -q" export JOY="../../implementations/Python/joy -q"
-or- -or-
setenv JOY "python -m joy -q" setenv JOY "../../implementations/Python/joy -q"
or whatever for your shell. Then run make. or whatever for your shell. Then run make.