2024-09-25 10:30:13 -07:00
|
|
|
#!/bin/bash
|
2024-10-25 12:21:04 -07:00
|
|
|
# perf all PMU test (exclusive)
|
2021-09-17 11:42:40 -07:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
2024-09-25 10:30:13 -07:00
|
|
|
err=0
|
|
|
|
result=""
|
|
|
|
|
|
|
|
trap_cleanup() {
|
|
|
|
echo "Unexpected signal in ${FUNCNAME[1]}"
|
|
|
|
echo "$result"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
trap trap_cleanup EXIT TERM INT
|
2021-09-17 11:42:40 -07:00
|
|
|
|
2023-10-03 08:49:11 +01:00
|
|
|
# Test all PMU events; however exclude parameterized ones (name contains '?')
|
2024-09-25 10:30:13 -07:00
|
|
|
for p in $(perf list --raw-dump pmu | sed 's/[[:graph:]]\+?[[:graph:]]\+[[:space:]]//g')
|
|
|
|
do
|
2024-11-23 00:12:33 +01:00
|
|
|
echo -n "Testing $p -- "
|
|
|
|
output=$(perf stat -e "$p" true 2>&1)
|
|
|
|
stat_result=$?
|
|
|
|
if echo "$output" | grep -q "$p"
|
2024-09-25 10:30:13 -07:00
|
|
|
then
|
|
|
|
# Event seen in output.
|
2024-11-23 00:12:33 +01:00
|
|
|
if [ $stat_result -eq 0 ] && ! echo "$output" | grep -q "<not supported>"
|
|
|
|
then
|
|
|
|
# Event supported.
|
|
|
|
echo "supported"
|
|
|
|
continue
|
|
|
|
elif echo "$output" | grep -q "<not supported>"
|
|
|
|
then
|
|
|
|
# Event not supported, so ignore.
|
|
|
|
echo "not supported"
|
|
|
|
continue
|
|
|
|
elif echo "$output" | grep -q "No permission to enable"
|
|
|
|
then
|
|
|
|
# No permissions, so ignore.
|
|
|
|
echo "no permission to enable"
|
|
|
|
continue
|
|
|
|
elif echo "$output" | grep -q "Bad event name"
|
|
|
|
then
|
|
|
|
# Non-existent event.
|
|
|
|
echo "Error: Bad event name"
|
|
|
|
echo "$output"
|
|
|
|
err=1
|
|
|
|
continue
|
|
|
|
fi
|
2024-09-25 10:30:13 -07:00
|
|
|
fi
|
2024-11-23 00:12:33 +01:00
|
|
|
|
|
|
|
if echo "$output" | grep -q "Access to performance monitoring and observability operations is limited."
|
2024-09-25 10:30:13 -07:00
|
|
|
then
|
|
|
|
# Access is limited, so ignore.
|
2024-11-23 00:12:33 +01:00
|
|
|
echo "access limited"
|
2024-09-25 10:30:13 -07:00
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# We failed to see the event and it is supported. Possibly the workload was
|
|
|
|
# too small so retry with something longer.
|
2024-11-23 00:12:33 +01:00
|
|
|
output=$(perf stat -e "$p" perf bench internals synthesize 2>&1)
|
|
|
|
if echo "$output" | grep -q "$p"
|
2024-09-25 10:30:13 -07:00
|
|
|
then
|
|
|
|
# Event seen in output.
|
2024-11-23 00:12:33 +01:00
|
|
|
echo "supported"
|
2024-09-25 10:30:13 -07:00
|
|
|
continue
|
2021-09-17 11:42:40 -07:00
|
|
|
fi
|
2024-09-25 10:30:13 -07:00
|
|
|
echo "Error: event '$p' not printed in:"
|
2024-11-23 00:12:33 +01:00
|
|
|
echo "$output"
|
2024-09-25 10:30:13 -07:00
|
|
|
err=1
|
2021-09-17 11:42:40 -07:00
|
|
|
done
|
|
|
|
|
2024-09-25 10:30:13 -07:00
|
|
|
trap - EXIT TERM INT
|
|
|
|
exit $err
|