aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-11-03 19:58:50 +0000
committerDouglas Gregor <dgregor@apple.com>2011-11-03 19:58:50 +0000
commit2c628646b8c0f5f285a38bf9a97900ee7e34e6c5 (patch)
tree7e438e1731ae149b0f1bc71b37b21f31b1920174
parente397bf1bd90cfceb0166606ebcd2580b7671a828 (diff)
Force test to use the non-fragile ABI
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143642 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Index/complete-ivar-access.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Index/complete-ivar-access.m b/test/Index/complete-ivar-access.m
index acd3883c72..13b43d868a 100644
--- a/test/Index/complete-ivar-access.m
+++ b/test/Index/complete-ivar-access.m
@@ -50,8 +50,8 @@ void f(Sub *sub, Other *other) {
}
@end
-// RUN: c-index-test -code-completion-at=%s:43:8 %s | FileCheck -check-prefix=CHECK-SUB %s
-// RUN: c-index-test -code-completion-at=%s:48:8 %s | FileCheck -check-prefix=CHECK-SUB %s
+// RUN: c-index-test -code-completion-at=%s:43:8 -fobjc-nonfragile-abi %s | FileCheck -check-prefix=CHECK-SUB %s
+// RUN: c-index-test -code-completion-at=%s:48:8 -fobjc-nonfragile-abi %s | FileCheck -check-prefix=CHECK-SUB %s
// CHECK-SUB: ObjCIvarDecl:{ResultType int}{TypedText sub_private} (35)
// CHECK-SUB: ObjCIvarDecl:{ResultType int}{TypedText sub_protected} (35)
// CHECK-SUB: ObjCIvarDecl:{ResultType int}{TypedText sub_public} (35)
@@ -62,8 +62,8 @@ void f(Sub *sub, Other *other) {
// CHECK-SUB: ObjCIvarDecl:{ResultType int}{TypedText super_protected} (37)
// CHECK-SUB: ObjCIvarDecl:{ResultType int}{TypedText super_public} (37)
-// RUN: c-index-test -code-completion-at=%s:44:10 %s | FileCheck -check-prefix=CHECK-OTHER %s
-// RUN: c-index-test -code-completion-at=%s:49:10 %s | FileCheck -check-prefix=CHECK-OTHER %s
+// RUN: c-index-test -code-completion-at=%s:44:10 -fobjc-nonfragile-abi %s | FileCheck -check-prefix=CHECK-OTHER %s
+// RUN: c-index-test -code-completion-at=%s:49:10 -fobjc-nonfragile-abi %s | FileCheck -check-prefix=CHECK-OTHER %s
// CHECK-OTHER: ObjCIvarDecl:{ResultType int}{TypedText other_private} (35) (inaccessible)
// CHECK-OTHER: ObjCIvarDecl:{ResultType int}{TypedText other_protected} (35) (inaccessible)
// CHECK-OTHER: ObjCIvarDecl:{ResultType int}{TypedText other_public} (35)