'make test' runs r7rs tests

This commit is contained in:
Yuichi Nishiwaki 2014-06-22 22:29:02 +09:00
parent 2932486ab5
commit 20427fb66a
1 changed files with 4 additions and 1 deletions

View File

@ -40,11 +40,14 @@ include(tools/CMakeLists.txt)
add_custom_target(run bin/picrin DEPENDS repl)
# $ make test
add_custom_target(test DEPENDS no-act)
add_custom_target(test DEPENDS no-act test-r7rs)
# $ make no-act
add_custom_target(no-act bin/picrin -e '' > /dev/null DEPENDS repl)
# $ make test-r7rs
add_custom_target(test-r7rs bin/picrin ${PROJECT_SOURCE_DIR}/t/r7rs-tests.scm DEPENDS repl)
# $ make tak
add_custom_target(tak bin/picrin etc/tak.scm DEPENDS repl)