]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Filter out more warnings (Dwarf reader and debug info).
authorFlorian Krohm <florian@eich-krohm.de>
Thu, 20 Oct 2011 20:37:46 +0000 (20:37 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Thu, 20 Oct 2011 20:37:46 +0000 (20:37 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12180

tests/filter_stderr_basic

index 1537713eace47edb34644b68553a1866174bd4bb..3300450d416ba11d3178c666d465ff55f0bd7cb8 100755 (executable)
@@ -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'