]> git.saurik.com Git - apple/objc4.git/blob - test/evil-class-00.m
objc4-756.2.tar.gz
[apple/objc4.git] / test / evil-class-00.m
1 /*
2 rdar://8553305
3
4 TEST_CONFIG OS=iphoneos
5 TEST_CRASHES
6
7 TEST_BUILD
8 $C{COMPILE} $DIR/evil-class-00.m $DIR/evil-main.m -o evil-class-00.exe
9 END
10
11 TEST_RUN_OUTPUT
12 CRASHED: SIGABRT
13 END
14 */
15
16 // NOT EVIL version: apps are allowed through (then crash in +load)
17
18 #define EVIL_SUPER 0
19 #define EVIL_SUPER_META 1
20 #define EVIL_SUB 0
21 #define EVIL_SUB_META 0
22
23 #define OMIT_SUPER 1
24 #define OMIT_NL_SUPER 1
25 #define OMIT_SUB 1
26 #define OMIT_NL_SUB 0
27
28 #include "evil-class-def.m"