summaryrefslogtreecommitdiff
path: root/test/test_metaflac.sh
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2002-12-27 21:07:20 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2002-12-27 21:07:20 +0000
commitaf3145ebba129afc066d2a6bf843679cae8b81e3 (patch)
tree0d73214b68f059517ab8d3f39d27605384a04a54 /test/test_metaflac.sh
parente900edfdf961014e895171d6012b454e2ef5ba15 (diff)
downloadflac-af3145ebba129afc066d2a6bf843679cae8b81e3.tar.gz
tweak Valgrind invocation to show more callers
Diffstat (limited to 'test/test_metaflac.sh')
-rwxr-xr-xtest/test_metaflac.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_metaflac.sh b/test/test_metaflac.sh
index 64c2db28..b63099bd 100755
--- a/test/test_metaflac.sh
+++ b/test/test_metaflac.sh
@@ -35,7 +35,7 @@ metaflac --help 1>/dev/null 2>/dev/null || die "ERROR can't find metaflac execut
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
@@ -44,7 +44,7 @@ run_flac ()
run_metaflac ()
{
if [ "$FLAC__VALGRIND" = yes ] ; then
- valgrind --leak-check=yes --show-reachable=yes --num-callers=10 --logfile-fd=4 metaflac $* 4>>valgrind.log
+ valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 metaflac $* 4>>valgrind.log
else
metaflac $*
fi