blob: e7659d7c14527d27601c00d598d09306c439fcad [file] [log] [blame]
Ying Yi76eb2192016-08-30 07:01:37 +00001// To create the covmapping for this file on Linux, copy this file to /tmp
2// cd into /tmp. Use llvm-cov convert-for-testing to extract the covmapping.
3// This test is Windows-only. It checks that all paths, which are generated
4// in the index and source coverage reports, are native path. For example,
5// on Windows all '/' are converted to '\'.
6// REQUIRES: system-windows
7
8// RUN: llvm-profdata merge %S/Inputs/double_dots.proftext -o %t.profdata
9// RUN: llvm-cov show %S/Inputs/native_separators.covmapping -instr-profile=%t.profdata -o %t.dir
10// RUN: FileCheck -check-prefixes=TEXT-INDEX -input-file=%t.dir/index.txt %s
11// RUN: llvm-cov show -format=html %S/Inputs/native_separators.covmapping -instr-profile=%t.profdata -filename-equivalence ../llvm-config/../llvm-cov/native_separators.c -o %t.dir
12// RUN: FileCheck -check-prefixes=HTML-INDEX -input-file=%t.dir/index.html %s
13// RUN: llvm-cov show -format=html %S/Inputs/native_separators.covmapping -instr-profile=%t.profdata -filename-equivalence %s -o %t.dir
14// RUN: FileCheck -check-prefixes=HTML -input-file=%t.dir/coverage/tmp/native_separators.c.html %s
15
16// TEXT-INDEX: \tmp\native_separators.c
17// HTML-INDEX: >tmp\native_separators.c</a>
18// HTML: <pre>Source: \tmp\native_separators.c</pre>
19// HTML: tools\llvm-cov\Inputs\native_separators.covmapping</pre>
20
21int main() {}
Ying Yid36b47c2016-09-06 19:31:18 +000022
Ying Yi24e91bd2016-09-06 21:41:38 +000023// RUN: llvm-cov show %S/Inputs/native_separators.covmapping -instr-profile=%t.profdata -filename-equivalence %s -o %t.dir
24// RUN: FileCheck -check-prefixes=TEXT -input-file=%t.dir/coverage/tmp/native_separators.c.txt %s
25// TEXT: {{^}}Source: \tmp\native_separators.c:{{$}}
26// TEXT: {{^}}Binary: {{.*}}tools\llvm-cov\Inputs\native_separators.covmapping:{{$}}
27
Ying Yid36b47c2016-09-06 19:31:18 +000028// Re-purpose this file to test that "Go to first unexecuted line" feature.
29
30// RUN: llvm-cov show %S/Inputs/native_separators.covmapping -instr-profile %t.profdata -filename-equivalence -format html -o %t.dir %s
31// RUN: FileCheck -input-file %t.dir/coverage/tmp/native_separators.c.html %s
32// CHECK-NOT: >Go to first unexecuted line<