From: Tom Hughes Date: Sun, 29 Feb 2004 13:00:18 +0000 (+0000) Subject: Modified the basic standard error filter to strip out line info out of X-Git-Tag: svn/VALGRIND_2_1_1~30 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e60cf234f717de950540a2660bbcb357a82d7df8;p=thirdparty%2Fvalgrind.git Modified the basic standard error filter to strip out line info out of order warnings which some systems seem to produce. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2278 --- diff --git a/tests/filter_stderr_basic b/tests/filter_stderr_basic index 1150f11721..94e079d6fd 100755 --- a/tests/filter_stderr_basic +++ b/tests/filter_stderr_basic @@ -30,4 +30,7 @@ sed "s/^\(ERROR SUMMARY[^(]*(suppressed: \)[0-9]*\( from \)[0-9]*)$/\10\20)/" | # Reduce some libc incompatibility sed "s/ __getsockname / getsockname /" | sed "s/ __sigaction / sigaction /" | -sed "s/ __GI___/ __/" +sed "s/ __GI___/ __/" | + +# Remove line info out of order warnings +sed "/warning: line info addresses out of order/d"