Browse Source

fate: ensure file sizes match in oneoff tests

Originally committed as revision 24164 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Måns Rullgård 15 years ago
parent
commit
83b203dc94
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      tests/fate-run.sh

+ 3
- 1
tests/fate-run.sh View File

@@ -18,7 +18,9 @@ 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
size1=$(expr "$psnr" : '.*bytes: *\([0-9]*\)')
size2=$(expr "$psnr" : '.*bytes:[ 0-9]*/ *\([0-9]*\)')
if [ $max -gt ${3:-1} ] || [ $size1 != $size2 ]; then
echo "$psnr"
return 1
fi


Loading…
Cancel
Save