2015-03-11 10:30:51 +08:00
|
|
|
// The coverage reader should be able to handle universal binaries
|
|
|
|
|
2015-03-11 16:17:25 +08:00
|
|
|
// CHECK: 100| [[@LINE+1]]|int main
|
2015-03-11 10:30:51 +08:00
|
|
|
int main(int argc, const char *argv[]) {}
|
|
|
|
|
|
|
|
// RUN: llvm-profdata merge %S/Inputs/universal-binary.proftext -o %t.profdata
|
2015-03-19 08:02:23 +08:00
|
|
|
// RUN: llvm-cov show %S/Inputs/universal-binary -instr-profile %t.profdata -filename-equivalence %s -arch x86_64 | FileCheck %s
|
2015-03-11 10:30:51 +08:00
|
|
|
|
2015-03-19 08:02:23 +08:00
|
|
|
// 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
|
2015-03-11 10:30:51 +08:00
|
|
|
// WRONG-ARCH: Failed to load coverage
|
2016-07-22 18:52:21 +08:00
|
|
|
|
|
|
|
// RUN: not llvm-cov report -instr-profile %t.profdata 2>&1 | FileCheck --check-prefix=MISSING-BINARY %s
|
|
|
|
// MISSING-BINARY: 1 positional argument: See:
|