From: Nicholas Nethercote Date: Wed, 11 Feb 2009 00:21:53 +0000 (+0000) Subject: Filter out "(core dumped)" after "Bus error" for consistency. This makes X-Git-Tag: svn/VALGRIND_3_5_0~1006 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5e97a0524eef9d3cfa9fb6510cabae411173c847;p=thirdparty%2Fvalgrind.git Filter out "(core dumped)" after "Bus error" for consistency. This makes shell_zerolength pass on my Ubuntu 8.10 machine. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9134 --- diff --git a/tests/filter_stderr_basic b/tests/filter_stderr_basic index 43e3206fbc..16194fc4cb 100755 --- a/tests/filter_stderr_basic +++ b/tests/filter_stderr_basic @@ -45,7 +45,7 @@ sed "/warning: line info addresses out of order/d" | # of the bash process. Newer bash versions redirect such messages properly. # Suppress any redirected abnormal termination messages. You can find the # complete list of messages in the bash source file siglist.c. -sed -r "/^(Segmentation fault|Alarm clock|Aborted)( \(core dumped\))?$/d" | +sed -r "/^(Segmentation fault|Alarm clock|Aborted|Bus error)( \(core dumped\))?$/d" | # Remove any ": dumping core" message as the user might have a # limit set that prevents the core dump