[cfe-commits] r163709 - in /cfe/trunk/test: CodeGenObjC/undefined-protocol.m Driver/objc++-cpp-output.mm Driver/objc-cpp-output.m

NAKAMURA Takumi geek4civic at gmail.com
Wed Sep 12 07:26:42 PDT 2012


Author: chapuni
Date: Wed Sep 12 09:26:42 2012
New Revision: 163709

URL: http://llvm.org/viewvc/llvm-project?rev=163709&view=rev
Log:
clang/test: [PR13820] Suppress LLP64-incompatible tests for ObjC with +Asserts.

Modified:
    cfe/trunk/test/CodeGenObjC/undefined-protocol.m
    cfe/trunk/test/Driver/objc++-cpp-output.mm
    cfe/trunk/test/Driver/objc-cpp-output.m

Modified: cfe/trunk/test/CodeGenObjC/undefined-protocol.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/undefined-protocol.m?rev=163709&r1=163708&r2=163709&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/undefined-protocol.m (original)
+++ cfe/trunk/test/CodeGenObjC/undefined-protocol.m Wed Sep 12 09:26:42 2012
@@ -1,5 +1,8 @@
 // RUN: %clang_cc1 -emit-llvm-only -fobjc-runtime=gcc %s
 
+// PR13820
+// REQUIRES: LP64
+
 @protocol MadeUpProtocol;
 
 @interface Object <MadeUpProtocol> @end

Modified: cfe/trunk/test/Driver/objc++-cpp-output.mm
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/objc%2B%2B-cpp-output.mm?rev=163709&r1=163708&r2=163709&view=diff
==============================================================================
--- cfe/trunk/test/Driver/objc++-cpp-output.mm (original)
+++ cfe/trunk/test/Driver/objc++-cpp-output.mm Wed Sep 12 09:26:42 2012
@@ -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;

Modified: cfe/trunk/test/Driver/objc-cpp-output.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/objc-cpp-output.m?rev=163709&r1=163708&r2=163709&view=diff
==============================================================================
--- cfe/trunk/test/Driver/objc-cpp-output.m (original)
+++ cfe/trunk/test/Driver/objc-cpp-output.m Wed Sep 12 09:26:42 2012
@@ -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;





More information about the cfe-commits mailing list