From 1c732eb7229d03addf86b550c8e8c0123d98d729 Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Fri, 10 Sep 2010 09:54:54 +0000 Subject: [PATCH] * objc.dg/fobjc-exceptions.m: New test. From-SVN: r164152 --- gcc/testsuite/ChangeLog | 4 ++++ gcc/testsuite/objc.dg/fobjc-exceptions.m | 29 +++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 gcc/testsuite/objc.dg/fobjc-exceptions.m diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f9292f1..7f4f87b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2010-09-10 Nicola Pero + + * objc.dg/fobjc-exceptions.m: New test. + 2010-09-10 Jan Hubicka * g++.dg/inherit/covariant7.C: Fix pattern matching. diff --git a/gcc/testsuite/objc.dg/fobjc-exceptions.m b/gcc/testsuite/objc.dg/fobjc-exceptions.m new file mode 100644 index 0000000..afdc15f --- /dev/null +++ b/gcc/testsuite/objc.dg/fobjc-exceptions.m @@ -0,0 +1,29 @@ +/* Test that Objective-C exceptions cause an error with -fobjc-exceptions. */ +/* { dg-do compile } */ + +@class Object; + +int dummy (int number, Object *o) +{ + @try { /* { dg-error "fobjc-exceptions" "is required to enable Objective-C exception syntax" } */ + number++; + @throw o; /* { dg-error "fobjc-exceptions" "is required to enable Objective-C exception syntax" } */ + } + @catch (id object) + { + number++; + @throw; /* { dg-error "fobjc-exceptions" "is required to enable Objective-C exception syntax" } */ + } + @finally + { + number++; + } + + @synchronized (o) /* { dg-error "fobjc-exceptions" "is required to enable Objective-C exception syntax" } */ + { + number++; + } + + return number; +} + -- 2.7.4