diff options
| author | Ian Rogers <irogers@google.com> | 2025-11-11 13:22:00 -0800 |
|---|---|---|
| committer | Namhyung Kim <namhyung@kernel.org> | 2025-11-11 16:48:35 -0800 |
| commit | b1cb2b76bd16d5399fa7d21b2909134687f021b0 (patch) | |
| tree | 6f3a8f7ea86f7026ab12ef29f417d027f6d178d9 /tools/perf | |
| parent | 2c240484cf52da3c2ca14cfb70e8cf9179197ced (diff) | |
perf test stat: Ignore failures in Default[234] metricgroups
The Default[234] metric groups may contain unsupported legacy
events. Allow those metric groups to fail.
Signed-off-by: Ian Rogers <irogers@google.com>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Diffstat (limited to 'tools/perf')
| -rwxr-xr-x | tools/perf/tests/shell/stat_all_metricgroups.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/tests/shell/stat_all_metricgroups.sh b/tools/perf/tests/shell/stat_all_metricgroups.sh index c6d61a4ac3e7..1400880ec01f 100755 --- a/tools/perf/tests/shell/stat_all_metricgroups.sh +++ b/tools/perf/tests/shell/stat_all_metricgroups.sh @@ -37,6 +37,9 @@ do then err=2 # Skip fi + elif [[ "$m" == @(Default2|Default3|Default4) ]] + then + echo "Ignoring failures in $m that may contain unsupported legacy events" else echo "Metric group $m failed" echo $result |
