]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
prune.exp (prune_gcc_output): Prune "Please submit a full bug report" message.
authorJason Merrill <jason@gcc.gnu.org>
Tue, 24 Jul 2001 15:06:27 +0000 (11:06 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 24 Jul 2001 15:06:27 +0000 (11:06 -0400)
        * lib/prune.exp (prune_gcc_output): Prune "Please submit a full
        bug report" message.

From-SVN: r44299

gcc/testsuite/lib/prune.exp

index 6501f7b10dffc66284e321d120a76a5ecb2cffb6..e83036003cbb15b7433018f30dbc467f186359f5 100644 (file)
@@ -22,6 +22,7 @@ proc prune_gcc_output { text } {
     regsub -all "(^|\n)\[^\n\]*: In (function|method) \[^\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
 
     # It would be nice to avoid passing anything to gcc that would cause it to
     # issue these messages (since ignoring them seems like a hack on our part),