running the tests might have a ulimit set that prevents the core dumps.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2327
by 0x........: ...
Address 0x........ is not stack'd, malloc'd or free'd
-Process terminating with default action of signal 11 (SIGSEGV): dumping core
+Process terminating with default action of signal 11 (SIGSEGV)
Access not within mapped region at address 0x........
at 0x........: ???
by 0x........: __libc_start_main (...libc...)
disInstr: unhandled instruction bytes: 0x........ 0x........ 0x........ 0x........
at 0x........: main (int.c:5)
-Process terminating with default action of signal 4 (SIGILL): dumping core
+Process terminating with default action of signal 4 (SIGILL)
Illegal operand at address 0x........
at 0x........: main (int.c:5)
sed "s/ __GI___/ __/" |
# Remove line info out of order warnings
-sed "/warning: line info addresses out of order/d"
+sed "/warning: line info addresses out of order/d" |
+
+# Remove any ": dumping core" message as the user might have a
+# limit set that prevents the core dump
+sed "s/\(signal [0-9]* (SIG[A-Z]*)\): dumping core/\1/"