Merge tag 'tegra-for-5.17-arm-dt-fixes' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-microblaze.git] / tools / perf / tests / shell / stat_all_metricgroups.sh
1 #!/bin/sh
2 # perf all metricgroups test
3 # SPDX-License-Identifier: GPL-2.0
4
5 set -e
6
7 for m in $(perf list --raw-dump metricgroups); do
8   echo "Testing $m"
9   perf stat -M "$m" -a true
10 done
11
12 exit 0