Skip to content

Commit cd400f6

Browse files
athira-rajeevacmel
authored andcommitted
perf tests stat+csv_output: Include sanity check for topology
Testcase stat+csv_output.sh fails in powerpc: 84: perf stat CSV output linter: FAILED! The testcase "stat+csv_output.sh" verifies perf stat CSV output. The test covers aggregation modes like per-socket, per-core, per-die, -A (no_aggr mode) along with few other tests. It counts expected fields for various commands. For example say -A (i.e, AGGR_NONE mode), expects 7 fields in the output having "CPU" as first field. Same way, for per-socket, it expects the first field in result to point to socket id. The testcases compares the result with expected count. The values for socket, die, core and cpu are fetched from topology directory: /sys/devices/system/cpu/cpu*/topology. For example, socket value is fetched from "physical_package_id" file of topology directory. (cpu__get_topology_int() in util/cpumap.c) If a platform fails to fetch the topology information, values will be set to -1. For example, incase of pSeries platform of powerpc, value for "physical_package_id" is restricted and not exposed. So, -1 will be assigned. Perf code has a checks for valid cpu id in "aggr_printout" (stat-display.c), which displays the fields. So, in cases where topology values not exposed, first field of the output displaying will be empty. This cause the testcase to fail, as it counts number of fields in the output. Incase of -A (AGGR_NONE mode,), testcase expects 7 fields in the output, becos of -1 value obtained from topology files for some, only 6 fields are printed. Hence a testcase failure reported due to mismatch in number of fields in the output. Patch here adds a sanity check in the testcase for topology. Check will help to skip the test if -1 value found. Fixes: 7473ee5 ("perf test: Add checking for perf stat CSV output.") Reported-by: Disha Goel <[email protected]> Suggested-by: Ian Rogers <[email protected]> Suggested-by: James Clark <[email protected]> Signed-off-by: Athira Jajeev <[email protected]> Cc: Claire Jensen <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Kajol Jain <[email protected]> Cc: [email protected] Cc: Madhavan Srinivasan <[email protected]> Cc: Michael Ellerman <[email protected]> Cc: Nageswara R Sastry <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
1 parent 6cef7da commit cd400f6

File tree

1 file changed

+39
-4
lines changed

1 file changed

+39
-4
lines changed

tools/perf/tests/shell/stat+csv_output.sh

Lines changed: 39 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
set -e
88

9+
skip_test=0
10+
911
function commachecker()
1012
{
1113
local -i cnt=0
@@ -156,14 +158,47 @@ check_per_socket()
156158
echo "[Success]"
157159
}
158160

161+
# The perf stat options for per-socket, per-core, per-die
162+
# and -A ( no_aggr mode ) uses the info fetched from this
163+
# directory: "/sys/devices/system/cpu/cpu*/topology". For
164+
# example, socket value is fetched from "physical_package_id"
165+
# file in topology directory.
166+
# Reference: cpu__get_topology_int in util/cpumap.c
167+
# If the platform doesn't expose topology information, values
168+
# will be set to -1. For example, incase of pSeries platform
169+
# of powerpc, value for "physical_package_id" is restricted
170+
# and set to -1. Check here validates the socket-id read from
171+
# topology file before proceeding further
172+
173+
FILE_LOC="/sys/devices/system/cpu/cpu*/topology/"
174+
FILE_NAME="physical_package_id"
175+
176+
check_for_topology()
177+
{
178+
if ! ParanoidAndNotRoot 0
179+
then
180+
socket_file=`ls $FILE_LOC/$FILE_NAME | head -n 1`
181+
[ -z $socket_file ] && return 0
182+
socket_id=`cat $socket_file`
183+
[ $socket_id == -1 ] && skip_test=1
184+
return 0
185+
fi
186+
}
187+
188+
check_for_topology
159189
check_no_args
160190
check_system_wide
161-
check_system_wide_no_aggr
162191
check_interval
163192
check_event
164-
check_per_core
165193
check_per_thread
166-
check_per_die
167194
check_per_node
168-
check_per_socket
195+
if [ $skip_test -ne 1 ]
196+
then
197+
check_system_wide_no_aggr
198+
check_per_core
199+
check_per_die
200+
check_per_socket
201+
else
202+
echo "[Skip] Skipping tests for system_wide_no_aggr, per_core, per_die and per_socket since socket id exposed via topology is invalid"
203+
fi
169204
exit 0

0 commit comments

Comments
 (0)