From 85d513abe66abcc6dae26cecc4f22dc878d7d4a5 Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Sun, 29 Jun 2014 01:23:21 +0900 Subject: [PATCH] remove "2> /dev/null" from make test command line --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 530e568a..12347110 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,7 @@ add_custom_target(run bin/picrin DEPENDS repl) add_custom_target(test DEPENDS no-act test-r7rs) # $ make no-act -add_custom_target(no-act bin/picrin -e '' > /dev/null 2> /dev/null DEPENDS repl) +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)