parse3.C: XFAILs, not ERRORs
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Sat, 10 Oct 1998 07:51:24 +0000 (07:51 +0000)
committerAlexandre Oliva <oliva@gcc.gnu.org>
Sat, 10 Oct 1998 07:51:24 +0000 (07:51 +0000)
* g++.old-deja/g++.brendan/parse3.C: XFAILs, not ERRORs
* g++.old-deja/g++.brendan/parse5.C: XFAILs, not ERRORs
* g++.old-deja/g++.brendan/parse6.C: XFAILs, not ERRORs

From-SVN: r22971

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.brendan/parse3.C
gcc/testsuite/g++.old-deja/g++.brendan/parse5.C
gcc/testsuite/g++.old-deja/g++.brendan/parse6.C

index 6fee7443a5e815758c006ef9b945c2c84ca46390..a625a218728342cd3876396b141c182c01130c0e 100644 (file)
@@ -1,5 +1,9 @@
 1998-10-10  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
+       * g++.old-deja/g++.brendan/parse3.C: XFAILs, not ERRORs
+       * g++.old-deja/g++.brendan/parse5.C: XFAILs, not ERRORs
+       * g++.old-deja/g++.brendan/parse6.C: XFAILs, not ERRORs
+
        * g++.old-deja/g++.other/using5.C: New test; using decl from base
        class should be usable as argument of member function
        * g++.old-deja/g++.other/using6.C: New test; using decl from base
index c346a289f9a73806f846a339b455df1a4beb36f4..8be64a39b68835f7b6bf54d5b2def80f1572d0ca 100644 (file)
@@ -18,5 +18,5 @@ A A::operator+(const A in)
     if (high==0)
       return A();    // this works
     else
-      return (A());  // this works not !! -> why ?? // ERROR - 
-} // ERROR - 
+      return (A());  // this works not // gets bogus error - XFAIL *-*-* 
+} // gets bogus error - XFAIL *-*-* 
index 3b311e4b06e857db51cfab67eb89ba070e49832a..81a5fe649b1859cad5aa85063f2d4a5e844db9f6 100644 (file)
@@ -21,5 +21,5 @@ public:
 int main()
    {
    unsigned  char b[3];
-   buf<3> b2(ptr8(&b[0],3)); // ERROR - 
+   buf<3> b2(ptr8(&b[0],3)); // gets bogus error - XFAIL *-*-*
    }
index 5e27c58836f068e6162ff61f26645fdc35fc85b2..9fcf2ad688190448fd70b85bfa7679c3d28e3214 100644 (file)
@@ -9,5 +9,5 @@ class A { };
 
 main()  {
   A a = a;
-  A b(b); // ERROR - 
+  A b(b); // gets bogus error - XFAIL *-*-*
 }