From 20427fb66a0e1a1698b96c719d4df64b7e621a4d Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Sun, 22 Jun 2014 22:29:02 +0900 Subject: [PATCH] 'make test' runs r7rs tests --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bba9bd1d..12347110 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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)