From: Douglas Gregor Date: Tue, 22 Jun 2010 02:17:07 +0000 (+0000) Subject: Attempt to fix test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd9fb98c9911b40497f791954b40275322fd6741;p=clang Attempt to fix test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@106522 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenObjC/category-class.m b/test/CodeGenObjC/category-class.m index 53a2acb57b..ae173ce7e0 100644 --- a/test/CodeGenObjC/category-class.m +++ b/test/CodeGenObjC/category-class.m @@ -1,4 +1,4 @@ -// RUN: %clang -c %s -o %t && libtool -static -o libcodegentest.a %t && %clang -bundle -o codegentestbundle -L. -lcodegentest -Wl,-ObjC && nm codegentestbundle | grep -F '[A(foo) foo_myStuff]' +// 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 // PR7431