diff options
author | Justin Bogner <mail@justinbogner.com> | 2015-03-11 02:30:51 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2015-03-11 02:30:51 +0000 |
commit | 4379535e3f50f245e50f7820a80d81cc91b38c5f (patch) | |
tree | 4d3edfac1b9144a12ee4a64948a3b6a0ee4c99dc /llvm/test/tools/llvm-cov/universal-binary.c | |
parent | 8ce51084b803609393835403d20a40e4952b144f (diff) | |
download | bcm5719-llvm-4379535e3f50f245e50f7820a80d81cc91b38c5f.tar.gz bcm5719-llvm-4379535e3f50f245e50f7820a80d81cc91b38c5f.zip |
InstrProf: Teach llvm-cov to handle universal binaries when given -arch
llvm-svn: 231902
Diffstat (limited to 'llvm/test/tools/llvm-cov/universal-binary.c')
-rw-r--r-- | llvm/test/tools/llvm-cov/universal-binary.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/test/tools/llvm-cov/universal-binary.c b/llvm/test/tools/llvm-cov/universal-binary.c new file mode 100644 index 00000000000..7fe2fe86243 --- /dev/null +++ b/llvm/test/tools/llvm-cov/universal-binary.c @@ -0,0 +1,13 @@ +// 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 -no-colors -filename-equivalence %s -arch x86_64 | FileCheck %s + +// RUN: not llvm-cov show %S/Inputs/universal-binary -instr-profile %t.profdata -no-colors -filename-equivalence %s -arch i386 2>&1 | FileCheck --check-prefix=WRONG-ARCH %s +// WRONG-ARCH: Failed to load coverage + +// llvm-cov doesn't work on big endian yet +// XFAIL: powerpc64-, s390x, mips-, mips64-, sparc |