diff options
author | Måns Rullgård <mans@mansr.com> | 2010-07-09 00:40:51 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-07-09 00:40:51 +0000 |
commit | aab3ea5f7d53d98d696b87b5661f45dfadd8600a (patch) | |
tree | 1cd18b0a2f1c0ade3ea849e0b5489624d1060074 /tests/fate-run.sh | |
parent | 3ade7d32c1f17f2f833ff17c2cbd46d6de66104c (diff) | |
download | ffmpeg-aab3ea5f7d53d98d696b87b5661f45dfadd8600a.tar.gz |
fate: add oneoff comparison method
This adds the 'oneoff' comparison method. It compares two s16le pcm
files with a max difference <= the fuzz factor treated as success.
Default fuzz is 1. On failure, the full tiny_psnr output is printed.
Originally committed as revision 24134 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 39f42ffcc3..7dce9b030e 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -15,10 +15,20 @@ fuzz=$8 outdir="tests/data/fate" outfile="${outdir}/${test}" +oneoff(){ + psnr=$(tests/tiny_psnr "$1" "$2" 2 0 0) + max=$(expr "$psnr" : '.*MAXDIFF: *\([0-9]*\)') + if [ $max -gt ${3:-1} ]; then + echo "$psnr" + return 1 + fi +} + mkdir -p "$outdir" eval $target_exec $command > "$outfile" 2>/dev/null case $cmp in diff) diff -u -w "$ref" "$outfile" ;; + oneoff) oneoff "$ref" "$outfile" "$fuzz" ;; esac |