From c72a7be021a04a2c13204d77141ee759ce2500e5 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Mon, 13 Feb 2023 23:55:05 -0500 Subject: Add some tests --- run-tests.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 run-tests.sh (limited to 'run-tests.sh') diff --git a/run-tests.sh b/run-tests.sh new file mode 100755 index 0000000..556c8b6 --- /dev/null +++ b/run-tests.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +echo ";;;; Start Chibi" +chibi-scheme -I ./lib ./test/chibi.scm +echo ";;;; End Chibi" +echo ";;;; Start Gauche" +gosh -r7 -I ./lib ./test/gauche.scm +echo ";;;; End Gauche" +echo ";;;; Start Gerbil" +GERBIL_LOADPATH="./lib" gxi --lang r7rs ./test/gerbil.scm +echo ";;;; End Gerbil" +echo ";;;; Start Guile" +guile --r7rs -L ./lib +echo ";;;; End Guile" + -- cgit