diff options
| author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-24 05:01:38 +0000 |
|---|---|---|
| committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-24 05:01:38 +0000 |
| commit | 737ca1ddb170c1adaab258c870df2de2f11dbb35 (patch) | |
| tree | c9849bf107e9db68b887dc35182336b2e2008d95 | |
| parent | 7b3440ce4f9717ba12b8bbd753db86111ff3788d (diff) | |
| download | ppe42-gcc-737ca1ddb170c1adaab258c870df2de2f11dbb35.tar.gz ppe42-gcc-737ca1ddb170c1adaab258c870df2de2f11dbb35.zip | |
OK, once more:
* lib/old-dejagnu.exp: Also ignore "In member function" and
"At global scope".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35934 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/testsuite/ChangeLog | 3 | ||||
| -rw-r--r-- | gcc/testsuite/lib/old-dejagnu.exp | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f0cc32276b3..a21b34ac5bd 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,6 +1,7 @@ 2000-08-23 Jason Merrill <jason@redhat.com> - * lib/old-dejagnu.exp: Also ignore "In member function ". + * lib/old-dejagnu.exp: Also ignore "In member function" and + "At global scope". 2000-08-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> diff --git a/gcc/testsuite/lib/old-dejagnu.exp b/gcc/testsuite/lib/old-dejagnu.exp index ef291e328c0..156b60eb55a 100644 --- a/gcc/testsuite/lib/old-dejagnu.exp +++ b/gcc/testsuite/lib/old-dejagnu.exp @@ -526,10 +526,10 @@ proc old-dejagnu { compiler prog name cflagsx default_cflags libs } { #look to see if this is all thats left, if so, all messages have been handled #send_user "comp_output: $comp_output\n" - regsub -all "(^|\n)\[^\n\]*: In ((member )?function|method) \[^\n\]*" $comp_output "" comp_output + regsub -all "(^|\n)\[^\n\]*: In (.*function|method|.*structor) \[^\n\]*" $comp_output "" comp_output regsub -all "(^|\n)\[^\n\]*: In instantiation of \[^\n\]*" $comp_output "" comp_output regsub -all "(^|\n)\[^\n\]*: instantiated from \[^\n\]*" $comp_output "" comp_output - regsub -all "(^|\n)\[^\n\]*: At top level:\[^\n\]*" $comp_output "" comp_output + regsub -all "(^|\n)\[^\n\]*: At (top level|global scope):\[^\n\]*" $comp_output "" comp_output regsub -all "(^|\n)\[^\n\]*file path prefix \[^\n\]* never used" $comp_output "" comp_output regsub -all "(^|\n)\[^\n\]*linker input file unused since linking not done" $comp_output "" comp_output regsub -all "(^|\n)collect: re(compiling|linking)\[^\n\]*" $comp_output "" comp_output |

