diff options
author | Greg Parker <gparker@apple.com> | 2016-04-02 05:29:00 +0000 |
---|---|---|
committer | Greg Parker <gparker@apple.com> | 2016-04-02 05:29:00 +0000 |
commit | 084f2312b2821606c301710afc9c1721cfe53f51 (patch) | |
tree | 1b4047cc449cb0cd627b0f0e7208d2857cc4628d | |
parent | b049431bece74674269dc2b25b228916ab764cc2 (diff) | |
download | bcm5719-llvm-084f2312b2821606c301710afc9c1721cfe53f51.tar.gz bcm5719-llvm-084f2312b2821606c301710afc9c1721cfe53f51.zip |
[test] Don't use "UNSUPPORTED" in FileCheck prefixes
lit uses "UNSUPPORTED:" for its own purposes and may be
confused if that text appears elsewhere in the test file.
llvm-svn: 265218
-rw-r--r-- | clang/test/Driver/arc.c | 4 | ||||
-rw-r--r-- | clang/test/Driver/objc-weak.m | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/clang/test/Driver/arc.c b/clang/test/Driver/arc.c index 97d00baf4cc..0025297b332 100644 --- a/clang/test/Driver/arc.c +++ b/clang/test/Driver/arc.c @@ -3,7 +3,7 @@ // RUN: not %clang -x objective-c++ -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck %s // RUN: not %clang -x c -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck -check-prefix NOTOBJC %s // RUN: not %clang -x c++ -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck -check-prefix NOTOBJC %s -// 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 UNSUPPORTED %s +// 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 // Just to test clang is working. # foo @@ -14,4 +14,4 @@ // NOTOBJC-NOT: error: -fobjc-arc is not supported on platforms using the legacy runtime // NOTOBJC: invalid preprocessing directive -// UNSUPPORTED: error: -fobjc-arc is not supported on versions of OS X prior to 10.6 +// NOTSUPPORTED: error: -fobjc-arc is not supported on versions of OS X prior to 10.6 diff --git a/clang/test/Driver/objc-weak.m b/clang/test/Driver/objc-weak.m index ff60759f2c9..68ae26e1bcb 100644 --- a/clang/test/Driver/objc-weak.m +++ b/clang/test/Driver/objc-weak.m @@ -10,9 +10,9 @@ // ARC-NO-WEAK: -fobjc-arc // ARC-NO-WEAK: -fno-objc-weak -// RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.5 -S -### %s -fobjc-arc -fobjc-weak 2>&1 | FileCheck %s --check-prefix ARC-WEAK-UNSUPPORTED -// RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.5 -S -### %s -fno-objc-weak -fobjc-weak -fobjc-arc 2>&1 | FileCheck %s --check-prefix ARC-WEAK-UNSUPPORTED -// ARC-WEAK-UNSUPPORTED: error: -fobjc-weak is not supported on the current deployment target +// RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.5 -S -### %s -fobjc-arc -fobjc-weak 2>&1 | FileCheck %s --check-prefix ARC-WEAK-NOTSUPPORTED +// RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.5 -S -### %s -fno-objc-weak -fobjc-weak -fobjc-arc 2>&1 | FileCheck %s --check-prefix ARC-WEAK-NOTSUPPORTED +// ARC-WEAK-NOTSUPPORTED: error: -fobjc-weak is not supported on the current deployment target // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.7 -S -### %s -fobjc-weak 2>&1 | FileCheck %s --check-prefix MRC-WEAK // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.7 -S -### %s -fno-objc-weak -fobjc-weak 2>&1 | FileCheck %s --check-prefix MRC-WEAK @@ -22,6 +22,6 @@ // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.7 -S -### %s -fobjc-weak -fno-objc-weak 2>&1 | FileCheck %s --check-prefix MRC-NO-WEAK // MRC-NO-WEAK: -fno-objc-weak -// RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.5 -S -### %s -fobjc-weak 2>&1 | FileCheck %s --check-prefix MRC-WEAK-UNSUPPORTED -// RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.5 -S -### %s -fno-objc-weak -fobjc-weak 2>&1 | FileCheck %s --check-prefix MRC-WEAK-UNSUPPORTED -// MRC-WEAK-UNSUPPORTED: error: -fobjc-weak is not supported on the current deployment target +// RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.5 -S -### %s -fobjc-weak 2>&1 | FileCheck %s --check-prefix MRC-WEAK-NOTSUPPORTED +// RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.5 -S -### %s -fno-objc-weak -fobjc-weak 2>&1 | FileCheck %s --check-prefix MRC-WEAK-NOTSUPPORTED +// MRC-WEAK-NOTSUPPORTED: error: -fobjc-weak is not supported on the current deployment target |