diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-11-09 21:37:18 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-10 02:13:10 +0200 |
commit | feb869b6829ca608f2f0c879728618f11271d695 (patch) | |
tree | 4143afc64574e8ba6d13db35ea532bf3e02b8d59 | |
parent | b73e47a413ae7ed7bdfd1a5ae388f919e7dece30 (diff) | |
download | ffmpeg-feb869b6829ca608f2f0c879728618f11271d695.tar.gz |
tests: Fix test name for pixfmts tests(cherry picked from commit e1ee0521a698809ed216e9e5c11bd2bbb466ed04)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 9f5690d7be..768c1e1ace 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -196,12 +196,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" |