2 # perf stat CSV output linter
3 # SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
4 # Tests various perf stat CSV output commands for the
5 # correct number of fields and the CSV separator set to ','.
9 . $(dirname $0)/lib/stat_output.sh
13 stat_output=$(mktemp /tmp/__perf_test.stat_output.csv.XXXXX)
16 rm -f "${stat_output}"
25 trap trap_cleanup EXIT TERM INT
27 function commachecker()
34 ;; "--system-wide") exp=6
36 ;; "--interval") exp=7
37 ;; "--per-thread") exp=7
38 ;; "--system-wide-no-aggr") exp=7
39 [ "$(uname -m)" = "s390x" ] && exp='^[6-7]$'
40 ;; "--per-core") exp=8
41 ;; "--per-socket") exp=8
42 ;; "--per-node") exp=8
44 ;; "--per-cache") exp=8
49 # Ignore initial "started on" comment.
51 [ "$x" = "#" ] && continue
52 # Ignore initial blank line.
53 [ "$line" = "" ] && continue
55 # Count the number of commas
56 x=$(echo $line | tr -d -c $csv_sep)
59 [[ ! "$cnt" =~ $exp ]] && {
60 echo "wrong number of fields. expected $exp in $line" 1>&2
63 done < "${stat_output}"
67 perf_cmd="-x$csv_sep -o ${stat_output}"
69 skip_test=$(check_for_topology)
70 check_no_args "CSV" "$perf_cmd"
71 check_system_wide "CSV" "$perf_cmd"
72 check_interval "CSV" "$perf_cmd"
73 check_event "CSV" "$perf_cmd"
74 check_per_thread "CSV" "$perf_cmd"
75 check_per_node "CSV" "$perf_cmd"
76 if [ $skip_test -ne 1 ]
78 check_system_wide_no_aggr "CSV" "$perf_cmd"
79 check_per_core "CSV" "$perf_cmd"
80 check_per_cache_instance "CSV" "$perf_cmd"
81 check_per_die "CSV" "$perf_cmd"
82 check_per_socket "CSV" "$perf_cmd"
84 echo "[Skip] Skipping tests for system_wide_no_aggr, per_core, per_die and per_socket since socket id exposed via topology is invalid"