diff options
author | Ian Rogers <[email protected]> | 2024-11-15 12:12:58 -0800 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2024-11-16 16:30:40 -0300 |
commit | db26a8c9e3c285092ed3e14a33755582c04e0269 (patch) | |
tree | 3d8cdea5b31e5c2ecf731b96bd2d42943b9d2038 | |
parent | 180fd0c1eac7cd8c5aa9a9f8b54088a61d9e05db (diff) |
perf test: Add missing __exit calls in tool/hwmon tests
Address sanitizer flagged the missing parse_events_error__exit when
testing on ARM.
Signed-off-by: Ian Rogers <[email protected]>
Cc: Adrian Hunter <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Athira Rajeev <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Kan Liang <[email protected]>
Cc: Mark Rutland <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/tests/hwmon_pmu.c | 1 | ||||
-rw-r--r-- | tools/perf/tests/tool_pmu.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/tests/hwmon_pmu.c b/tools/perf/tests/hwmon_pmu.c index 5c4114354c65..9f44093f18df 100644 --- a/tools/perf/tests/hwmon_pmu.c +++ b/tools/perf/tests/hwmon_pmu.c @@ -194,6 +194,7 @@ static int do_test(size_t i, bool with_pmu, bool with_alias) } out: + parse_events_error__exit(&err); evlist__delete(evlist); return ret; } diff --git a/tools/perf/tests/tool_pmu.c b/tools/perf/tests/tool_pmu.c index 46896b485abf..187942b749b7 100644 --- a/tools/perf/tests/tool_pmu.c +++ b/tools/perf/tests/tool_pmu.c @@ -66,6 +66,7 @@ static int do_test(enum tool_pmu_event ev, bool with_pmu) } out: + parse_events_error__exit(&err); evlist__delete(evlist); return ret; } |