From 8f4e2614e49f43105cde2239c0772ad101b5d55d Mon Sep 17 00:00:00 2001 From: OGINO Masanori Date: Thu, 16 Jul 2015 17:59:32 +0900 Subject: [PATCH] Add comment on how to test picrin with Valgrind. I hope we will really do it on Travis. :-) Reference: https://github.com/picrin-scheme/picrin/issues/294 Signed-off-by: OGINO Masanori --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 1c7119dd..91a12da9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,12 +7,14 @@ addons: apt: packages: - gcc-multilib +# - valgrind env: - CFLAGS="-m32" - CFLAGS="-m64" script: - perl --version - make test +# - make test-contrib TEST_RUNNER="valgrind -q --leak-check=full --dsymutil=yes --error-exitcode=1 bin/picrin" - make clean - make debug - make test