diff options
author | Jason Merrill <jason@redhat.com> | 2001-12-11 09:18:34 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2001-12-11 09:18:34 -0500 |
commit | 19cfdd34bc7ae1a414ca0f9157d88ceed5655dc2 (patch) | |
tree | 5ebe8cf06975b372a3af6fbd05f86c920c167aa5 | |
parent | 02f7da129bc41c72c4f9593a81c43805e5df3a96 (diff) | |
download | gcc-19cfdd34bc7ae1a414ca0f9157d88ceed5655dc2.zip gcc-19cfdd34bc7ae1a414ca0f9157d88ceed5655dc2.tar.gz gcc-19cfdd34bc7ae1a414ca0f9157d88ceed5655dc2.tar.bz2 |
prune.exp (prune_gcc_output): Also handle "In member function".
* lib/prune.exp (prune_gcc_output): Also handle "In member
function". So many permutations...
From-SVN: r47875
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/lib/prune.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a7766e9..5b40103 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2001-12-11 Jason Merrill <jason@redhat.com> + + * lib/prune.exp (prune_gcc_output): Also handle "In member + function". So many permutations... + 2001-12-10 Nathan Sidwell <nathan@codesourcery.com> * g++.dg/template/typedef1.C: New test. diff --git a/gcc/testsuite/lib/prune.exp b/gcc/testsuite/lib/prune.exp index 3df44f3..35ace69 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|constructor|instantiation) \[^\n\]*" $text "" text + regsub -all "(^|\n)\[^\n\]*: In (function|member|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 |