switch from --logfile-fd= to --log-fd= to match newer valgrind options

This commit is contained in:
Josh Coalson
2007-06-20 01:26:29 +00:00
parent e002f83703
commit 89f01a8019
8 changed files with 14 additions and 14 deletions

View File

@@ -40,7 +40,7 @@ PATH=../obj/$BUILD/bin:$PATH
run_test_libFLAC ()
{
if [ x"$FLAC__TEST_WITH_VALGRIND" = xyes ] ; then
valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 test_libFLAC $* 4>>test_libFLAC.valgrind.log
valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --log-fd=4 test_libFLAC $* 4>>test_libFLAC.valgrind.log
else
test_libFLAC $*
fi