From 0b17e637d3791d1ca94558429f9deba3a5876166 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Tue, 14 Feb 2023 20:33:23 -0500 Subject: Use assoc symbols for keys instead of strings for objects. Update the test suite to be more compatible with SRFI 64. --- run-tests.sh | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'run-tests.sh') 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" - -- cgit