ffmpeg/tests/seek-regression.sh
Måns Rullgård cbc4670c37 Revert "Remove the self reference in the seektest that prevented it from"
This reverts r22151.  It prevents the seektest from running at all and
is thus of no use whatsoever.

Originally committed as revision 22152 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-02 17:50:24 +00:00

31 lines
525 B
Bash
Executable File

#!/bin/sh
LC_ALL=C
export LC_ALL
target_exec=$2
target_path=$3
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
$target_exec $target_path/tests/seek_test $target_path/$i >> $logfile
done
if diff -u -w "$reffile" "$logfile" ; then
echo
echo seek regression test: success
exit 0
else
echo
echo seek regression test: error
exit 1
fi