2016-08-30 15:01:37 +08:00
|
|
|
// To create the covmapping for this file on Linux, copy this file to /tmp
|
|
|
|
// cd into /tmp. Use llvm-cov convert-for-testing to extract the covmapping.
|
|
|
|
// This test is Windows-only. It checks that all paths, which are generated
|
|
|
|
// in the index and source coverage reports, are native path. For example,
|
|
|
|
// on Windows all '/' are converted to '\'.
|
|
|
|
// REQUIRES: system-windows
|
|
|
|
|
|
|
|
// RUN: llvm-profdata merge %S/Inputs/double_dots.proftext -o %t.profdata
|
|
|
|
// RUN: llvm-cov show %S/Inputs/native_separators.covmapping -instr-profile=%t.profdata -o %t.dir
|
|
|
|
// RUN: FileCheck -check-prefixes=TEXT-INDEX -input-file=%t.dir/index.txt %s
|
|
|
|
// 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
|
|
|
|
// RUN: FileCheck -check-prefixes=HTML-INDEX -input-file=%t.dir/index.html %s
|
|
|
|
// RUN: llvm-cov show -format=html %S/Inputs/native_separators.covmapping -instr-profile=%t.profdata -filename-equivalence %s -o %t.dir
|
|
|
|
// RUN: FileCheck -check-prefixes=HTML -input-file=%t.dir/coverage/tmp/native_separators.c.html %s
|
|
|
|
|
|
|
|
// TEXT-INDEX: \tmp\native_separators.c
|
|
|
|
// HTML-INDEX: >tmp\native_separators.c</a>
|
2016-09-09 09:32:47 +08:00
|
|
|
// HTML: <pre>Source: \tmp\native_separators.c (Binary: native_separators.covmapping)</pre>
|
2016-08-30 15:01:37 +08:00
|
|
|
|
|
|
|
int main() {}
|
2016-09-07 03:31:18 +08:00
|
|
|
|
2016-09-07 05:41:38 +08:00
|
|
|
// RUN: llvm-cov show %S/Inputs/native_separators.covmapping -instr-profile=%t.profdata -filename-equivalence %s -o %t.dir
|
|
|
|
// RUN: FileCheck -check-prefixes=TEXT -input-file=%t.dir/coverage/tmp/native_separators.c.txt %s
|
2016-09-09 09:32:47 +08:00
|
|
|
// TEXT: Source: \tmp\native_separators.c (Binary: native_separators.covmapping)
|
2016-09-07 05:41:38 +08:00
|
|
|
|
2016-09-07 03:31:18 +08:00
|
|
|
// Re-purpose this file to test that "Go to first unexecuted line" feature.
|
|
|
|
|
|
|
|
// RUN: llvm-cov show %S/Inputs/native_separators.covmapping -instr-profile %t.profdata -filename-equivalence -format html -o %t.dir %s
|
|
|
|
// RUN: FileCheck -input-file %t.dir/coverage/tmp/native_separators.c.html %s
|
|
|
|
// CHECK-NOT: >Go to first unexecuted line<
|