diff options
author | Josh Coalson <jcoalson@users.sourceforce.net> | 2003-01-14 09:00:25 +0000 |
---|---|---|
committer | Josh Coalson <jcoalson@users.sourceforce.net> | 2003-01-14 09:00:25 +0000 |
commit | ecf57b7514dd6f05820ca8be9e72d40de11f9810 (patch) | |
tree | 667299fd926916f82dd73f6d4dfecfef89222fe9 /test/test_metaflac.sh | |
parent | a69b1a8f544eaf87a5e5cce1fe864568e5b752ac (diff) | |
download | flac-ecf57b7514dd6f05820ca8be9e72d40de11f9810.tar.gz |
minor syntax
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 80d89384..ef1fbc0c 100755 --- a/test/test_metaflac.sh +++ b/test/test_metaflac.sh @@ -34,7 +34,7 @@ metaflac --help 1>/dev/null 2>/dev/null || die "ERROR can't find metaflac execut run_flac () { - if [ "$FLAC__VALGRIND" = yes ] ; then + if [ x"$FLAC__VALGRIND" = xyes ] ; then valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 flac $* 4>>test_metaflac.valgrind.log else flac $* @@ -43,7 +43,7 @@ run_flac () run_metaflac () { - if [ "$FLAC__VALGRIND" = yes ] ; then + if [ x"$FLAC__VALGRIND" = xyes ] ; then valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 metaflac $* 4>>test_metaflac.valgrind.log else metaflac $* |