diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-05-01 13:13:49 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-05-01 13:25:42 +0200 |
commit | 24939d567b8a292c8c9d803fa1d44f00c1a29575 (patch) | |
tree | a440990c573c0162c25ca28d5aee4acd3f9cbf7c | |
parent | 1924a61a0a39dfb216f09a6d4d3cb9a1f8a758b4 (diff) | |
download | ffmpeg-24939d567b8a292c8c9d803fa1d44f00c1a29575.tar.gz |
fate/pixfmts: use the appropriate variable names for temporary files.
${1} is now the filter args and is inappropriate as a unique name for
the test (and causes some FATE issues because of the ':' in them).
${filter} is not used either to replace the ${1} because ${outfile}
already contains a unique name for the test.
-rwxr-xr-x | tests/fate-run.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 4d5d214776..ab1b8bb26e 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -185,10 +185,10 @@ pixfmts(){ prefilter_chain=$2 showfiltfmts="$target_exec $target_path/libavfilter/filtfmts-test" - scale_exclude_fmts=${outfile}${1}_scale_exclude_fmts - scale_in_fmts=${outfile}${1}_scale_in_fmts - scale_out_fmts=${outfile}${1}_scale_out_fmts - in_fmts=${outfile}${1}_in_fmts + scale_exclude_fmts=${outfile}_scale_exclude_fmts + scale_in_fmts=${outfile}_scale_in_fmts + scale_out_fmts=${outfile}_scale_out_fmts + in_fmts=${outfile}_in_fmts # exclude pixel formats which are not supported as input $showfiltfmts scale | awk -F '[ \r]' '/^INPUT/{ fmt=substr($3, 5); print fmt }' | sort >$scale_in_fmts |