blob: 38ba228ba29d1c0113186ab7d39eb7a867f4dc99 [file] [log] [blame]
Sam McCallbb2cf632018-01-12 14:51:47 +00001namespace ns {
2int bar;
3}
4
5int main() { return ns:: }
Sam McCallabdcc612018-01-24 17:50:20 +00006int main2() { return ns::foo(). }
Eric Liu88de9f62018-09-19 09:34:55 +00007int main3() { PREAMBLE_ }
Sam McCallbb2cf632018-01-12 14:51:47 +00008
Eric Liu88de9f62018-09-19 09:34:55 +00009// RUN: printf "namespace ns { struct foo { int baz }; }\n#define PREAMBLE_MAC" > %t.h
Sam McCallbb2cf632018-01-12 14:51:47 +000010// RUN: c-index-test -write-pch %t.h.pch -x c++-header %t.h
11//
12// RUN: c-index-test -code-completion-at=%s:5:26 -include %t.h %s | FileCheck -check-prefix=WITH-PCH %s
13// WITH-PCH: {TypedText bar}
14// WITH-PCH: {TypedText foo}
15
Eric Liu88de9f62018-09-19 09:34:55 +000016// RUN: c-index-test -code-completion-at=%s:7:24 -include %t.h %s | FileCheck -check-prefix=WITH-PCH-MACRO %s
17// WITH-PCH-MACRO: {TypedText PREAMBLE_MAC}
18
Sam McCallbb2cf632018-01-12 14:51:47 +000019// RUN: env CINDEXTEST_COMPLETION_SKIP_PREAMBLE=1 c-index-test -code-completion-at=%s:5:26 -include %t.h %s | FileCheck -check-prefix=SKIP-PCH %s
20// SKIP-PCH-NOT: foo
21// SKIP-PCH: {TypedText bar}
22// SKIP-PCH-NOT: foo
23
Eric Liu88de9f62018-09-19 09:34:55 +000024// RUN: env CINDEXTEST_COMPLETION_SKIP_PREAMBLE=1 c-index-test -code-completion-at=%s:7:24 -include %t.h %s | FileCheck -check-prefix=SKIP-PCH-MACRO %s
25// SKIP-PCH-MACRO-NOT: {TypedText PREAMBLE_MAC}
26
Sam McCall091b1ef2018-01-16 12:33:46 +000027// Verify that with *no* preamble (no -include flag) we still get local results.
28// SkipPreamble used to break this, by making lookup *too* lazy.
29// RUN: env CINDEXTEST_COMPLETION_SKIP_PREAMBLE=1 c-index-test -code-completion-at=%s:5:26 %s | FileCheck -check-prefix=NO-PCH %s
30// NO-PCH-NOT: foo
31// NO-PCH: {TypedText bar}
32// NO-PCH-NOT: foo
33
Sam McCallabdcc612018-01-24 17:50:20 +000034// Verify that we still get member results from the preamble.
35// RUN: env CINDEXTEST_COMPLETION_SKIP_PREAMBLE=1 c-index-test -code-completion-at=%s:6:32 -include %t.h %s | FileCheck -check-prefix=MEMBER %s
36// MEMBER: {TypedText baz}
37