aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-09-12 14:26:42 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-09-12 14:26:42 +0000
commit0098d23677f498e650c5ecc5ee7425d81bf6117b (patch)
tree8492fa6b38d9bb16dfba50dc370b7b5e0771e086
parenta0fed126a92f09bb2f1996e29a43369aabda1b37 (diff)
clang/test: [PR13820] Suppress LLP64-incompatible tests for ObjC with +Asserts.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163709 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGenObjC/undefined-protocol.m3
-rw-r--r--test/Driver/objc++-cpp-output.mm3
-rw-r--r--test/Driver/objc-cpp-output.m3
3 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGenObjC/undefined-protocol.m b/test/CodeGenObjC/undefined-protocol.m
index e5a72ab602..78cf8da336 100644
--- a/test/CodeGenObjC/undefined-protocol.m
+++ b/test/CodeGenObjC/undefined-protocol.m
@@ -1,5 +1,8 @@
// RUN: %clang_cc1 -emit-llvm-only -fobjc-runtime=gcc %s
+// PR13820
+// REQUIRES: LP64
+
@protocol MadeUpProtocol;
@interface Object <MadeUpProtocol> @end
diff --git a/test/Driver/objc++-cpp-output.mm b/test/Driver/objc++-cpp-output.mm
index bb8814428a..9c4d55379a 100644
--- a/test/Driver/objc++-cpp-output.mm
+++ b/test/Driver/objc++-cpp-output.mm
@@ -1,5 +1,8 @@
// RUN: %clang -x objc++-cpp-output -c %s -o /dev/null
+// PR13820
+// REQUIRES: LP64
+
// Should compile without errors
@protocol P
- (void)m;
diff --git a/test/Driver/objc-cpp-output.m b/test/Driver/objc-cpp-output.m
index 6d974838c1..8c174f7732 100644
--- a/test/Driver/objc-cpp-output.m
+++ b/test/Driver/objc-cpp-output.m
@@ -1,5 +1,8 @@
// RUN: %clang -x objc-cpp-output -c %s -o /dev/null
+// PR13820
+// REQUIRES: LP64
+
// Should compile without errors
@protocol P
- (void)m;