summaryrefslogtreecommitdiff
path: root/tests/run-tests.sh
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2024-01-06 20:09:24 +0100
committerEkaitz Zarraga <ekaitz@elenq.tech>2024-01-06 20:09:24 +0100
commit2503388cfe7ef0e90a384095382f7e6180074cb5 (patch)
tree85570713ab8e1001ba4603f5c8a331b0fb6eb309 /tests/run-tests.sh
Initial commit
Diffstat (limited to 'tests/run-tests.sh')
-rwxr-xr-xtests/run-tests.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/run-tests.sh b/tests/run-tests.sh
new file mode 100755
index 0000000..e9a543d
--- /dev/null
+++ b/tests/run-tests.sh
@@ -0,0 +1,12 @@
+HERE=`dirname $0`
+TESTS=$@
+
+pushd "$HERE"
+if [ -z "$TESTS" ]; then
+ TESTS=*.scm
+fi
+
+for i in $TESTS; do
+ guile -L .. --r7rs "$i"
+done
+popd