diff options
author | Måns Rullgård <mans@mansr.com> | 2010-07-18 20:19:16 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-07-18 20:19:16 +0000 |
commit | 122a9af76b1caee50e8c80992de650b5a1013fd3 (patch) | |
tree | f2a9f6cbc1df9310f493e1a582425462f603a6e6 /tests/fate-run.sh | |
parent | ed62c6b62414435b78cf3450b71d44a2d0aea149 (diff) | |
download | ffmpeg-122a9af76b1caee50e8c80992de650b5a1013fd3.tar.gz |
fate-run: rename some variables consistently with other files
Originally committed as revision 24311 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 3d322664f7..6177a0ab94 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -4,14 +4,18 @@ base=$(dirname $0) . "${base}/md5.sh" test="${1#fate-}" -SAMPLES_PATH=$2 +samples=$2 target_exec=$3 -BUILD_PATH=$4 +target_path=$4 command=$5 cmp=${6:-diff} ref=${7:-"${base}/ref/fate/${test}"} fuzz=$8 +# compatibility with Mike's test specs +SAMPLES_PATH=$samples +BUILD_PATH=$target_path + outdir="tests/data/fate" outfile="${outdir}/${test}" |