1 | // RUN: not %clang -ObjC -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck %s |
2 | // RUN: not %clang -x objective-c -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck %s |
3 | // RUN: not %clang -x objective-c++ -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck %s |
4 | // RUN: not %clang -x c -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck -check-prefix NOTOBJC %s |
5 | // RUN: not %clang -x c++ -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck -check-prefix NOTOBJC %s |
6 | // RUN: not %clang -x objective-c -target x86_64-apple-darwin11 -mmacosx-version-min=10.5 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck -check-prefix NOTSUPPORTED %s |
7 | |
8 | // Just to test clang is working. |
9 | # foo |
10 | |
11 | // CHECK: error: -fobjc-arc is not supported on platforms using the legacy runtime |
12 | // CHECK-NOT: invalid preprocessing directive |
13 | |
14 | // NOTOBJC-NOT: error: -fobjc-arc is not supported on platforms using the legacy runtime |
15 | // NOTOBJC: invalid preprocessing directive |
16 | |
17 | // NOTSUPPORTED: error: -fobjc-arc is not supported on versions of OS X prior to 10.6 |
18 | |