]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Modified the basic standard error filter to strip out line info out of
authorTom Hughes <tom@compton.nu>
Sun, 29 Feb 2004 13:00:18 +0000 (13:00 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 29 Feb 2004 13:00:18 +0000 (13:00 +0000)
order warnings which some systems seem to produce.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2278

tests/filter_stderr_basic

index 1150f11721a2eb6e01706bb4018e7c464bc2503f..94e079d6fdf46060f567d8a3b198c9d0caddcf3f 100755 (executable)
@@ -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"