You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
685 B
18 lines
685 B
// To create the covmapping for this file, copy this file to /tmp/dots/,
|
|
// cd into /tmp/dots, and pass "../dots/double_dots.c" to the compiler. Use
|
|
// llvm-cov convert-for-testing to extract the covmapping.
|
|
|
|
// RUN: llvm-profdata merge %S/Inputs/double_dots.proftext -o %t.profdata
|
|
// RUN: llvm-cov show %S/Inputs/double_dots.covmapping -instr-profile=%t.profdata -o %t.dir
|
|
// RUN: FileCheck -input-file=%t.dir/index.txt %s
|
|
|
|
// CHECK-NOT: coverage{{.*}}dots{{.*}}..{{.*}}dots
|
|
|
|
int main() {}
|
|
|
|
// Re-purpose this file to test that we use relative paths when creating
|
|
// report indices:
|
|
|
|
// RUN: FileCheck -check-prefix=REL-INDEX -input-file %t.dir/index.txt %s
|
|
// REL-INDEX-NOT: %t.dir
|