diff options
author | Josh Coalson <jcoalson@users.sourceforce.net> | 2004-07-17 00:22:39 +0000 |
---|---|---|
committer | Josh Coalson <jcoalson@users.sourceforce.net> | 2004-07-17 00:22:39 +0000 |
commit | ba56c9e31a41fb54450df20d99b500e9d32e9570 (patch) | |
tree | e3642b0a818b3b962d4142ea0b1536ddd7eebea2 /test/test_bins.sh | |
parent | 6d57954125e73fe3e1e481ea5ab8b26a40743db3 (diff) | |
download | flac-ba56c9e31a41fb54450df20d99b500e9d32e9570.tar.gz |
add --force to run_flac invocations
Diffstat (limited to 'test/test_bins.sh')
-rwxr-xr-x | test/test_bins.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_bins.sh b/test/test_bins.sh index 92b1ffa1..7478cd8b 100755 --- a/test/test_bins.sh +++ b/test/test_bins.sh @@ -49,13 +49,13 @@ test_file () encode_options="$4" echo -n "$name (--channels=$channels --bps=$bps $encode_options): encode..." - cmd="run_flac --verify --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options $name.bin" + cmd="run_flac --verify --silent --force --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options $name.bin" echo "### ENCODE $name #######################################################" >> ./streams.log echo "### cmd=$cmd" >> ./streams.log $cmd 2>>./streams.log || die "ERROR during encode of $name" echo -n "decode..." - cmd="run_flac --silent --endian=big --sign=signed --decode --force-raw-format $name.flac"; + cmd="run_flac --silent --force --endian=big --sign=signed --decode --force-raw-format $name.flac"; echo "### DECODE $name #######################################################" >> ./streams.log echo "### cmd=$cmd" >> ./streams.log $cmd 2>>./streams.log || die "ERROR during decode of $name" |