diff options
Diffstat (limited to 'test/tools/llvm-cov/showRegionMarkers.cpp')
-rw-r--r-- | test/tools/llvm-cov/showRegionMarkers.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/test/tools/llvm-cov/showRegionMarkers.cpp b/test/tools/llvm-cov/showRegionMarkers.cpp index 136c3bf7cac34..5507367c0ed1e 100644 --- a/test/tools/llvm-cov/showRegionMarkers.cpp +++ b/test/tools/llvm-cov/showRegionMarkers.cpp @@ -1,26 +1,25 @@ -// RUN: llvm-cov show %S/Inputs/regionMarkers.covmapping -instr-profile %S/Inputs/regionMarkers.profdata -show-regions -dump -filename-equivalence %s 2>&1 | FileCheck %s +// RUN: llvm-profdata merge %S/Inputs/regionMarkers.proftext -o %t.profdata -int main() { // CHECK: Marker at [[@LINE]]:12 = 1 +int main() { // CHECK: Marker at [[@LINE]]:12 = 1.11M int x = 0; if (x) { // CHECK: Marker at [[@LINE]]:10 = 0 x = 0; - } else { // CHECK: Marker at [[@LINE]]:10 = 1 + } else { // CHECK: Marker at [[@LINE]]:10 = 1.11M x = 1; } - // CHECK: Marker at [[@LINE+2]]:19 = 101 - // CHECK: Marker at [[@LINE+1]]:28 = 100 - for (int i = 0; i < 100; ++i) { // CHECK: Marker at [[@LINE]]:33 = 100 + // CHECK: Marker at [[@LINE+2]]:19 = 112M + // CHECK: Marker at [[@LINE+1]]:28 = 111M + for (int i = 0; i < 100; ++i) { // CHECK: Marker at [[@LINE]]:33 = 111M x = 1; } - // CHECK: Marker at [[@LINE+1]]:16 = 1 + // CHECK: Marker at [[@LINE+1]]:16 = 1.11M x = x < 10 ? x + 1 : x - 1; // CHECK: Marker at [[@LINE]]:24 = 0 x = x > 10 ? x - 1: // CHECK: Marker at [[@LINE]]:9 = 0 - x + 1; // CHECK: Marker at [[@LINE]]:9 = 1 + x + 1; // CHECK: Marker at [[@LINE]]:9 = 1.11M return 0; } -// llvm-cov doesn't work on big endian yet -// XFAIL: powerpc64-, s390x, mips-, mips64-, sparc +// RUN: llvm-cov show %S/Inputs/regionMarkers.covmapping -instr-profile %t.profdata -show-regions -dump -filename-equivalence %s 2>&1 | FileCheck %s |