X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.mike%2Feh55.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.mike%2Feh55.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=fbf8a831494fbbed2500d0bec7bc596621c7fee4;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.mike/eh55.C b/gcc/testsuite/g++.old-deja/g++.mike/eh55.C deleted file mode 100644 index fbf8a831..00000000 --- a/gcc/testsuite/g++.old-deja/g++.mike/eh55.C +++ /dev/null @@ -1,19 +0,0 @@ -// Special g++ Options: -fexceptions -// excess errors test - XFAIL a29k-*-* sparc64-*-elf arm-*-pe - -#include -#include - -void my_terminate_handler() { - exit(0); -} - -void throw_an_unexpected_exception() throw() { - throw 1; -} - -int main() { - std::set_terminate(my_terminate_handler); - throw_an_unexpected_exception(); - return 1; -}