Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf tests: Skip record test if test_loop symbol is missing

perf record test depends on finding symbol test_loop in perf, and fails if
perf has been stripped and no debug object is available. In that case, skip
the test instead.

Example:

Note, building with perl support adds option -Wl,-E which causes the
linker to add all (global) symbols to the dynamic symbol table. So the
test_loop symbol, being global, does not get stripped unless NO_LIBPERL=1

Before:

$ make NO_LIBPERL=1 -C tools/perf >/dev/null 2>&1
$ strip tools/perf/perf
$ tools/perf/perf buildid-cache -p `realpath tools/perf/perf`
$ tools/perf/perf test -v 'record tests'
91: perf record tests :
--- start ---
test child forked, pid 118750
Basic --per-thread mode test
Per-thread record [Failed missing output]
Register capture test
Register capture test [Success]
Basic --system-wide mode test
System-wide record [Skipped not supported]
Basic target workload test
Workload record [Failed missing output]
test child finished with -1
---- end ----
perf record tests: FAILED!

After:

$ tools/perf/perf test -v 'record tests'
91: perf record tests :
--- start ---
test child forked, pid 120025
perf does not have symbol 'test_loop'
perf is missing symbols - skipping test
test child finished with -2
---- end ----
perf record tests: Skip

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Acked-by: Ian Rogers <irogers@google.com>
Cc: German Gomez <german.gomez@arm.com>
Cc: James Clark <james.clark@arm.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Leo Yan <leo.yan@linaro.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lore.kernel.org/r/20231123075848.9652-5-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Adrian Hunter and committed by
Arnaldo Carvalho de Melo
3c489dbe c9526a73

+7 -1
+7 -1
tools/perf/tests/shell/record.sh
··· 8 8 # shellcheck source=lib/waiting.sh 9 9 . "${shelldir}"/lib/waiting.sh 10 10 11 + # shellcheck source=lib/perf_has_symbol.sh 12 + . "${shelldir}"/lib/perf_has_symbol.sh 13 + 14 + testsym="test_loop" 15 + 16 + skip_test_missing_symbol ${testsym} 17 + 11 18 err=0 12 19 perfdata=$(mktemp /tmp/__perf_test.perf.data.XXXXX) 13 20 testprog="perf test -w thloop" 14 - testsym="test_loop" 15 21 cpu_pmu_dir="/sys/bus/event_source/devices/cpu*" 16 22 br_cntr_file="/caps/branch_counter_nr" 17 23 br_cntr_output="branch stack counters"