diff options
author | Josh Coalson <jcoalson@users.sourceforce.net> | 2002-12-30 23:31:47 +0000 |
---|---|---|
committer | Josh Coalson <jcoalson@users.sourceforce.net> | 2002-12-30 23:31:47 +0000 |
commit | 80936c5ba1bc461916a46b45cfc97e353a91f4ed (patch) | |
tree | da84d844cb6850c6902f52f10304177e6d9ebe83 /test/test_metaflac.sh | |
parent | 0b3617c25fc4f85c9a07cd528d44ff9a1c47b387 (diff) | |
download | flac-80936c5ba1bc461916a46b45cfc97e353a91f4ed.tar.gz |
make valgrind output go into test-specific log file instead of one massive valgrind.log
Diffstat (limited to 'test/test_metaflac.sh')
-rwxr-xr-x | test/test_metaflac.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_metaflac.sh b/test/test_metaflac.sh index b63099bd..b4165037 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=100 --logfile-fd=4 flac $* 4>>valgrind.log + valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 flac $* 4>>test_metaflac.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=100 --logfile-fd=4 metaflac $* 4>>valgrind.log + valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 metaflac $* 4>>test_metaflac.valgrind.log else metaflac $* fi |