diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-06-22 02:17:07 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-06-22 02:17:07 +0000 |
commit | cd9fb98c9911b40497f791954b40275322fd6741 (patch) | |
tree | 87f9026432d66235dbd0a78257c747533be79585 | |
parent | f489688114275c821b1e647e26f71eeb94d8ab24 (diff) |
Attempt to fix test
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@106522 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenObjC/category-class.m | 2 |
1 files changed, 1 insertions, 1 deletions
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 |