]> git.saurik.com Git - apple/objc4.git/blob - test/applescriptobjc2.m
objc4-680.tar.gz
[apple/objc4.git] / test / applescriptobjc2.m
1 // TEST_CFLAGS -framework AppleScriptObjC -framework Foundation
2 // TEST_CONFIG MEM=gc
3
4 // Verify that non-trivial AppleScriptObjC apps run with GC ON.
5
6 #include <Foundation/Foundation.h>
7 #include "test.h"
8
9 @interface NonTrivial : NSObject @end
10 @implementation NonTrivial @end
11
12 int main()
13 {
14 [NSBundle class];
15 testassert(objc_collectingEnabled());
16 succeed(__FILE__);
17 }