blob: 20e4509d0e3a55443c19f0c3d67568e4874ff693 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.PHONY: test-chibi
# Testing through docker
# pulls in srfi 126 implementation
# which other wise is untested
test-chibi-docker:
docker-compose run --rm chibi
test-gauche-docker:
docker-compose run --rm gauche
test-chibi:
chibi-scheme -I . srfi-225-test.scm
test-gauche:
gosh -I . srfi-225-test.scm
|