[MC,test] Improve nesting macro test
[llvm-project.git] / bolt / test / perf2bolt / perf_test.test
blob7bec4420214d6e11bc29834280a6c4d48521d07b
1 # Check perf2bolt binary function which was compiled with pie
3 REQUIRES: system-linux, perf
5 RUN: %clang %S/Inputs/perf_test.c -fuse-ld=lld -Wl,--script=%S/Inputs/perf_test.lds -o %t
6 RUN: perf record -Fmax -e cycles:u -o %t2 -- %t
7 RUN: perf2bolt %t -p=%t2 -o %t3 -nl -ignore-build-id 2>&1 | FileCheck %s
9 CHECK-NOT: PERF2BOLT-ERROR
10 CHECK-NOT: !! WARNING !! This high mismatch ratio indicates the input binary is probably not the same binary used during profiling collection.
12 RUN: %clang %S/Inputs/perf_test.c -no-pie -fuse-ld=lld -o %t4
13 RUN: perf record -Fmax -e cycles:u -o %t5 -- %t4
14 RUN: perf2bolt %t4 -p=%t5 -o %t6 -nl -ignore-build-id 2>&1 | FileCheck %s