[cfe-commits] r143642 - /cfe/trunk/test/Index/complete-ivar-access.m

Douglas Gregor dgregor at apple.com
Thu Nov 3 12:58:50 PDT 2011


Author: dgregor
Date: Thu Nov  3 14:58:50 2011
New Revision: 143642

URL: http://llvm.org/viewvc/llvm-project?rev=143642&view=rev
Log:
Force test to use the non-fragile ABI

Modified:
    cfe/trunk/test/Index/complete-ivar-access.m

Modified: cfe/trunk/test/Index/complete-ivar-access.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Index/complete-ivar-access.m?rev=143642&r1=143641&r2=143642&view=diff
==============================================================================
--- cfe/trunk/test/Index/complete-ivar-access.m (original)
+++ cfe/trunk/test/Index/complete-ivar-access.m Thu Nov  3 14:58:50 2011
@@ -50,8 +50,8 @@
 }
 @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 @@
 // 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)





More information about the cfe-commits mailing list