Home | History | Annotate | Download | only in llvm-cov
      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
      3 
      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";
      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 %s
     13 
     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