1 /* Test out '@catch(id foo) {...}', which should catch
2 all uncaught exceptions. */
3 /* Developed by Ziemowit Laski <zlaski@apple.com>. */
6 /* { dg-xfail-run-if "PR23616" { *-*-* } { "-fgnu-runtime" } { "-fnext-runtime" } } */
7 /* { dg-xfail-if "Needs OBJC2 ABI" { *-*-darwin* && { lp64 && { ! objc2 } } } { "-fnext-runtime" "-fgnu-runtime" } { "" } } */
8 /* { dg-options "-fobjc-exceptions" } */
10 #include "../objc-obj-c++-shared/TestsuiteObject.m"
14 /* The following is not required in actual user code; we include it
15 here to check that the compiler generates an internal definition of
16 _setjmp that is consistent with what <setjmp.h> provides. */
19 #define CHECK_IF(expr) if(!(expr)) abort()
21 @interface Frob: TestsuiteObject
24 @implementation Frob: TestsuiteObject
27 static Frob* _connection = nil;
29 //--------------------------------------------------------------------
32 void test (TestsuiteObject* sendPort)
35 Frob* receivePort = nil;
38 printf ("receivePort = %p\n", receivePort);
39 printf ("sendPort = %p\n", sendPort);
40 printf ("cleanupPorts = %d\n", cleanupPorts);
43 receivePort = (Frob *) -1;
44 _connection = (Frob *) -1;
45 printf ("receivePort = %p\n", receivePort);
46 printf ("sendPort = %p\n", sendPort);
47 printf ("cleanupPorts = %d\n", cleanupPorts);
54 printf ("receivePort = %p\n", receivePort);
55 printf ("sendPort = %p\n", sendPort);
56 printf ("cleanupPorts = %d\n", cleanupPorts);
59 @throw [TestsuiteObject new];
62 printf ("Exception caught by incorrect handler!\n");
66 printf ("Exception caught by correct handler.\n");
67 printf ("receivePort = %p (expected 0x0)\n", receivePort);
68 printf ("sendPort = %p (expected 0x0)\n", sendPort);
69 printf ("cleanupPorts = %d (expected 0)\n", cleanupPorts);
71 CHECK_IF(!receivePort);
73 CHECK_IF(!cleanupPorts);
78 test((TestsuiteObject *)-1);