]> git.saurik.com Git - apple/objc4.git/blob - test/applescriptobjc.m
objc4-680.tar.gz
[apple/objc4.git] / test / applescriptobjc.m
1 // TEST_CONFIG OS=macosx
2 // TEST_CFLAGS -framework AppleScriptObjC -framework Foundation
3
4 // Verify that trivial AppleScriptObjC apps run with GC off.
5
6 #include <Foundation/Foundation.h>
7 #include "test.h"
8
9 int main()
10 {
11 [NSBundle class];
12 testassert(!objc_collectingEnabled());
13 succeed(__FILE__);
14 }