summaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorGravatar John Cowan 2021-11-07 13:26:39 -0500
committerGravatar John Cowan 2021-11-07 13:26:39 -0500
commit4a41fcd464fd24b700196bd00e7633050229d192 (patch)
treeaafee35678d420ded7346f8137ee20808ec5ba37 /makefile
parenteditorial (diff)
parentfix 'remove' test (diff)
Merge remote-tracking branch 'arvyy/master'
Diffstat (limited to '')
-rw-r--r--makefile27
1 files changed, 11 insertions, 16 deletions
diff --git a/makefile b/makefile
index fc060e5..20e4509 100644
--- a/makefile
+++ b/makefile
@@ -1,21 +1,16 @@
-.PHONY: test-guile test-gauche test-kawa test-chibi test-chicken
+.PHONY: test-chibi
-test-guile:
- guile -L . --r7rs dictionaries-test.scm
+# Testing through docker
+# pulls in srfi 126 implementation
+# which other wise is untested
+test-chibi-docker:
+ docker-compose run --rm chibi
-test-gauche:
- gosh -I . dictionaries-test.scm
-
-test-kawa:
- cp dictionaries.sld dictionaries.scm
- kawa dictionaries-test.scm
- rm dictionaries.scm
+test-gauche-docker:
+ docker-compose run --rm gauche
test-chibi:
- chibi-scheme dictionaries-test.scm
+ chibi-scheme -I . srfi-225-test.scm
-test-chicken:
- csc -R r7rs -X r7rs -sJ -o dictionaries.so dictionaries.sld
- csi -I . -R r7rs -s dictionaries-test.scm
- rm dictionaries.so
- rm dictionaries.import.scm
+test-gauche:
+ gosh -I . srfi-225-test.scm