sizeof3.C: Remove XFAILS.
authorNathan Sidwell <nathan@acm.org>
Mon, 13 Sep 1999 14:23:16 +0000 (14:23 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Mon, 13 Sep 1999 14:23:16 +0000 (14:23 +0000)
* g++.old-deja/g++.other/sizeof3.C: Remove XFAILS.
* g++.old-deja/g++.other/sizeof4.C: Remove XFAILS.

From-SVN: r29379

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.other/sizeof3.C
gcc/testsuite/g++.old-deja/g++.other/sizeof4.C

index 883ff6a..b2255e8 100644 (file)
@@ -1,3 +1,8 @@
+Mon Sep 13 14:14:21 BST 1999  Nathan Sidwell  <nathan@acm.org>
+
+       * g++.old-deja/g++.other/sizeof3.C: Remove XFAILS.
+       * g++.old-deja/g++.other/sizeof4.C: Remove XFAILS.
+
 Mon Sep 13 06:28:57 1999  Jeffrey A Law  (law@cygnus.com)
 
        * gcc.c-torture/compile/990913-1.c: New test.
index 5ac2cc4..fbdd5c3 100644 (file)
@@ -5,7 +5,6 @@
 // means things like the rhs of a comma operator mustn't decay. This will make
 // a difference if it is an array or function.
 
-// execution test - XFAIL
 extern void abort();
 
 int main (int argc, char **argv)
index cb74e9a..3ebddb6 100644 (file)
@@ -22,15 +22,15 @@ int main (int argc, char **argv)
   sizeof (argc ? s : s); // ERROR - incomplete
 
   sizeof (arys);        // ERROR - incomplete
-  sizeof (0, arys);     // ERROR - incomplete XFAIL
+  sizeof (0, arys);     // ERROR - incomplete
   sizeof (argc ? arys : arys); // ERROR - incomplete
 
   sizeof (aryt);        // ERROR - incomplete
-  sizeof (0, aryt);     // ERROR - incomplete XFAIL
+  sizeof (0, aryt);     // ERROR - incomplete
   sizeof (argc ? aryt : aryt); // ERROR - incomplete
   
   sizeof (fn);            // ERROR - cannot take size of function
-  sizeof (0, fn);         // ERROR - cannot take size of function XFAIL
+  sizeof (0, fn);         // ERROR - cannot take size of function
   sizeof (argc ? fn : fn); // ERROR - cannot take size of function
   
   sizeof (&fn);       // ok