Lines Matching +full:ip +full:- +full:76
3 # SPDX-License-Identifier: GPL-2.0
9 if [ "$(uname -m)" != "aarch64" ]; then
13 if perf version --build-options | grep HAVE_DWARF_UNWIND_SUPPORT | grep -q OFF
22 TEST_PROGRAM="perf test -w leafloop"
26 rm -f "$PERF_DATA"
32 perf record -o "$PERF_DATA" --call-graph fp -e cycles//u --user-callchains -- $TEST_PROGRAM
35 perf script -i "$PERF_DATA" -F comm,ip,sym | head -n4
37 # expected perf-script output if 'leaf' has been inserted correctly:
42 # 76c leafloop
47 perf script -i "$PERF_DATA" -F comm,ip,sym | tr '\n' ' ' | \
48 grep -E -q "perf $SEP leaf $SEP parent $SEP leafloop"