Daniel Dunbar | 6495250 | 2010-02-11 03:16:21 +0000 | [diff] [blame] | 1 | // RUN: %clang -ccc-host-triple unknown -rewrite-objc %s -o - -### 2>&1 | \ |
| 2 | // RUN: FileCheck -check-prefix=TEST0 %s |
Daniel Dunbar | 5314e44 | 2010-07-19 19:44:22 +0000 | [diff] [blame] | 3 | // TEST0: clang{{.*}}" "-cc1" |
| 4 | // TEST0: "-rewrite-objc" |
| 5 | // FIXME: CHECK-NOT is broken somehow, it doesn't work here. Check adjacency instead. |
Anders Carlsson | e9b801f | 2011-02-22 01:52:06 +0000 | [diff] [blame^] | 6 | // TEST0: "-fmessage-length" "0" "-fobjc-exceptions" "-fdiagnostics-show-option" |
Daniel Dunbar | 5314e44 | 2010-07-19 19:44:22 +0000 | [diff] [blame] | 7 | // TEST0: rewrite-objc.m" |
Daniel Dunbar | 6495250 | 2010-02-11 03:16:21 +0000 | [diff] [blame] | 8 | |
| 9 | // RUN: not %clang -ccc-no-clang -ccc-host-triple unknown -rewrite-objc %s -o - -### 2>&1 | \ |
| 10 | // RUN: FileCheck -check-prefix=TEST1 %s |
| 11 | // TEST1: invalid output type 'rewritten-objc' for use with gcc |
| 12 | |
| 13 | // RUN: not %clang -ccc-no-clang -ccc-host-triple i386-apple-darwin10 -rewrite-objc %s -o - -### 2>&1 | \ |
| 14 | // RUN: FileCheck -check-prefix=TEST2 %s |
| 15 | // TEST2: invalid output type 'rewritten-objc' for use with gcc |