diff options
author | Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> | 2003-01-01 07:43:35 +0000 |
---|---|---|
committer | Kriang Lerdsuwanakij <lerdsuwa@gcc.gnu.org> | 2003-01-01 07:43:35 +0000 |
commit | a0f1180476ed809739e5e6ae880c50a12e352dc9 (patch) | |
tree | 488fac27c2949263aecf8a1fa8ac08bbfa3abe7e | |
parent | eea9800f0756d79fbcb0cb8ef16e38fb3fbbd2af (diff) | |
download | gcc-a0f1180476ed809739e5e6ae880c50a12e352dc9.zip gcc-a0f1180476ed809739e5e6ae880c50a12e352dc9.tar.gz gcc-a0f1180476ed809739e5e6ae880c50a12e352dc9.tar.bz2 |
ambig3.C: Remove XFAIL.
* g++.old-deja/g++.jason/ambig3.C: Remove XFAIL.
* g++.old-deja/g++.other/access6.C: Likewise.
* g++.old-deja/g++.other/decl1.C: Likewise.
* g++.old-deja/g++.pt/typename12.C: Likewise.
From-SVN: r60730
-rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.jason/ambig3.C | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/access6.C | 6 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/decl1.C | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.pt/typename12.C | 4 |
5 files changed, 15 insertions, 8 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4af4930..a71d580 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2003-01-01 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> + + * g++.old-deja/g++.jason/ambig3.C: Remove XFAIL. + * g++.old-deja/g++.other/access6.C: Likewise. + * g++.old-deja/g++.other/decl1.C: Likewise. + * g++.old-deja/g++.pt/typename12.C: Likewise. + 2002-12-31 Mark Mitchell <mark@codesourcery.com> * g++.dg/parse/namespace1.C: New test. diff --git a/gcc/testsuite/g++.old-deja/g++.jason/ambig3.C b/gcc/testsuite/g++.old-deja/g++.jason/ambig3.C index 3f01660..867a179 100644 --- a/gcc/testsuite/g++.old-deja/g++.jason/ambig3.C +++ b/gcc/testsuite/g++.old-deja/g++.jason/ambig3.C @@ -9,8 +9,8 @@ struct A { void f () { int i[2], j; - A a (int (i[1]), j); // gets bogus error - late parsing XFAIL *-*-* + A a (int (i[1]), j); // gets bogus error - late parsing A b (int (i[1]), int j); // function - a.k = 0; // gets bogus error - late parsing XFAIL *-*-* + a.k = 0; // gets bogus error - late parsing b (i, j); } diff --git a/gcc/testsuite/g++.old-deja/g++.other/access6.C b/gcc/testsuite/g++.old-deja/g++.other/access6.C index 7a7c7ff..bbe8a05 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/access6.C +++ b/gcc/testsuite/g++.old-deja/g++.other/access6.C @@ -6,12 +6,12 @@ struct S { }; class C { - static const int i = 3; // gets bogus error - private - XFAIL *-*-* + static const int i = 3; // gets bogus error - private public: - S<C::i>* f(); // gets bogus error - redeclared - XFAIL *-*-* + S<C::i>* f(); // gets bogus error - redeclared }; -S<C::i>* C::f() { // gets bogus error - private - XFAIL *-*-* +S<C::i>* C::f() { // gets bogus error - private return 0; } diff --git a/gcc/testsuite/g++.old-deja/g++.other/decl1.C b/gcc/testsuite/g++.old-deja/g++.other/decl1.C index 7a55ce0..27460de 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/decl1.C +++ b/gcc/testsuite/g++.old-deja/g++.other/decl1.C @@ -1,7 +1,7 @@ // Build don't link: // Based on a test case by Phil Blecker <tmwg@inxservices.com> -// excess errors test - XFAIL *-*-* +// excess errors test int foo(int); int bar() { diff --git a/gcc/testsuite/g++.old-deja/g++.pt/typename12.C b/gcc/testsuite/g++.old-deja/g++.pt/typename12.C index cef6700..e247145 100644 --- a/gcc/testsuite/g++.old-deja/g++.pt/typename12.C +++ b/gcc/testsuite/g++.old-deja/g++.pt/typename12.C @@ -1,6 +1,6 @@ // Special g++ Options: -// execution test - XFAIL *-*-* -// excess errors test - XFAIL *-*-* +// execution test +// excess errors test int i = 0; |