diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 51992df1a01..b6f36173028 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2006-06-02 Steve Ellcey + + * 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 * lib/target-supports.exp (is-effective-target): Add cxa_atexit. diff --git a/gcc/testsuite/g++.old-deja/g++.other/init18.C b/gcc/testsuite/g++.old-deja/g++.other/init18.C index 64d9f3d24c4..7a91a12d7df 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/init18.C +++ b/gcc/testsuite/g++.old-deja/g++.other/init18.C @@ -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 +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() diff --git a/gcc/testsuite/g++.old-deja/g++.other/init19.C b/gcc/testsuite/g++.old-deja/g++.other/init19.C index 297ae781ec2..6d9c8290ed3 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/init19.C +++ b/gcc/testsuite/g++.old-deja/g++.other/init19.C @@ -1,4 +1,4 @@ -// { dg-do run } +// { dg-do run { xfail { ! cxa_atexit } } } #include #define assert(x) do { if (! (x)) abort(); } while (0) diff --git a/gcc/testsuite/g++.old-deja/g++.other/init5.C b/gcc/testsuite/g++.old-deja/g++.other/init5.C index 27765dc11c7..7bb263a93c0 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/init5.C +++ b/gcc/testsuite/g++.old-deja/g++.other/init5.C @@ -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