2015-03-16 14:55:45 +08:00
|
|
|
// Checks for reading various formats.
|
|
|
|
|
2016-08-10 03:53:35 +08:00
|
|
|
// CHECK: [[@LINE+1]]| 100|int main
|
2015-03-16 14:55:45 +08:00
|
|
|
int main(int argc, const char *argv[]) {}
|
|
|
|
|
|
|
|
// RUN: llvm-profdata merge %S/Inputs/binary-formats.proftext -o %t.profdata
|
2015-03-19 08:02:23 +08:00
|
|
|
// RUN: llvm-cov show %S/Inputs/binary-formats.macho32l -instr-profile %t.profdata -filename-equivalence %s | FileCheck %s
|
|
|
|
// RUN: llvm-cov show %S/Inputs/binary-formats.macho64l -instr-profile %t.profdata -filename-equivalence %s | FileCheck %s
|
|
|
|
// RUN: llvm-cov show %S/Inputs/binary-formats.macho32b -instr-profile %t.profdata -filename-equivalence %s | FileCheck %s
|
2016-07-27 06:50:58 +08:00
|
|
|
|
|
|
|
// RUN: llvm-cov export %S/Inputs/binary-formats.macho32l -instr-profile %t.profdata | FileCheck %S/Inputs/binary-formats.canonical.json
|
|
|
|
// RUN: llvm-cov export %S/Inputs/binary-formats.macho64l -instr-profile %t.profdata | FileCheck %S/Inputs/binary-formats.canonical.json
|
|
|
|
// RUN: llvm-cov export %S/Inputs/binary-formats.macho32b -instr-profile %t.profdata | FileCheck %S/Inputs/binary-formats.canonical.json
|