Lines Matching +full:clock +full:- +full:skip
3 # SPDX-License-Identifier: GPL-2.0
7 set -e
14 …(cpu-clock task-clock context-switches cpu-migrations page-faults stalled-cycles-frontend stalled-…
19 rm -f "${stat_output}"
21 trap - EXIT TERM INT
35 in "--interval") prefix=2
36 ;; "--per-thread") prefix=2
37 ;; "--system-wide-no-aggr") prefix=2
38 ;; "--per-core") prefix=3
39 ;; "--per-socket") prefix=3
40 ;; "--per-node") prefix=3
41 ;; "--per-die") prefix=3
42 ;; "--per-cache") prefix=3
43 ;; "--per-cluster") prefix=3
59 main_body=$(echo $line | cut -d' ' -f$prefix-)
63 # Skip metrics without event name
90 perf_cmd="-o ${stat_output}"
98 if [ $skip_test -ne 1 ]
107 …echo "[Skip] Skipping tests for system_wide_no_aggr, per_core, per_die and per_socket since socket…