diff options
author | Krister Walfridsson <cato@df.lth.se> | 2002-09-15 20:54:43 +0200 |
---|---|---|
committer | Krister Walfridsson <kristerw@gcc.gnu.org> | 2002-09-15 18:54:43 +0000 |
commit | d48d6e79e66f3ea94bb40aae8589268cd8ad19ce (patch) | |
tree | 997ff96f04c8d82b61fc6c061a0308ac8876d927 /gcc | |
parent | 05713b80e0c6d1506ee9cbf34544435bf709b124 (diff) | |
download | gcc-d48d6e79e66f3ea94bb40aae8589268cd8ad19ce.zip gcc-d48d6e79e66f3ea94bb40aae8589268cd8ad19ce.tar.gz gcc-d48d6e79e66f3ea94bb40aae8589268cd8ad19ce.tar.bz2 |
2002-09-15 Krister Walfridsson <cato@df.lth.se>
* lib/old-dejagnu.exp (old-dejagnu) Improve test for ICE.
From-SVN: r57169
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/lib/old-dejagnu.exp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d0ca257..6fd143d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-09-15 Krister Walfridsson <cato@df.lth.se> + + * lib/old-dejagnu.exp (old-dejagnu) Improve test for ICE. + 2002-09-15 Nathan Sidwell <nathan@codesourcery.com> * g++.dg/inherit/using2.C: New test. diff --git a/gcc/testsuite/lib/old-dejagnu.exp b/gcc/testsuite/lib/old-dejagnu.exp index 2e2acff..39c5515 100644 --- a/gcc/testsuite/lib/old-dejagnu.exp +++ b/gcc/testsuite/lib/old-dejagnu.exp @@ -445,7 +445,7 @@ proc old-dejagnu { compiler prog name cflagsx default_cflags libs } { # Delete things like "ld.so: warning" messages. set comp_output [prune_gcc_output [prune_warnings $comp_output]] - if [regexp "Internal (compiler )?error" $comp_output] then { + if [regexp "\[Ii\]nternal (compiler )?error" $comp_output] then { if $expect_crash then { setup_xfail "*-*-*" } |