[UpdateTestChecks] Allow Lbegin_func without a leading period
[llvm-complete.git] / test / tools / llvm-cov / showTabsHTML.cpp
blobc9fea2b1680394f03521e4c446211d57e5566a12
1 // RUN: llvm-profdata merge -o %t.profdata %S/Inputs/showTabsHTML.proftext
2 // RUN: llvm-cov show %S/Inputs/showTabsHTML.covmapping -format html -instr-profile %t.profdata -path-equivalence=/tmp,%S %s | FileCheck %s --strict-whitespace
4 int main(int argc, char ** argv) {
5 (void) "This tab starts at column 0"; // CHECK: > (void) "This tab starts at column 0";
6 (void) " This tab starts at column 10"; // CHECK: > (void) " This tab starts at column 10";
7 (void) "This tab starts at column 15"; // CHECK: > (void) "This tab starts at column 15";
9 return 0;
12 // RUN: llvm-cov show %S/Inputs/showTabsHTML.covmapping -format html -tab-size=3 -instr-profile %t.profdata -path-equivalence=/tmp,%S %s | FileCheck -check-prefix=CHECK-TABSIZE %s
14 // CHECK-TABSIZE: > (void) "This tab starts at column 0";
15 // CHECK-TABSIZE: > (void) " This tab starts at column 10";
16 // CHECK-TABSIZE: > (void) "This tab starts at column 15";