remove --workaroung-gcc296-bugs=yes from Valgrind invocation

This commit is contained in:
Josh Coalson
2002-12-29 10:06:19 +00:00
parent dd190236c6
commit 6bc4e4f200

View File

@@ -31,7 +31,7 @@ export PATH
run_test_libFLAC ()
{
if [ "$FLAC__VALGRIND" = yes ] ; then
valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 --workaround-gcc296-bugs=yes 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