1 | #include "complete-preamble.h" |
2 | void f() { |
3 | std:: |
4 | } |
5 | |
6 | // RUN: env CINDEXTEST_EDITING=1 LIBCLANG_TIMING=1 c-index-test -code-completion-at=%s:3:8 %s -o - 2>&1 | FileCheck -check-prefix=CHECK-CC1 -check-prefix=SECOND %s |
7 | // RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_CREATE_PREAMBLE_ON_FIRST_PARSE=1 LIBCLANG_TIMING=1 c-index-test -code-completion-at=%s:3:8 %s -o - 2>&1 | FileCheck -check-prefix=CHECK-CC1 -check-prefix=FIRST %s |
8 | |
9 | // FIRST: Precompiling preamble |
10 | // FIRST: Parsing |
11 | // FIRST: Reparsing |
12 | |
13 | // SECOND: Parsing |
14 | // SECOND: Precompiling preamble |
15 | // SECOND: Reparsing |
16 | |
17 | // CHECK-CC1: {ResultType void}{TypedText wibble}{LeftParen (}{RightParen )} (50) |
18 | |