1 // Note: the run lines follow their respective tests, since line/column
2 // matter in this test.
16 struct StructA sa
= { };
19 // RUN: c-index-test -code-completion-at=%s:16:3 %s > %t
20 // RUN: FileCheck -check-prefix=CHECK-CC1 -input-file=%t %s
21 // RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_CACHING=1 c-index-test -code-completion-at=%s:16:3 %s | FileCheck -check-prefix=CHECK-CC1 %s
22 // CHECK-CC1: VarDecl:{ResultType int}{TypedText StructA} (34)
23 // CHECK-CC1: VarDecl:{ResultType int}{TypedText ValueA} (34)
24 // CHECK-CC1-NOT: VarDecl:{ResultType int}{TypedText ValueA} (50)
25 // CHECK-CC1: VarDecl:{ResultType int}{TypedText ValueB} (50)
26 // RUN: c-index-test -code-completion-at=%s:16:10 %s > %t
27 // RUN: FileCheck -check-prefix=CHECK-CC2 -input-file=%t %s
28 // CHECK-CC2: StructDecl:{TypedText StructA} (50)
29 // CHECK-CC2-NOT: StructDecl:{TypedText StructB} (50)
30 // CHECK-CC2: StructDecl:{TypedText StructC} (50)
31 // RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_CACHING=1 c-index-test -code-completion-at=%s:16:10 %s > %t
32 // RUN: FileCheck -check-prefix=CHECK-CC2 -input-file=%t %s