From: Jason Merrill Date: Tue, 24 Jul 2001 15:06:27 +0000 (-0400) Subject: prune.exp (prune_gcc_output): Prune "Please submit a full bug report" message. X-Git-Tag: prereleases/libstdc++-3.0.95~3088 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9342257912ee2e7663e575cc1f81b8ee4877546;p=thirdparty%2Fgcc.git prune.exp (prune_gcc_output): Prune "Please submit a full bug report" message. * lib/prune.exp (prune_gcc_output): Prune "Please submit a full bug report" message. From-SVN: r44299 --- diff --git a/gcc/testsuite/lib/prune.exp b/gcc/testsuite/lib/prune.exp index 6501f7b10dff..e83036003cbb 100644 --- a/gcc/testsuite/lib/prune.exp +++ b/gcc/testsuite/lib/prune.exp @@ -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),