+2010-12-26 Nicola Pero <nicola.pero@meta-innovation.com>
+
+ * objc.dg/gnu-api-2-class.m: Updated the test to work with the
+ Apple runtime as well.
+ * obj-c++.dg/gnu-api-2-class.mm: Same change.
+ * objc.dg/gnu-api-2-ivar.m: Same change.
+ * obj-c++.dg/gnu-api-2-ivar.mm: Same change.
+ * objc.dg/gnu-api-2-method.m: Same change.
+ * obj-c++.dg/gnu-api-2-method.mm: Same change.
+ * objc.dg/gnu-api-2-objc.m: Same change.
+ * obj-c++.dg/gnu-api-2-objc.mm: Same change.
+ * objc.dg/gnu-api-2-object.m: Same change.
+ * obj-c++.dg/gnu-api-2-object.mm: Same change.
+ * objc.dg/gnu-api-2-property.m: Same change.
+ * obj-c++.dg/gnu-api-2-property.mm: Same change.
+ * objc.dg/gnu-api-2-protocol.m: Same change.
+ * obj-c++.dg/gnu-api-2-protocol.mm: Same change.
+
+ * objc.dg/gnu-api-2-objc.m: Also, fixed test for
+ objc_disposeClassPair not to create a new class pair with the same
+ name as an existing class, and to test that the class pair is
+ created correctly.
+ * obj-c++.dg/gnu-api-2-objc.mm: Same change.
+
2010-12-26 Nicola Pero <nicola.pero@meta-innovation.com>
* objc.dg/special/special.exp: Added load-category-2 and
This is test 'class', covering all functions starting with 'class'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
std::cout << "Testing class_copyPropertyList ()...\n";
{
unsigned int count;
- Property * list = class_copyPropertyList (objc_getClass ("MySubClass"), &count);
+ objc_property_t * list = class_copyPropertyList (objc_getClass ("MySubClass"), &count);
if (count != 0 || list != NULL)
abort ();
This is test 'ivar', covering all functions starting with 'ivar'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
This is test 'method', covering all functions starting with 'method'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
This is test 'objc', covering all functions starting with 'objc'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
std::cout << "Testing objc_disposeClassPair ()...\n";
{
Method method = class_getInstanceMethod (objc_getClass ("MySubClass"), @selector (setVariable:));
- Class new_class = objc_allocateClassPair (objc_getClass ("MyRootClass"), "MyNewSubClass", 0);
+ Class new_class = objc_allocateClassPair (objc_getClass ("MyRootClass"), "MyNewSubClass2", 0);
+
+ if (new_class == Nil)
+ abort ();
/* Add a bit of everything to the class to exercise undoing all these changes. */
This is test 'object', covering all functions starting with 'object'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
This is test 'property', covering all functions starting with 'property'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
/* TODO: Test new ABI (when available). */
std::cout << "Testing property_getAttributes () ...\n";
{
+ /* The Apple/NeXT runtime seems to crash on the following. */
+#ifdef __GNU_LIBOBJC__
if (property_getAttributes (NULL) != NULL)
abort ();
+#endif
}
/* TODO: Test new ABI (when available). */
std::cout << "Testing property_getName () ...\n";
{
+ /* The Apple/NeXT runtime seems to crash on the following. */
+#ifdef __GNU_LIBOBJC__
+
if (property_getName (NULL) != NULL)
abort ();
+#endif
}
return (0);
This is test 'protocol', covering all functions starting with 'protocol'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
std::cout << "Testing protocol_copyPropertyList ()...\n";
{
unsigned int count;
- Property *list;
+ objc_property_t *list;
list = protocol_copyPropertyList (@protocol (MyProtocol), &count);
/* TODO: Test new ABI (when available). */
std::cout << "Testing protocol_getProperty ()...\n";
{
- Property property;
+ objc_property_t property;
property = protocol_getProperty (objc_getProtocol ("MyProtocol"), "someProperty",
YES, YES);
This is test 'class', covering all functions starting with 'class'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
printf ("Testing class_copyPropertyList ()...\n");
{
unsigned int count;
- Property * list = class_copyPropertyList (objc_getClass ("MySubClass"), &count);
+ objc_property_t * list = class_copyPropertyList (objc_getClass ("MySubClass"), &count);
if (count != 0 || list != NULL)
abort ();
This is test 'ivar', covering all functions starting with 'ivar'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
This is test 'method', covering all functions starting with 'method'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
This is test 'objc', covering all functions starting with 'objc'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
printf ("Testing objc_disposeClassPair ()...\n");
{
Method method = class_getInstanceMethod (objc_getClass ("MySubClass"), @selector (setVariable:));
- Class new_class = objc_allocateClassPair (objc_getClass ("MyRootClass"), "MyNewSubClass", 0);
+ Class new_class = objc_allocateClassPair (objc_getClass ("MyRootClass"), "MyNewSubClass2", 0);
+
+ if (new_class == Nil)
+ abort ();
/* Add a bit of everything to the class to exercise undoing all these changes. */
This is test 'object', covering all functions starting with 'object'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
This is test 'property', covering all functions starting with 'property'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
/* TODO: Test new ABI (when available). */
printf ("Testing property_getAttributes () ...\n");
{
+ /* The Apple/NeXT runtime seems to crash on the following. */
+#ifdef __GNU_LIBOBJC__
if (property_getAttributes (NULL) != NULL)
abort ();
+#endif
}
/* TODO: Test new ABI (when available). */
printf ("Testing property_getName () ...\n");
{
+ /* The Apple/NeXT runtime seems to crash on the following. */
+#ifdef __GNU_LIBOBJC__
if (property_getName (NULL) != NULL)
abort ();
+#endif
}
return 0;
This is test 'protocol', covering all functions starting with 'protocol'. */
/* { dg-do run } */
-/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
/* To get the modern GNU Objective-C Runtime API, you include
objc/runtime.h. */
{ Class isa; }
+ alloc;
- init;
++ initialize;
@end
@implementation MyRootClass
+ alloc { return class_createInstance (self, 0); }
- init { return self; }
++ initialize { return self; }
@end
@protocol MyProtocol
printf ("Testing protocol_copyPropertyList ()...\n");
{
unsigned int count;
- Property *list;
+ objc_property_t *list;
list = protocol_copyPropertyList (@protocol (MyProtocol), &count);
/* TODO: Test new ABI (when available). */
printf ("Testing protocol_getProperty ()...\n");
{
- Property property;
+ objc_property_t property;
property = protocol_getProperty (objc_getProtocol ("MyProtocol"), "someProperty",
YES, YES);