diff options
author | Robby Zambito <contact@robbyzambito.me> | 2023-02-14 20:33:23 -0500 |
---|---|---|
committer | Robby Zambito <contact@robbyzambito.me> | 2023-02-14 20:33:23 -0500 |
commit | 0b17e637d3791d1ca94558429f9deba3a5876166 (patch) | |
tree | 898b7b97fe7d5d3b4c6f3c7a8e1658325e8ab112 /run-tests.sh | |
parent | c72a7be021a04a2c13204d77141ee759ce2500e5 (diff) |
Use assoc symbols for keys instead of strings for objects.
Update the test suite to be more compatible with SRFI 64.
Diffstat (limited to 'run-tests.sh')
-rwxr-xr-x | run-tests.sh | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/run-tests.sh b/run-tests.sh index 556c8b6..8178ad5 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -1,15 +1,8 @@ #!/bin/sh -echo ";;;; Start Chibi" +echo chibi-scheme -I ./lib ./test/chibi.scm -echo ";;;; End Chibi" -echo ";;;; Start Gauche" +echo gosh -r7 -I ./lib ./test/gauche.scm -echo ";;;; End Gauche" -echo ";;;; Start Gerbil" +echo GERBIL_LOADPATH="./lib" gxi --lang r7rs ./test/gerbil.scm -echo ";;;; End Gerbil" -echo ";;;; Start Guile" -guile --r7rs -L ./lib -echo ";;;; End Guile" - |