Run valgrind with full leak check

This commit is contained in:
Max Brunsfeld 2016-01-28 21:18:41 -08:00
parent 6401a065ae
commit ca6dfb81d9

View file

@ -66,10 +66,11 @@ fi
case ${mode} in
valgrind)
valgrind \
valgrind \
--suppressions=./script/util/valgrind.supp \
--dsymutil=yes \
$cmd "${args[@]}" 2>&1 | \
--dsymutil=yes \
--leak-check=full \
$cmd "${args[@]}" 2>&1 | \
grep --color -E '\w+_specs?.cc:\d+|$'
;;