From 4ac9fdbcdad9ccf71a4467a3eae7855cc0ffef00 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Thu, 2 Nov 2006 01:38:55 +0000 Subject: [PATCH] default to FLAC__TEST_LEVEL=1 --- test/test_bins.sh | 4 ++++ test/test_streams.sh | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/test/test_bins.sh b/test/test_bins.sh index 452ecbcb..2f65c224 100755 --- a/test/test_bins.sh +++ b/test/test_bins.sh @@ -41,6 +41,10 @@ PATH=../src/flac:$PATH PATH=../obj/$BUILD/bin:$PATH BINS_PATH=../../test_files/bins +if [ x"$FLAC__TEST_LEVEL" = x ] ; then + FLAC__TEST_LEVEL=1 +fi + flac --help 1>/dev/null 2>/dev/null || die "ERROR can't find flac executable" run_flac () diff --git a/test/test_streams.sh b/test/test_streams.sh index d3d9fc9e..09968664 100755 --- a/test/test_streams.sh +++ b/test/test_streams.sh @@ -35,6 +35,10 @@ PATH=../src/flac:$PATH PATH=../src/test_streams:$PATH PATH=../obj/$BUILD/bin:$PATH +if [ x"$FLAC__TEST_LEVEL" = x ] ; then + FLAC__TEST_LEVEL=1 +fi + flac --help 1>/dev/null 2>/dev/null || die "ERROR can't find flac executable" run_flac ()