summaryrefslogtreecommitdiff
path: root/test/test_seeking.sh
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2013-08-01 23:02:26 +1000
committerErik de Castro Lopo <erikd@mega-nerd.com>2013-08-01 23:02:26 +1000
commitd06d985487cf38f100c5506328285f3f4c6eaaaf (patch)
tree86d57aef62f9d728b313a06f262b7eb1bf7758c3 /test/test_seeking.sh
parentf742b93bb028f9b2ff4206afca153ec069adad7a (diff)
downloadflac-d06d985487cf38f100c5506328285f3f4c6eaaaf.tar.gz
test/ : Use new --no-error-on-compression-fail option as needed.
Diffstat (limited to 'test/test_seeking.sh')
-rwxr-xr-xtest/test_seeking.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_seeking.sh b/test/test_seeking.sh
index ce76de07..7708c580 100755
--- a/test/test_seeking.sh
+++ b/test/test_seeking.sh
@@ -24,7 +24,7 @@ die ()
exit 1
}
-if [ x = x"$1" ] ; then
+if [ x = x"$1" ] ; then
BUILD=debug
else
BUILD="$1"
@@ -52,9 +52,9 @@ run_flac ()
{
if [ x"$FLAC__TEST_WITH_VALGRIND" = xyes ] ; then
echo "valgrind --leak-check=yes --show-reachable=yes --num-callers=50 flac $*" >>test_seeking.valgrind.log
- valgrind --leak-check=yes --show-reachable=yes --num-callers=50 --log-fd=4 flac $* 4>>test_seeking.valgrind.log
+ valgrind --leak-check=yes --show-reachable=yes --num-callers=50 --log-fd=4 flac --no-error-on-compression-fail $* 4>>test_seeking.valgrind.log
else
- flac $*
+ flac --no-error-on-compression-fail $*
fi
}