mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
33e65f7a8d
Summary: Patch by Chuan Qiu (@eagleonhill). Reviewers: Dor1s Reviewed By: Dor1s Subscribers: lebedev.ri, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D63571 llvm-svn: 364653
28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
// RUN: llvm-profdata merge %S/Inputs/multiple-files.proftext -o %t.profdata
|
|
// RUN: llvm-cov report %S/Inputs/multiple-files.covmapping -instr-profile %t.profdata | FileCheck %s -check-prefix=MANY_COMPONENTS
|
|
// RUN: llvm-cov report %S/Inputs/multiple-files2.covmapping -instr-profile %t.profdata | FileCheck %s -check-prefix=ONE_COMPONENT
|
|
// RUN: llvm-cov export %S/Inputs/multiple-files.covmapping -instr-profile %t.profdata -format=lcov | FileCheck %s -check-prefix=LCOV
|
|
|
|
// MANY_COMPONENTS: Filename
|
|
// MANY_COMPONENTS-NEXT: ---
|
|
// MANY_COMPONENTS-NEXT: {{^}}a{{[/\\]}}f2.c
|
|
// MANY_COMPONENTS-NEXT: {{^}}b{{[/\\]}}c{{[/\\]}}f4.c
|
|
// MANY_COMPONENTS-NEXT: {{^}}b{{[/\\]}}f3.c
|
|
// MANY_COMPONENTS-NEXT: {{^}}f1.c
|
|
|
|
// ONE_COMPONENT: Filename
|
|
// ONE_COMPONENT-NEXT: ---
|
|
// ONE_COMPONENT-NEXT: {{^}}cov.c
|
|
// ONE_COMPONENT-NEXT: {{^}}cov.h
|
|
|
|
// LCOV-LABEL: SF:{{.*}}a{{[/\\]}}f2.c
|
|
// LCOV: FN:1,f2
|
|
// No extra funcs
|
|
// LCOV-NOT: FN:
|
|
// LCOV-LABEL: SF:{{.*}}b{{[/\\]}}c{{[/\\]}}f4.c
|
|
// LCOV: FN:1,f4
|
|
// LCOV-LABEL: SF:{{.*}}b{{[/\\]}}f3.c
|
|
// LCOV: FN:1,f3
|
|
// LCOV-LABEL: SF:{{.*}}f1.c
|
|
// LCOV: FN:1,f1
|