]> gcc.gnu.org Git - gcc.git/commitdiff
init5.C: XFAIL if cxa-atexit is false.
authorSteve Ellcey <sje@cup.hp.com>
Fri, 2 Jun 2006 17:39:28 +0000 (17:39 +0000)
committerSteve Ellcey <sje@gcc.gnu.org>
Fri, 2 Jun 2006 17:39:28 +0000 (17:39 +0000)
* g++.old-deja/g++.other/init5.C: XFAIL if cxa-atexit is false.
* g++.old-deja/g++.other/init19.C: Ditto.
* g++.old-deja/g++.other/init18.C: Ditto, plus change _Exit to _exit
and add other platforms as expected failures.

From-SVN: r114327

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.other/init18.C
gcc/testsuite/g++.old-deja/g++.other/init19.C
gcc/testsuite/g++.old-deja/g++.other/init5.C

index 51992df1a01a3e14e724df0a17ee0285d8768a5a..b6f36173028b8213cb0a14e14a38d9d8f791be43 100644 (file)
@@ -1,3 +1,10 @@
+2006-06-02  Steve Ellcey  <sje@cup.hp.com>
+
+       * g++.old-deja/g++.other/init5.C: XFAIL if cxa-atexit is false.
+       * g++.old-deja/g++.other/init19.C: Ditto.
+       * g++.old-deja/g++.other/init18.C: Ditto, plus change _Exit to _exit
+       and add other platforms as expected failures.
+
 2006-06-01  Steve Ellcey  <sje@cup.hp.com>
        
        * lib/target-supports.exp (is-effective-target): Add cxa_atexit.
index 64d9f3d24c4f82e38c6e37bdafb6d80d0b507709..7a91a12d7df43e874d5748b7387b02d3b27746b0 100644 (file)
@@ -1,6 +1,14 @@
-// { dg-do run }
+// Some targets (e.g. those with "set_board_info needs_status_wrapper 1"
+// in their dejagnu baseboard description) require that the status is
+// final when exit is entered (or main returns), and not "overruled" by a
+// destructor calling _exit.  It's not really worth it to handle that.
+//
+// Any platform that doesn't have proper __cxa_atexit support will also fail.
+//
+// { dg-do run { xfail { { mmix-knuth-mmixware xtensa-*-elf* arm*-*-elf arm*-*-eabi m68k-*-elf } || { ! cxa_atexit } } } }
 
 #include <stdlib.h>
+extern "C" void _exit (int);
 
 static int cnt = 0;
 
@@ -8,7 +16,7 @@ class Foo2
 {
        public:
                Foo2() {};
-               ~Foo2() { if (++cnt == 2) _Exit (0); };
+               ~Foo2() { if (++cnt == 2) _exit (0); };
 };
 
 static Foo2& GetFoo2()
index 297ae781ec2cc9274b2b77d9ee22d35e11419e72..6d9c8290ed376f9bc634a091a5bf212eb808a4bf 100644 (file)
@@ -1,4 +1,4 @@
-// { dg-do run }
+// { dg-do run { xfail { ! cxa_atexit } } }
 #include <stdlib.h>
 
 #define assert(x) do { if (! (x)) abort(); } while (0)
index 27765dc11c717c8acfcf704a2f97aabcd622d724..7bb263a93c0388aaf9e44ab1ec10707c6979f648 100644 (file)
@@ -1,4 +1,4 @@
-// { dg-do run }
+// { dg-do run { xfail { ! cxa_atexit } } }
 // Objects must be destructed in decreasing cnt order
 // Original test attributed to James Kanze <jkanze@otelo.ibmmail.com>
 
This page took 0.083635 seconds and 5 git commands to generate.