|
From: <sv...@va...> - 2009-04-15 07:01:44
|
Author: njn Date: 2009-04-15 08:01:34 +0100 (Wed, 15 Apr 2009) New Revision: 9548 Log: Filtering fixes. Modified: branches/DARWIN/memcheck/tests/filter_stderr branches/DARWIN/none/tests/linux/blockfault.stderr.exp branches/DARWIN/tests/filter_stderr_basic Modified: branches/DARWIN/memcheck/tests/filter_stderr =================================================================== --- branches/DARWIN/memcheck/tests/filter_stderr 2009-04-15 06:38:06 UTC (rev 9547) +++ branches/DARWIN/memcheck/tests/filter_stderr 2009-04-15 07:01:34 UTC (rev 9548) @@ -13,9 +13,6 @@ # Anonymise line numbers in mc_replace_strmem.c sed "s/mc_replace_strmem.c:[0-9]*/mc_replace_strmem.c:.../" | -# 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 .../" | - # Replace exit_group() with exit(), because you can get either on Linux # depending on the system. perl -p -e "s/param exit_group\(status\)/param exit(status)/" | Modified: branches/DARWIN/none/tests/linux/blockfault.stderr.exp =================================================================== --- branches/DARWIN/none/tests/linux/blockfault.stderr.exp 2009-04-15 06:38:06 UTC (rev 9547) +++ branches/DARWIN/none/tests/linux/blockfault.stderr.exp 2009-04-15 07:01:34 UTC (rev 9548) @@ -6,5 +6,5 @@ If you believe this happened as a result of a stack overflow in your program's main thread (unlikely but possible), you can try to increase the size of the main thread stack using the --main-stacksize= flag. - The main thread stack size used in this run was 16777216. + The main thread stack size used in this run was .... Modified: branches/DARWIN/tests/filter_stderr_basic =================================================================== --- branches/DARWIN/tests/filter_stderr_basic 2009-04-15 06:38:06 UTC (rev 9547) +++ branches/DARWIN/tests/filter_stderr_basic 2009-04-15 07:01:34 UTC (rev 9548) @@ -49,6 +49,9 @@ # limit set that prevents the core dump 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 .../" | + # DDD # Remove Darwin messages relating to the debugger. perl -n -e 'print if !/^Listening for debugger on port [0-9]+$/' |