diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-02-24 00:29:20 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-02-24 00:29:20 +0000 |
commit | 862d735021d0cfa121f66de456c0000796b75dc0 (patch) | |
tree | 435df3d3c946b7782d64d5cdffa4bf27e48604b6 | |
parent | 577fb5b2c15f7c187983a53e53f4f53b5d7aabb1 (diff) |
Make test works with FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151314 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Rewriter/func-in-impl.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Rewriter/func-in-impl.m b/test/Rewriter/func-in-impl.m index 6242c7ea77..350a72671b 100644 --- a/test/Rewriter/func-in-impl.m +++ b/test/Rewriter/func-in-impl.m @@ -1,4 +1,5 @@ -// RUN: %clang_cc1 -rewrite-objc %s -o - | FileCheck %s +// RUN: %clang_cc1 -E %s -o %t.m +// RUN: %clang_cc1 -fobjc-fragile-abi -rewrite-objc %t.m -o - | FileCheck %s @interface I { id _delegate; |