You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
557 B
11 lines
557 B
4 months ago
|
// 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
|