From d6fa29071fd24b719ebe8bc7e299b21f28ac182d Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Sun, 15 Sep 2013 19:58:35 +1000 Subject: test/test_seeking.sh : Fix detection of Ogg support. --- test/test_seeking.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'test') diff --git a/test/test_seeking.sh b/test/test_seeking.sh index 7708c580..8057038b 100755 --- a/test/test_seeking.sh +++ b/test/test_seeking.sh @@ -78,15 +78,13 @@ run_test_seeking () fi } -echo "Checking for --ogg support in flac..." -if flac --ogg --silent --force-raw-format --endian=little --sign=signed --channels=1 --bps=8 --sample-rate=44100 -c $0 1>/dev/null 2>&1 ; then +echo -n "Checking for --ogg support in flac ... " +if flac --ogg --no-error-on-compression-fail --silent --force-raw-format --endian=little --sign=signed --channels=1 --bps=8 --sample-rate=44100 -c $0 1>/dev/null 2>&1 ; then has_ogg=yes; - echo "flac --ogg works" else has_ogg=no; - echo "flac --ogg doesn't work" fi - +echo ${has_ogg} echo "Generating streams..." if [ ! -f noise.raw ] ; then -- cgit v1.2.1