summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest/test_bins.sh2
-rwxr-xr-xtest/test_flac.sh2
-rwxr-xr-xtest/test_grabbag.sh2
-rwxr-xr-xtest/test_libFLAC++.sh2
-rwxr-xr-xtest/test_libFLAC.sh2
-rwxr-xr-xtest/test_libOggFLAC++.sh2
-rwxr-xr-xtest/test_libOggFLAC.sh2
-rwxr-xr-xtest/test_metaflac.sh4
-rwxr-xr-xtest/test_streams.sh2
9 files changed, 10 insertions, 10 deletions
diff --git a/test/test_bins.sh b/test/test_bins.sh
index f79c71c6..f0a31652 100755
--- a/test/test_bins.sh
+++ b/test/test_bins.sh
@@ -33,7 +33,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
diff --git a/test/test_flac.sh b/test/test_flac.sh
index d7fbdba4..9bce64ec 100755
--- a/test/test_flac.sh
+++ b/test/test_flac.sh
@@ -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
diff --git a/test/test_grabbag.sh b/test/test_grabbag.sh
index 77f998f3..1ed08e95 100755
--- a/test/test_grabbag.sh
+++ b/test/test_grabbag.sh
@@ -32,7 +32,7 @@ test_cuesheet -h 1>/dev/null 2>/dev/null || die "ERROR can't find test_cuesheet
run_test_cuesheet ()
{
if [ "$FLAC__VALGRIND" = yes ] ; then
- valgrind --leak-check=yes --show-reachable=yes --num-callers=10 --logfile-fd=4 test_cuesheet $* 4>>valgrind.log
+ valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 test_cuesheet $* 4>>valgrind.log
else
test_cuesheet $*
fi
diff --git a/test/test_libFLAC++.sh b/test/test_libFLAC++.sh
index db3857d4..a5e6dfd1 100755
--- a/test/test_libFLAC++.sh
+++ b/test/test_libFLAC++.sh
@@ -31,7 +31,7 @@ export PATH
run_test_libFLACpp ()
{
if [ "$FLAC__VALGRIND" = yes ] ; then
- valgrind --leak-check=yes --show-reachable=yes --num-callers=10 --logfile-fd=4 test_libFLAC++ $* 4>>valgrind.log
+ valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 test_libFLAC++ $* 4>>valgrind.log
else
test_libFLAC++ $*
fi
diff --git a/test/test_libFLAC.sh b/test/test_libFLAC.sh
index 5e7927eb..2903457c 100755
--- a/test/test_libFLAC.sh
+++ b/test/test_libFLAC.sh
@@ -31,7 +31,7 @@ export PATH
run_test_libFLAC ()
{
if [ "$FLAC__VALGRIND" = yes ] ; then
- valgrind --leak-check=yes --show-reachable=yes --num-callers=10 --logfile-fd=4 test_libFLAC $* 4>>valgrind.log
+ valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 --workaround-gcc296-bugs=yes test_libFLAC $* 4>>valgrind.log
else
test_libFLAC $*
fi
diff --git a/test/test_libOggFLAC++.sh b/test/test_libOggFLAC++.sh
index 35ff5dc3..60362395 100755
--- a/test/test_libOggFLAC++.sh
+++ b/test/test_libOggFLAC++.sh
@@ -31,7 +31,7 @@ export PATH
run_test_libOggFLACpp ()
{
if [ "$FLAC__VALGRIND" = yes ] ; then
- valgrind --leak-check=yes --show-reachable=yes --num-callers=10 --logfile-fd=4 test_libOggFLAC++ $* 4>>valgrind.log
+ valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 test_libOggFLAC++ $* 4>>valgrind.log
else
test_libOggFLAC++ $*
fi
diff --git a/test/test_libOggFLAC.sh b/test/test_libOggFLAC.sh
index e767fab6..2d2660b9 100755
--- a/test/test_libOggFLAC.sh
+++ b/test/test_libOggFLAC.sh
@@ -31,7 +31,7 @@ export PATH
run_test_libOggFLAC ()
{
if [ "$FLAC__VALGRIND" = yes ] ; then
- valgrind --leak-check=yes --show-reachable=yes --num-callers=10 --logfile-fd=4 test_libOggFLAC $* 4>>valgrind.log
+ valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 test_libOggFLAC $* 4>>valgrind.log
else
test_libOggFLAC $*
fi
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
diff --git a/test/test_streams.sh b/test/test_streams.sh
index c187adb0..6f524008 100755
--- a/test/test_streams.sh
+++ b/test/test_streams.sh
@@ -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