From: Florian Krohm Date: Thu, 20 Oct 2011 20:37:46 +0000 (+0000) Subject: Filter out more warnings (Dwarf reader and debug info). X-Git-Tag: svn/VALGRIND_3_7_0~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b79b3956ffde8ebf845e1b3a8a854314c08e156;p=thirdparty%2Fvalgrind.git Filter out more warnings (Dwarf reader and debug info). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12180 --- diff --git a/tests/filter_stderr_basic b/tests/filter_stderr_basic index 1537713eac..3300450d41 100755 --- a/tests/filter_stderr_basic +++ b/tests/filter_stderr_basic @@ -52,5 +52,10 @@ perl -n -e 'print if !/^(Segmentation fault|Alarm clock|Aborted|Bus error)( \(co sed "s/\(signal [0-9]* (SIG[A-Z]*)\): dumping core/\1/" | # Remove the size in "The main thread stack size..." message. -sed "s/The main thread stack size used in this run was [0-9]*/The main thread stack size used in this run was .../" +sed "s/The main thread stack size used in this run was [0-9]*/The main thread stack size used in this run was .../" | +# Suppress warnings from incompatible debug info +sed '/warning: the debug information found in "[^"]*" does not match/d' | + +# Suppress warnings from Dwarf reader +sed '/warning: evaluate_Dwarf3_Expr: unhandled DW_OP_/d'