[cfe-commits] r106553 - /cfe/trunk/test/CodeGenObjC/category-class.m

Fariborz Jahanian fjahanian at apple.com
Tue Jun 22 10:08:33 PDT 2010


Author: fjahanian
Date: Tue Jun 22 12:08:32 2010
New Revision: 106553

URL: http://llvm.org/viewvc/llvm-project?rev=106553&view=rev
Log:
Trying to make BuildBot happy again (related to PR7431).


Modified:
    cfe/trunk/test/CodeGenObjC/category-class.m

Modified: cfe/trunk/test/CodeGenObjC/category-class.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/category-class.m?rev=106553&r1=106552&r2=106553&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/category-class.m (original)
+++ cfe/trunk/test/CodeGenObjC/category-class.m Tue Jun 22 12:08:32 2010
@@ -1,7 +1,10 @@
-// RUN: %clang -c %s -o %t.o && libtool -static -o libcodegentest.a %t.o && %clang -bundle -o codegentestbundle -L. -lcodegentest -Wl,-ObjC && nm codegentestbundle | grep -F '[A(foo) foo_myStuff]'
-// XFAIL: *
-// XTARGET: darwin9
+// RUN: %clang_cc1 -triple i386-apple-darwin9  -emit-llvm -o - %s | FileCheck %s
 // PR7431
+
+// CHECK: module asm "\09.lazy_reference .objc_class_name_A"
+// CHECK: module asm "\09.objc_category_name_A_foo=0"
+// CHECK: module asm "\09.globl .objc_category_name_A_foo"
+
 @interface A
 @end
 @interface A(foo)
@@ -11,3 +14,4 @@
 - (void)foo_myStuff {
 }
 @end
+





More information about the cfe-commits mailing list