summaryrefslogtreecommitdiff
path: root/tests/seek_test.sh
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-05-25 13:27:08 +0000
committerDiego Biurrun <diego@biurrun.de>2007-05-25 13:27:08 +0000
commit6d593d43567b55cccc4aa5e89150d63b1539f910 (patch)
tree86bc8d5508222825d45ff8b864612e0c6b83beb6 /tests/seek_test.sh
parentf1f836fd3bcf17e4c4512383e396bcd9f85a9011 (diff)
'grep -q' is a GNU extension.
Originally committed as revision 9128 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/seek_test.sh')
-rwxr-xr-xtests/seek_test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/seek_test.sh b/tests/seek_test.sh
index cf4636c814..acfb9513d3 100755
--- a/tests/seek_test.sh
+++ b/tests/seek_test.sh
@@ -11,7 +11,7 @@ rm -f $logfile
for i in $list ; do
echo ---------------- >>$logfile
echo $i >>$logfile
- echo $i | grep -vq 'b-libav[01][0-9][.]' &&
+ echo $i | grep -v 'b-libav[01][0-9][.]' 2> /dev/null &&
./seek_test $i >> $logfile
done