tweak Valgrind invocation to show more callers

This commit is contained in:
Josh Coalson
2002-12-27 21:07:20 +00:00
parent e900edfdf9
commit af3145ebba
9 changed files with 10 additions and 10 deletions

View File

@@ -32,7 +32,7 @@ flac --help 1>/dev/null 2>/dev/null || die "ERROR can't find flac executable"
run_flac ()
{
if [ "$FLAC__VALGRIND" = yes ] ; then
valgrind --leak-check=yes --show-reachable=yes --num-callers=10 --logfile-fd=4 flac $* 4>>valgrind.log
valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 flac $* 4>>valgrind.log
else
flac $*
fi