11 lines · plain
1# Test that llvm-cov export produces function data by default and that it can be2# turned off with a flag.3 4RUN: llvm-cov export %S/Inputs/report.covmapping -instr-profile %S/Inputs/report.profdata 2>&1 | FileCheck %s5RUN: llvm-cov export %S/Inputs/report.covmapping -instr-profile %S/Inputs/report.profdata -skip-functions 2>&1 | FileCheck -check-prefix=SKIP-FUNCTIONS %s6 7CHECK: "functions":[8SKIP-FUNCTIONS-NOT: "functions":[9 10 11