aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2001-08-23 06:52:12 -0400
committerJason Merrill <jason@gcc.gnu.org>2001-08-23 06:52:12 -0400
commit0585896cdf1e91c020fe31d1de12bd9ae1393d1b (patch)
tree52fc8b325682298131149abe43b01af06d058875 /gcc
parent40803cd5df38deb2a5389a069faa6beee6d14763 (diff)
downloadgcc-0585896cdf1e91c020fe31d1de12bd9ae1393d1b.zip
gcc-0585896cdf1e91c020fe31d1de12bd9ae1393d1b.tar.gz
gcc-0585896cdf1e91c020fe31d1de12bd9ae1393d1b.tar.bz2
prune.exp (prune_gcc_output): Also ignore "In constructor" and "In instantiation".
* lib/prune.exp (prune_gcc_output): Also ignore "In constructor" and "In instantiation". From-SVN: r45127
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/lib/prune.exp2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 1650119..5284f32 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-23 Jason Merrill <jason_merrill@redhat.com>
+
+ * lib/prune.exp (prune_gcc_output): Also ignore "In constructor"
+ and "In instantiation".
+
2001-08-21 Aldy Hernandez <aldyh@redhat.com>
* gcc.c-torture/execute/divmod-1.c: Convert to ANSI.
diff --git a/gcc/testsuite/lib/prune.exp b/gcc/testsuite/lib/prune.exp
index e830360..3df44f3 100644
--- a/gcc/testsuite/lib/prune.exp
+++ b/gcc/testsuite/lib/prune.exp
@@ -19,7 +19,7 @@
proc prune_gcc_output { text } {
#send_user "Before:$text\n"
- regsub -all "(^|\n)\[^\n\]*: In (function|method) \[^\n\]*" $text "" text
+ regsub -all "(^|\n)\[^\n\]*: In (function|method|constructor|instantiation) \[^\n\]*" $text "" text
regsub -all "(^|\n)\[^\n\]*: At top level:\[^\n\]*" $text "" text
regsub -all "(^|\n)collect2: ld returned \[^\n\]*" $text "" text
regsub -all "(^|\n)Please submit.*instructions\[^\n\]*" $text "" text