diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
commit | 5a5ac124e1efaf208671f01c46edb15f29ed2a0b (patch) | |
tree | a6140557876943cdd800ee997c9317283394b22c /test/tools/llvm-cov/universal-binary.c | |
parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) |
Diffstat (limited to 'test/tools/llvm-cov/universal-binary.c')
-rw-r--r-- | test/tools/llvm-cov/universal-binary.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/tools/llvm-cov/universal-binary.c b/test/tools/llvm-cov/universal-binary.c new file mode 100644 index 0000000000000..8ff94d4e3ad33 --- /dev/null +++ b/test/tools/llvm-cov/universal-binary.c @@ -0,0 +1,10 @@ +// The coverage reader should be able to handle universal binaries + +// CHECK: 100| [[@LINE+1]]|int main +int main(int argc, const char *argv[]) {} + +// RUN: llvm-profdata merge %S/Inputs/universal-binary.proftext -o %t.profdata +// RUN: llvm-cov show %S/Inputs/universal-binary -instr-profile %t.profdata -filename-equivalence %s -arch x86_64 | FileCheck %s + +// RUN: not llvm-cov show %S/Inputs/universal-binary -instr-profile %t.profdata -filename-equivalence %s -arch i386 2>&1 | FileCheck --check-prefix=WRONG-ARCH %s +// WRONG-ARCH: Failed to load coverage |