diff options
Diffstat (limited to 'contrib/ffmpeg/tests/seek_test.sh')
-rwxr-xr-x | contrib/ffmpeg/tests/seek_test.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/contrib/ffmpeg/tests/seek_test.sh b/contrib/ffmpeg/tests/seek_test.sh new file mode 100755 index 000000000..7132a2590 --- /dev/null +++ b/contrib/ffmpeg/tests/seek_test.sh @@ -0,0 +1,27 @@ +#!/bin/sh + +LC_ALL=C +export LC_ALL + +datadir="tests/data" + +logfile="$datadir/seek.regression" +reffile="$1" + +list=`grep '^tests/data/[ab]-' "$reffile"` +rm -f $logfile +for i in $list ; do + echo ---------------- >> $logfile + echo $i >> $logfile + tests/seek_test $i >> $logfile +done + +if diff -u "$reffile" "$logfile" ; then + echo + echo seek regression test: success + exit 0 +else + echo + echo seek regression test: error + exit 1 +fi |