1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00
FFmpeg/tests/seek_test.sh
Diego Biurrun 76de4ea681 Print the name of the regression test that was run after finishing the test.
Originally committed as revision 11664 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-29 23:30:00 +00:00

29 lines
515 B
Bash
Executable File

#!/bin/sh
LC_ALL=C
export LC_ALL
datadir="tests/data"
logfile="$datadir/seek.regression"
reffile="$1"
list=`ls tests/data/a-* tests/data/b-* | sort`
rm -f $logfile
for i in $list ; do
echo ---------------- >> $logfile
echo $i >> $logfile
echo $i | grep -v 'b-libav[01][0-9][.]' 2> /dev/null &&
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