diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-26 16:16:54 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-26 16:21:20 -0300 |
commit | baaf24aceab851c6db75a5f497e64d1ae0f85c6b (patch) | |
tree | a96a16e7605374564d4cdc8972b8bdb6eaca823f /src | |
parent | c002ffe2f3b76419ff5d16356d5e57fa518ac68b (diff) | |
download | rneovim-baaf24aceab851c6db75a5f497e64d1ae0f85c6b.tar.gz rneovim-baaf24aceab851c6db75a5f497e64d1ae0f85c6b.tar.bz2 rneovim-baaf24aceab851c6db75a5f497e64d1ae0f85c6b.zip |
Add valgrind suppression file
Diffstat (limited to 'src')
-rw-r--r-- | src/testdir/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/testdir/Makefile b/src/testdir/Makefile index 663abffff9..1bf6f74ef8 100644 --- a/src/testdir/Makefile +++ b/src/testdir/Makefile @@ -2,9 +2,9 @@ # Makefile to run all tests for Vim # -VIMPROG = ../../build/bin/nvim +VIMPROG := ../../build/bin/nvim -SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \ +SCRIPTS := test1.out test2.out test3.out test4.out test5.out test6.out \ test7.out test8.out test9.out test10.out test11.out \ test12.out test13.out test14.out test15.out test17.out \ test18.out test19.out test20.out test21.out test22.out \ @@ -25,14 +25,14 @@ SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \ test94.out test95.out test96.out test97.out test98.out \ test99.out test100.out test101.out test102.out test103.out -SCRIPTS_GUI = test16.out +SCRIPTS_GUI := test16.out ifdef VALGRIND_CHECK -VALGRIND := valgrind --leak-check=yes --error-exitcode=1 --log-file=valgrind.$* +VALGRIND = valgrind --suppressions=../../.valgrind.supp --leak-check=yes --error-exitcode=1 --log-file=valgrind.$* endif ifdef TESTNUM -SCRIPTS = test$(TESTNUM).out +SCRIPTS := test$(TESTNUM).out endif .SUFFIXES: .in .out |