Commit fa102182 authored by mru's avatar mru

Make seektest messages similar to other tests

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22159 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent eaa8e1c2
......@@ -7,6 +7,9 @@ src_path=$1
target_exec=$2
target_path=$3
[ "${V-0}" -gt 0 ] && echov=echo || echov=:
[ "${V-0}" -gt 1 ] || exec 2>/dev/null
refdir="$src_path/tests/ref/seek"
datadir="tests/data"
......@@ -17,6 +20,8 @@ for i in $list ; do
base=$(basename $i)
logfile="$datadir/$base.seek.regression"
reffile="$refdir/$base.ref"
echo "TEST SEEK $base"
$echov $target_exec $target_path/tests/seek_test $target_path/$i
$target_exec $target_path/tests/seek_test $target_path/$i > $logfile
diff -u -w "$reffile" "$logfile" || err=1
done
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment