mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
Add valgrind suppression file
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user