summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/lib
diff options
context:
space:
mode:
authorschwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4>2004-03-24 19:54:26 +0000
committerschwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4>2004-03-24 19:54:26 +0000
commit9994489fdbc5b906593c274d27b7e6c69d09b776 (patch)
treee1287226e5e82b27b4d4f2da7ccae36d254a36d2 /libstdc++-v3/testsuite/lib
parentbeed1ffc50e354763869113398a2578fbad4baff (diff)
downloadgcc-9994489fdbc5b906593c274d27b7e6c69d09b776.tar.gz
gcc/testsuite/:
* lib/prune.exp (prune_gcc_output): Ignore errata warning from IA64 assembler. libstdc++-v3/: * testsuite/lib/prune.exp (prune_g++_output): Ignore errata warning from IA64 assembler. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79929 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite/lib')
-rw-r--r--libstdc++-v3/testsuite/lib/prune.exp6
1 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/testsuite/lib/prune.exp b/libstdc++-v3/testsuite/lib/prune.exp
index 7dc8eca1316..8b4e2cdca6d 100644
--- a/libstdc++-v3/testsuite/lib/prune.exp
+++ b/libstdc++-v3/testsuite/lib/prune.exp
@@ -1,4 +1,4 @@
-# Copyright (C) 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
+# Copyright (C) 1997, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -25,5 +25,9 @@ proc prune_g++_output { text } {
# definitions, etc as these confuse dejagnu
regsub -all "(^|\n)\[^\n\]*: In function \[^\n\]*" $text "" text
+ # Ignore errata warning from IA64 assembler.
+ regsub -all "(^|\n)\[^\n\]*: Additional NOP may be necessary to workaround Itanium processor A/B step errata" $text "" text
+ regsub -all "(^|\n)\[^\n*\]*: Assembler messages:\[^\n\]*" $text "" text
+
return $text
}