From: Fariborz Jahanian Date: Tue, 22 Jun 2010 17:08:32 +0000 (+0000) Subject: Trying to make BuildBot happy again (related to PR7431). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=08fd376c6c0fc62b9e199f5e93d8667f1534c47c;p=clang Trying to make BuildBot happy again (related to PR7431). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@106553 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenObjC/category-class.m b/test/CodeGenObjC/category-class.m index ae173ce7e0..22d197380f 100644 --- a/test/CodeGenObjC/category-class.m +++ b/test/CodeGenObjC/category-class.m @@ -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 +