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/lavfi-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/lavfi-regression.sh')
-rwxr-xr-x | tests/lavfi-regression.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/lavfi-regression.sh b/tests/lavfi-regression.sh index b2a195a90e..4a483e68a5 100755 --- a/tests/lavfi-regression.sh +++ b/tests/lavfi-regression.sh @@ -11,15 +11,13 @@ set -e eval do_$test=y -rm -f "$logfile" - do_video_filter() { label=$1 filters=$2 shift 2 - printf '%-20s' $label >>$logfile + printf '%-20s' $label run_ffmpeg $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src \ - $ENC_OPTS -vf "$filters" -vcodec rawvideo $* -f nut md5: >>$logfile + $ENC_OPTS -vf "$filters" -vcodec rawvideo $* -f nut md5: } do_lavfi() { |