diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 18:16:16 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 18:16:16 +0000 |
commit | 19a11db2aadb872b14cad4ae35e7d63818d22d2f (patch) | |
tree | 69c3efe8f8290a8e59166b127903526d13ab5592 /tests | |
parent | d95ac2c554c7dab5bb33b49e3f7685bdde9249aa (diff) | |
download | ffmpeg-19a11db2aadb872b14cad4ae35e7d63818d22d2f.tar.gz |
exclude Duration field too
Originally committed as revision 2147 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/regression.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/regression.sh b/tests/regression.sh index b15ff9a1ef..72ae9d0a9a 100755 --- a/tests/regression.sh +++ b/tests/regression.sh @@ -73,7 +73,7 @@ do_ffmpeg() shift echo $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 $* $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 -benchmark $* > $datadir/bench.tmp 2> /tmp/ffmpeg$$ - egrep -v "^(Stream|Press|Input|Output|frame| Stream)" /tmp/ffmpeg$$ || true + egrep -v "^(Stream|Press|Input|Output|frame| Stream| Duration)" /tmp/ffmpeg$$ || true rm -f /tmp/ffmpeg$$ md5sum -b $f >> $logfile if [ $f = $raw_dst ] ; then @@ -89,7 +89,7 @@ do_ffmpeg_crc() shift echo $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 $* -f crc $datadir/ffmpeg.crc $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 $* -f crc $datadir/ffmpeg.crc > /tmp/ffmpeg$$ 2>&1 - egrep -v "^(Stream|Press|Input|Output|frame| Stream)" /tmp/ffmpeg$$ || true + egrep -v "^(Stream|Press|Input|Output|frame| Stream| Duration)" /tmp/ffmpeg$$ || true rm -f /tmp/ffmpeg$$ echo "$f `cat $datadir/ffmpeg.crc`" >> $logfile } @@ -100,7 +100,7 @@ do_ffmpeg_nocheck() shift echo $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 $* $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 -benchmark $* > $datadir/bench.tmp 2> /tmp/ffmpeg$$ - egrep -v "^(Stream|Press|Input|Output|frame| Stream)" /tmp/ffmpeg$$ || true + egrep -v "^(Stream|Press|Input|Output|frame| Stream| Duration)" /tmp/ffmpeg$$ || true rm -f /tmp/ffmpeg$$ expr "`cat $datadir/bench.tmp`" : '.*utime=\(.*s\)' > $datadir/bench2.tmp echo `cat $datadir/bench2.tmp` $f >> $benchfile |