|
From: <sv...@va...> - 2009-02-11 00:22:04
|
Author: njn Date: 2009-02-11 00:21:53 +0000 (Wed, 11 Feb 2009) New Revision: 9134 Log: Filter out "(core dumped)" after "Bus error" for consistency. This makes shell_zerolength pass on my Ubuntu 8.10 machine. Modified: trunk/tests/filter_stderr_basic Modified: trunk/tests/filter_stderr_basic =================================================================== --- trunk/tests/filter_stderr_basic 2009-02-10 07:42:39 UTC (rev 9133) +++ trunk/tests/filter_stderr_basic 2009-02-11 00:21:53 UTC (rev 9134) @@ -45,7 +45,7 @@ # 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 |