summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2002-08-31 05:47:33 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2002-08-31 05:47:33 +0000
commit214d319181d085f9f3e4081095ed7e2a505da46f (patch)
treedd29193a468df747b64d4adb3a008d716ed908d2 /test
parent753ed75ff136891934d86064a0daeba158b381a4 (diff)
downloadflac-214d319181d085f9f3e4081095ed7e2a505da46f.tar.gz
fix bugs in encode arguments
Diffstat (limited to 'test')
-rwxr-xr-xtest/test_bins.sh2
-rwxr-xr-xtest/test_streams.sh3
2 files changed, 2 insertions, 3 deletions
diff --git a/test/test_bins.sh b/test/test_bins.sh
index 3b665652..84adbcfc 100755
--- a/test/test_bins.sh
+++ b/test/test_bins.sh
@@ -64,7 +64,7 @@ for f in b00 b01 b02 b03 ; do
for bps in 8 16 24 ; do
for opt in 0 1 2 4 5 6 8 ; do
for extras in '' '-p' '-e' ; do
- for blocksize in '' '-b 32' '--lax -b 32768' '--lax -b 65535' ; do
+ for blocksize in '' '--lax -b 32' '--lax -b 32768' '--lax -b 65535' ; do
test_file $BINS_PATH/$f $channels $bps "-$opt $extras $blocksize"
done
done
diff --git a/test/test_streams.sh b/test/test_streams.sh
index 467b735a..aed3d689 100755
--- a/test/test_streams.sh
+++ b/test/test_streams.sh
@@ -279,7 +279,6 @@ for bps in 8 16 24 ; do
done
echo "Testing some frame header variations..."
-test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p -b $max_lpc_order"
test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax -b $max_lpc_order"
test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax -b 65535"
test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax --sample-rate=9"
@@ -317,7 +316,7 @@ for channels in 1 2 4 8 ; do
for bps in 8 16 24 ; do
for opt in 0 1 2 3 4 5 6 7 8 ; do
for extras in '' '-p' '-e' ; do
- for blocksize in '' '-b 32' '--lax -b 32768' '--lax -b 65535' ; do
+ for blocksize in '' '--lax -b 32' '--lax -b 32768' '--lax -b 65535' ; do
test_file noise $channels $bps "-$opt $extras $blocksize"
done
done