brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.0 KiB · c9fea2b Raw
17 lines · cpp
1// RUN: llvm-profdata merge -o %t.profdata %S/Inputs/showTabsHTML.proftext2// RUN: llvm-cov show %S/Inputs/showTabsHTML.covmapping -format html -instr-profile %t.profdata -path-equivalence=/tmp,%S %s | FileCheck %s --strict-whitespace3 4int 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";8 9  return 0;10}11 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 %s13 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";17