diff options
author | Mans Rullgard <mans@mansr.com> | 2011-06-19 16:19:06 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-06-21 12:37:58 +0100 |
commit | ea57502c82a91362daeafec392375706fa266d8b (patch) | |
tree | fa4d240bfe4c8b63196d69f6c81c5174c6bad2c3 /tests/lavf-regression.sh | |
parent | e6c52cee541ba23a7aec525f72dff73c188dad06 (diff) | |
download | ffmpeg-ea57502c82a91362daeafec392375706fa266d8b.tar.gz |
fate: remove output redirections from old regtest scripts
All tests are run through the fate-run.sh script which already
sets up redirections. Using the outputs set there simplifies
things somewhat.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'tests/lavf-regression.sh')
-rwxr-xr-x | tests/lavf-regression.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/lavf-regression.sh b/tests/lavf-regression.sh index 39e752b3c6..d7e684032c 100755 --- a/tests/lavf-regression.sh +++ b/tests/lavf-regression.sh @@ -31,9 +31,9 @@ do_image_formats() mkdir -p "$outfile" file=${outfile}%02d.$1 run_ffmpeg $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src $2 $ENC_OPTS $3 -t 0.5 -y -qscale 10 $target_path/$file - do_md5sum ${outfile}02.$1 >> $logfile + do_md5sum ${outfile}02.$1 do_ffmpeg_crc $file $DEC_OPTS $3 -i $target_path/$file - wc -c ${outfile}02.$1 >> $logfile + wc -c ${outfile}02.$1 } do_audio_only() @@ -43,8 +43,6 @@ do_audio_only() do_ffmpeg_crc $file $DEC_OPTS $4 -i $target_path/$file } -rm -f "$logfile" - if [ -n "$do_avi" ] ; then do_lavf avi fi |