|
From: Tom H. <th...@cy...> - 2004-02-29 13:04:04
|
CVS commit by thughes: Modified the basic standard error filter to strip out line info out of order warnings which some systems seem to produce. M +4 -1 filter_stderr_basic 1.16 --- valgrind/tests/filter_stderr_basic #1.15:1.16 @@ -31,3 +31,6 @@ 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" |