diff options
| author | 2021-11-07 13:26:39 -0500 | |
|---|---|---|
| committer | 2021-11-07 13:26:39 -0500 | |
| commit | 4a41fcd464fd24b700196bd00e7633050229d192 (patch) | |
| tree | aafee35678d420ded7346f8137ee20808ec5ba37 /makefile | |
| parent | editorial (diff) | |
| parent | fix 'remove' test (diff) | |
Merge remote-tracking branch 'arvyy/master'
Diffstat (limited to '')
| -rw-r--r-- | makefile | 27 |
1 files changed, 11 insertions, 16 deletions
@@ -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 |
