diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-08 14:21:39 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-08 14:21:39 +0200 |
commit | 63208c034bf660ed7f15bf09fdd4c813a6e6bf7a (patch) | |
tree | ba5646a0a5d7dc77c6ebc9d3bfa8b4f3d7c70d9e /tests/fate-run.sh | |
parent | e3869dd17ee15a1732dacba24e4cff36dd3d4cc5 (diff) | |
parent | bd392785a75d7d51414a9788d50396a8d9f29d77 (diff) | |
download | ffmpeg-63208c034bf660ed7f15bf09fdd4c813a6e6bf7a.tar.gz |
Merge commit 'bd392785a75d7d51414a9788d50396a8d9f29d77'
* commit 'bd392785a75d7d51414a9788d50396a8d9f29d77':
fate-run: Drop unnecessary regtest() indirection
Conflicts:
tests/fate-run.sh
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index ab1b8bb26e..9f5690d7be 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -146,18 +146,16 @@ enc_dec(){ tests/tiny_psnr $srcfile $decfile $cmp_unit $cmp_shift } -regtest(){ - t="${test#$2-}" - ref=${base}/ref/$2/$t - ${base}/${1}-regression.sh $t $2 $3 "$target_exec" "$target_path" "$threads" "$thread_type" "$cpuflags" "$samples" -} - lavffatetest(){ - regtest lavf lavf-fate tests/vsynth1 + 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" } lavftest(){ - regtest lavf lavf tests/vsynth1 + 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" } video_filter(){ |