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
This commit is contained in:
parent
40803cd5df
commit
0585896cdf
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2001-08-21 Aldy Hernandez <aldyh@redhat.com>
|
||||||
|
|
||||||
* gcc.c-torture/execute/divmod-1.c: Convert to ANSI.
|
* gcc.c-torture/execute/divmod-1.c: Convert to ANSI.
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
proc prune_gcc_output { text } {
|
proc prune_gcc_output { text } {
|
||||||
#send_user "Before:$text\n"
|
#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)\[^\n\]*: At top level:\[^\n\]*" $text "" text
|
||||||
regsub -all "(^|\n)collect2: ld returned \[^\n\]*" $text "" text
|
regsub -all "(^|\n)collect2: ld returned \[^\n\]*" $text "" text
|
||||||
regsub -all "(^|\n)Please submit.*instructions\[^\n\]*" $text "" text
|
regsub -all "(^|\n)Please submit.*instructions\[^\n\]*" $text "" text
|
||||||
|
|
Loading…
Add table
Reference in a new issue