diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-11-09 21:37:18 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-16 16:03:23 +0200 |
commit | 67a4811c88c4eaa5503cf6abea27a0e64afb6a65 (patch) | |
tree | a8d18df872772499b74a33c849acbe90fc11a4f3 /tests/fate-run.sh | |
parent | 733cb1c6c59d291c3a831b95bf0346d2785e8bcf (diff) | |
download | ffmpeg-67a4811c88c4eaa5503cf6abea27a0e64afb6a65.tar.gz |
tests: Fix test name for pixfmts tests(cherry picked from commit e1ee0521a698809ed216e9e5c11bd2bbb466ed04)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 48e9dd0bdc..7f88dff246 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -200,12 +200,14 @@ pixfmts(){ $showfiltfmts $filter | awk -F '[ \r]' '/^INPUT/{ fmt=substr($3, 5); print fmt }' | sort >$in_fmts pix_fmts=$(comm -12 $scale_exclude_fmts $in_fmts) + outertest=$test for pix_fmt in $pix_fmts; do test=$pix_fmt video_filter "${prefilter_chain}format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt done rm $in_fmts $scale_in_fmts $scale_out_fmts $scale_exclude_fmts + test=$outertest } mkdir -p "$outdir" |