From 6d593d43567b55cccc4aa5e89150d63b1539f910 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 25 May 2007 13:27:08 +0000 Subject: [PATCH] 'grep -q' is a GNU extension. Originally committed as revision 9128 to svn://svn.ffmpeg.org/ffmpeg/trunk --- tests/seek_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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