From: Måns Rullgård Date: Sun, 18 Jul 2010 20:19:30 +0000 (+0000) Subject: fate: add some helper functions to simplify test rules X-Git-Tag: n0.7.1~3159 X-Git-Url: http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/2b18c451bda2f12e30bb598af2c234031558d68a fate: add some helper functions to simplify test rules Originally committed as revision 24314 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 541f87a..015aab4 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -35,6 +35,30 @@ stddev(){ do_tiny_psnr "$1" "$2" stddev '<=' ${fuzz:-1} } +ffmpeg(){ + $target_exec $target_path/ffmpeg "$@" +} + +framecrc(){ + ffmpeg "$@" -f framecrc - +} + +framemd5(){ + ffmpeg "$@" -f framemd5 - +} + +crc(){ + ffmpeg "$@" -f crc - +} + +md5(){ + ffmpeg "$@" md5: +} + +pcm(){ + ffmpeg "$@" -vn -f s16le - +} + if ! test -e "$ref"; then echo "reference file '$ref' not found" exit 1