Merge pull request #272 from omasanori/r7rs-test
Move r7rs-tests.scm into a nitro.
This commit is contained in:
commit
8932dbddd6
5
Makefile
5
Makefile
|
@ -68,10 +68,7 @@ docs/contrib.rst: $(CONTRIB_DOCS)
|
||||||
run: bin/picrin
|
run: bin/picrin
|
||||||
bin/picrin
|
bin/picrin
|
||||||
|
|
||||||
test: test-r7rs test-contribs test-nostdlib
|
test: test-contribs test-nostdlib
|
||||||
|
|
||||||
test-r7rs: bin/picrin t/r7rs-tests.scm
|
|
||||||
bin/picrin t/r7rs-tests.scm
|
|
||||||
|
|
||||||
test-contribs: bin/picrin $(CONTRIB_TESTS)
|
test-contribs: bin/picrin $(CONTRIB_TESTS)
|
||||||
|
|
||||||
|
|
|
@ -22,3 +22,10 @@ CONTRIB_LIBS += \
|
||||||
contrib/20.r7rs/scheme/process-context.scm\
|
contrib/20.r7rs/scheme/process-context.scm\
|
||||||
contrib/20.r7rs/scheme/time.scm\
|
contrib/20.r7rs/scheme/time.scm\
|
||||||
contrib/20.r7rs/scheme/r5rs.scm
|
contrib/20.r7rs/scheme/r5rs.scm
|
||||||
|
|
||||||
|
CONTRIB_TESTS += test-r7rs
|
||||||
|
|
||||||
|
test-r7rs: bin/picrin
|
||||||
|
for test in `ls contrib/20.r7rs/t/*.scm`; do \
|
||||||
|
bin/picrin "$$test"; \
|
||||||
|
done
|
||||||
|
|
Loading…
Reference in New Issue