run valgrind over all C++ tests but only output 'definitely lost' values
This commit is contained in:
parent
8e708c89fd
commit
17e2b83117
1 changed files with 3 additions and 1 deletions
4
Makefile
4
Makefile
|
@ -34,6 +34,8 @@ pep8:
|
|||
@pep8 -r --select=W391 -q --filename=*.py `pwd`/tests/ | xargs gsed -i -e :a -e '/^\n*$/{$d;N;ba' -e '}'
|
||||
|
||||
grind:
|
||||
@valgrind --leak-check=full tests/cpp_tests/font_registration_test
|
||||
@for FILE in tests/cpp_tests/*-bin; do \
|
||||
valgrind --leak-check=full --log-fd=1 $${FILE} | grep definitely; \
|
||||
done
|
||||
|
||||
.PHONY: clean reset uninstall test install
|
||||
|
|
Loading…
Reference in a new issue