aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@acm.org>1999-09-13 14:23:16 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>1999-09-13 14:23:16 +0000
commit54c75f8cd4db7db28fe7d10d8039b4c39edbaa72 (patch)
tree002b862df53ccd953b699298cdec2239e59ff55b
parentcc3dc6ea434405ef9b47b855f38194bf41686b71 (diff)
downloadgcc-54c75f8cd4db7db28fe7d10d8039b4c39edbaa72.zip
gcc-54c75f8cd4db7db28fe7d10d8039b4c39edbaa72.tar.gz
gcc-54c75f8cd4db7db28fe7d10d8039b4c39edbaa72.tar.bz2
sizeof3.C: Remove XFAILS.
* g++.old-deja/g++.other/sizeof3.C: Remove XFAILS. * g++.old-deja/g++.other/sizeof4.C: Remove XFAILS. From-SVN: r29379
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/sizeof3.C1
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/sizeof4.C6
3 files changed, 8 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 883ff6a..b2255e8 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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.
diff --git a/gcc/testsuite/g++.old-deja/g++.other/sizeof3.C b/gcc/testsuite/g++.old-deja/g++.other/sizeof3.C
index 5ac2cc4..fbdd5c3 100644
--- a/gcc/testsuite/g++.old-deja/g++.other/sizeof3.C
+++ b/gcc/testsuite/g++.old-deja/g++.other/sizeof3.C
@@ -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)
diff --git a/gcc/testsuite/g++.old-deja/g++.other/sizeof4.C b/gcc/testsuite/g++.old-deja/g++.other/sizeof4.C
index cb74e9a..3ebddb6 100644
--- a/gcc/testsuite/g++.old-deja/g++.other/sizeof4.C
+++ b/gcc/testsuite/g++.old-deja/g++.other/sizeof4.C
@@ -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