mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-09-11 17:16:11 -04:00
To include IO-only and backtrace modes to test different code paths. $ sudo perf test -vv timechart 135: perf timechart tests : Running 135: perf timechart tests: ---- start ---- test child forked, pid 2413665 perf timechart Basic test perf timechart Basic test [Success] perf timechart IO-only test perf timechart IO-only test [Success] perf timechart Backtrace test perf timechart Backtrace test [Success] ---- end(0) ---- 135: perf timechart tests : Ok === Test Summary === Passed main tests : 1 Passed subtests : 0 Skipped tests : 0 Failed tests : 0 Signed-off-by: Namhyung Kim <namhyung@kernel.org>
74 lines
1.6 KiB
Bash
Executable File
74 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
# perf timechart tests
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
set -e
|
|
|
|
err=0
|
|
perfdata=$(mktemp /tmp/__perf_timechart_test.perf.data.XXXXX)
|
|
output=$(mktemp /tmp/__perf_timechart_test.output.XXXXX.svg)
|
|
|
|
cleanup() {
|
|
rm -f "${perfdata}"*
|
|
rm -f "${output}"
|
|
trap - EXIT TERM INT
|
|
}
|
|
|
|
trap_cleanup() {
|
|
echo "Unexpected signal in ${FUNCNAME[1]}"
|
|
cleanup
|
|
exit 1
|
|
}
|
|
trap trap_cleanup EXIT TERM INT
|
|
|
|
test_timechart() {
|
|
NAME=$1
|
|
OPTION=$2
|
|
|
|
echo "perf timechart ${NAME} test"
|
|
|
|
# Try to record timechart data.
|
|
# perf timechart record uses system-wide recording and specific tracepoints.
|
|
# If it fails (e.g. permissions, missing tracepoints), skip the test.
|
|
if ! perf timechart record -o "${perfdata}" ${OPTION} true > /dev/null 2>&1; then
|
|
echo "perf timechart ${NAME} test [Skipped: perf timechart record failed (permissions/events?)]"
|
|
return
|
|
fi
|
|
|
|
# Generate the timechart
|
|
if ! perf timechart -i "${perfdata}" -o "${output}" > /dev/null 2>&1; then
|
|
echo "perf timechart ${NAME} test [Failed: perf timechart command failed]"
|
|
err=1
|
|
return
|
|
fi
|
|
|
|
# Check if output file exists and is not empty
|
|
if [ ! -s "${output}" ]; then
|
|
echo "perf timechart ${NAME} test [Failed: output file is empty or missing]"
|
|
err=1
|
|
return
|
|
fi
|
|
|
|
# Check if it looks like an SVG
|
|
if ! grep -q "svg" "${output}"; then
|
|
echo "perf timechart ${NAME} test [Failed: output doesn't look like SVG]"
|
|
err=1
|
|
return
|
|
fi
|
|
|
|
echo "perf timechart ${NAME} test [Success]"
|
|
}
|
|
|
|
if ! perf check feature -q libtraceevent ; then
|
|
echo "perf timechart is not supported. Skip."
|
|
cleanup
|
|
exit 2
|
|
fi
|
|
|
|
test_timechart "Basic" ""
|
|
test_timechart "IO-only" "-I"
|
|
test_timechart "Backtrace" "-g"
|
|
|
|
cleanup
|
|
exit $err
|