diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-03-18 01:29:50 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-03-18 01:29:50 +0100 |
commit | bb97bcec6b2b1f7cbb82f867892c1d91811e4dcf (patch) | |
tree | 483a05554de0008102c1c783178c37997390b294 /tests/fate-run.sh | |
parent | aa1f38015cb0d04a5c50a8957dd7aba79f0d8882 (diff) | |
download | ffmpeg-bb97bcec6b2b1f7cbb82f867892c1d91811e4dcf.tar.gz |
Fix TARGET_SAMPLES and TARGET_PATH for some fate tests.
This allows running more fate tests on remote targets
without the source tree.
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 48e9dd0bdc..35d79a6b71 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -8,7 +8,7 @@ base=$(dirname $0) base64=tests/base64 test="${1#fate-}" -samples=$2 +target_samples=$2 target_exec=$3 target_path=$4 command=$5 @@ -153,13 +153,13 @@ enc_dec(){ lavffatetest(){ t="${test#lavf-fate-}" ref=${base}/ref/lavf-fate/$t - ${base}/lavf-regression.sh $t lavf-fate tests/vsynth1 "$target_exec" "$target_path" "$threads" "$thread_type" "$cpuflags" "$samples" + ${base}/lavf-regression.sh $t lavf-fate tests/vsynth1 "$target_exec" "$target_path" "$threads" "$thread_type" "$cpuflags" "$target_samples" } lavftest(){ t="${test#lavf-}" ref=${base}/ref/lavf/$t - ${base}/lavf-regression.sh $t lavf tests/vsynth1 "$target_exec" "$target_path" "$threads" "$thread_type" "$cpuflags" "$samples" + ${base}/lavf-regression.sh $t lavf tests/vsynth1 "$target_exec" "$target_path" "$threads" "$thread_type" "$cpuflags" "$target_samples" } video_filter(){ |