|
From: <sv...@va...> - 2009-07-22 18:47:11
|
Author: bart
Date: 2009-07-22 19:40:00 +0100 (Wed, 22 Jul 2009)
New Revision: 10527
Log:
Filtered out the "More than 100 errors detected." message.
Modified:
trunk/drd/tests/filter_stderr
trunk/drd/tests/tc19_shadowmem.stderr.exp-32bit
trunk/drd/tests/tc19_shadowmem.stderr.exp-64bit
Modified: trunk/drd/tests/filter_stderr
===================================================================
--- trunk/drd/tests/filter_stderr 2009-07-22 18:16:37 UTC (rev 10526)
+++ trunk/drd/tests/filter_stderr 2009-07-22 18:40:00 UTC (rev 10527)
@@ -28,6 +28,10 @@
-e "s/ (\([a-zA-Z_]*\.h\):[0-9]*)/ (\1:?)/" \
-e "s/ (\([a-zA-Z_]*\.cpp\):[0-9]*)/ (\1:?)/" |
+# Remove the message that more than hundred errors have been detected
+# (consists of two lines) and also the empty line below it.
+awk '{if ($0 == "More than 100 errors detected. Subsequent errors") {getline;getline} else print}' |
+
# Anonymise addresses
$dir/../../tests/filter_addresses
Modified: trunk/drd/tests/tc19_shadowmem.stderr.exp-32bit
===================================================================
--- trunk/drd/tests/tc19_shadowmem.stderr.exp-32bit 2009-07-22 18:16:37 UTC (rev 10526)
+++ trunk/drd/tests/tc19_shadowmem.stderr.exp-32bit 2009-07-22 18:40:00 UTC (rev 10527)
@@ -910,9 +910,6 @@
by 0x........: main (tc19_shadowmem.c:144)
---------- short gran, 1 .. 98, skip 1 ----------
-More than 100 errors detected. Subsequent errors
-will still be recorded, but in less detail than before.
-
Conflicting store by thread x at 0x........ size 2
at 0x........: child16 (tc19_shadowmem.c:57)
by 0x........: steer (tc19_shadowmem.c:290)
Modified: trunk/drd/tests/tc19_shadowmem.stderr.exp-64bit
===================================================================
--- trunk/drd/tests/tc19_shadowmem.stderr.exp-64bit 2009-07-22 18:16:37 UTC (rev 10526)
+++ trunk/drd/tests/tc19_shadowmem.stderr.exp-64bit 2009-07-22 18:40:00 UTC (rev 10527)
@@ -910,9 +910,6 @@
by 0x........: main (tc19_shadowmem.c:144)
---------- short gran, 1 .. 98, skip 1 ----------
-More than 100 errors detected. Subsequent errors
-will still be recorded, but in less detail than before.
-
Conflicting store by thread x at 0x........ size 2
at 0x........: child16 (tc19_shadowmem.c:57)
by 0x........: steer (tc19_shadowmem.c:290)
|