aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc/execute/exceptions/throw-nil.m
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/objc/execute/exceptions/throw-nil.m')
-rw-r--r--gcc-4.9/gcc/testsuite/objc/execute/exceptions/throw-nil.m50
1 files changed, 50 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/objc/execute/exceptions/throw-nil.m b/gcc-4.9/gcc/testsuite/objc/execute/exceptions/throw-nil.m
new file mode 100644
index 000000000..b6e7b8bb3
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/objc/execute/exceptions/throw-nil.m
@@ -0,0 +1,50 @@
+#include <objc/objc.h>
+#include "../../../objc-obj-c++-shared/TestsuiteObject.m"
+
+#ifdef __NEXT_RUNTIME__
+/* This test only runs for the GNU runtime. */
+
+int main(void)
+{
+ return 0;
+}
+
+#else
+
+/* Test throwing a nil exception. A 'nil' exception can only be
+ caugth by a generic exception handler.
+ */
+
+int main (void)
+{
+ int exception_catched = 0;
+ int finally_called = 0;
+
+ @try
+ {
+ @throw nil;
+ }
+ @catch (TestsuiteObject *exc)
+ {
+ abort ();
+ }
+ @catch (id exc)
+ {
+ exception_catched = 1;
+ }
+ @finally
+ {
+ finally_called = 1;
+ }
+
+
+ if (exception_catched != 1
+ || finally_called != 1)
+ {
+ abort ();
+ }
+
+ return 0;
+}
+
+#endif