aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/lib
diff options
context:
space:
mode:
authorDavid Billinghurst <David.Billinghurst@riotinto.com>2002-01-07 00:07:27 +0000
committerDavid Billinghurst <billingd@gcc.gnu.org>2002-01-07 00:07:27 +0000
commitab10a269bbe18d73ab0defafab6895c309af293d (patch)
tree54c5e9cf7eaaf78cfaa7ce73f0e5b1af6a253b8e /libstdc++-v3/testsuite/lib
parent6cda74b0eb9f55dacb84413e833a0376dc9286a5 (diff)
downloadgcc-ab10a269bbe18d73ab0defafab6895c309af293d.zip
gcc-ab10a269bbe18d73ab0defafab6895c309af293d.tar.gz
gcc-ab10a269bbe18d73ab0defafab6895c309af293d.tar.bz2
testsuite_flags.in: Add -fmessage-length=0 to CXXFLAGS testsuite/lib/prune.exp...
2002-01-07 David Billinghurst <David.Billinghurst@riotinto.com> * testsuite_flags.in: Add -fmessage-length=0 to CXXFLAGS testsuite/lib/prune.exp: Delete lines ":In function ..." from compiler output testsuite/23_containers/map_operators.cc: Remove dg-excess-errors comment testsuite/23_containers/set_operators.cc: Likewise From-SVN: r48590
Diffstat (limited to 'libstdc++-v3/testsuite/lib')
-rw-r--r--libstdc++-v3/testsuite/lib/prune.exp4
1 files changed, 4 insertions, 0 deletions
diff --git a/libstdc++-v3/testsuite/lib/prune.exp b/libstdc++-v3/testsuite/lib/prune.exp
index 55c1080..7dc8eca 100644
--- a/libstdc++-v3/testsuite/lib/prune.exp
+++ b/libstdc++-v3/testsuite/lib/prune.exp
@@ -21,5 +21,9 @@ proc prune_g++_output { text } {
# Cygwin warns about -ffunction-sections
regsub -all "(^|\n)\[^\n\]*: -ffunction-sections may affect debugging on some targets\[^\n\]*" $text "" text
+ # Remove parts of warnings that refer to location of previous
+ # definitions, etc as these confuse dejagnu
+ regsub -all "(^|\n)\[^\n\]*: In function \[^\n\]*" $text "" text
+
return $text
}