Ying Yi | 76eb219 | 2016-08-30 07:01:37 +0000 | [diff] [blame] | 1 | // 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 |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 11 | // RUN: llvm-cov show -format=html %S/Inputs/native_separators.covmapping -instr-profile=%t.profdata -path-equivalence=/tmp,%S ../llvm-"config"/../llvm-"cov"/native_separators.c -o %t.dir |
Ying Yi | 76eb219 | 2016-08-30 07:01:37 +0000 | [diff] [blame] | 12 | // RUN: FileCheck -check-prefixes=HTML-INDEX -input-file=%t.dir/index.html %s |
Sean Eveson | 9edfeac | 2017-08-14 10:20:12 +0000 | [diff] [blame] | 13 | // RUN: llvm-cov show -format=html %S/Inputs/native_separators.covmapping -instr-profile=%t.profdata -path-equivalence=/tmp,%S %s -o %t.dir |
Ying Yi | 76eb219 | 2016-08-30 07:01:37 +0000 | [diff] [blame] | 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> |
Vedant Kumar | 5c61c70 | 2016-10-25 00:08:33 +0000 | [diff] [blame] | 18 | // HTML: <pre>\tmp\native_separators.c</pre> |
Ying Yi | 76eb219 | 2016-08-30 07:01:37 +0000 | [diff] [blame] | 19 | |
| 20 | int main() {} |