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
This commit is contained in:
Tom Hughes 2004-02-29 13:00:18 +00:00
parent 23a713cfd8
commit e60cf234f7

View File

@ -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"