Profile-aarch64 :: Linux/comdat_rename.test Profile-aarch64 :: Linux/extern_template.test Profile-aarch64 :: Linux/instrprof-comdat.test Profile-aarch64 :: Linux/instrprof-cs.c The issue is that the created (aarch64) binaries were attempting to run natively instead of running through %run, which guarantees running in the proper environment if the compilation was configured correctly. llvm-svn: 282264
7 lines
437 B
Plaintext
7 lines
437 B
Plaintext
RUN: mkdir -p %t.d
|
|
RUN: %clangxx_profgen -o %t.d/comdat -fcoverage-mapping -fuse-ld=gold %S/../Inputs/instrprof-comdat-1.cpp %S/../Inputs/instrprof-comdat-2.cpp
|
|
RUN: LLVM_PROFILE_FILE=%t-comdat.profraw %run %t.d/comdat
|
|
RUN: llvm-profdata merge -o %t.d/comdat.prof %t-comdat.profraw
|
|
RUN: llvm-cov show --filename-equivalence --instr-profile=%t.d/comdat.prof %t.d/comdat | FileCheck --check-prefix=HEADER %S/../Inputs/instrprof-comdat.h
|
|
|