* [PATCH v3] perf test: Skip perf data type profiling tests for s390
@ 2026-04-01 12:21 Thomas Richter
2026-04-01 16:21 ` Ian Rogers
2026-04-02 21:57 ` Namhyung Kim
0 siblings, 2 replies; 3+ messages in thread
From: Thomas Richter @ 2026-04-01 12:21 UTC (permalink / raw)
To: linux-kernel, linux-s390, linux-perf-users, acme, namhyung,
irogers
Cc: agordeev, gor, sumanthk, hca, japo, Thomas Richter
Test case 'perf data type profiling tests' fails on s390 with this
error:
# ./perf mem record -- ./perf test -w code_with_type
failed: no PMU supports the memory events
# echo $?
255
#
because s390 does not support memory events at all. According to the
man page, perf annotate --code-with-type only works with memory
instructions only. As command 'perf mem record ...' is not supported
on s390, skip this test for s390.
Output before:
# ./perf test 'perf data type profiling tests'
77: perf data type profiling tests : FAILED!
Output after:
# ./perf test 'perf data type profiling tests'
77: perf data type profiling tests : Skip
Fixes: f60a5c22967b8 ("perf tests: Test annotate with data type profiling and rust")
Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
Suggested-by: Namhyung Kim <namhyung@kernel.org>
Suggested-by: Ian Rogers <irogers@google.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Dmitrii Dolgov <9erthalion6@gmail.com>
---
tools/perf/tests/shell/data_type_profiling.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tools/perf/tests/shell/data_type_profiling.sh b/tools/perf/tests/shell/data_type_profiling.sh
index fb47b7213b33..eca694600a04 100755
--- a/tools/perf/tests/shell/data_type_profiling.sh
+++ b/tools/perf/tests/shell/data_type_profiling.sh
@@ -15,6 +15,10 @@ err=0
perfdata=$(mktemp /tmp/__perf_test.perf.data.XXXXX)
perfout=$(mktemp /tmp/__perf_test.perf.out.XXXXX)
+# Check for support of perf mem before trap handler
+perf mem record -o /dev/null -- true 2>&1 | \
+ grep -q "failed: no PMU supports the memory events" && exit 2
+
cleanup() {
rm -rf "${perfdata}" "${perfout}"
rm -rf "${perfdata}".old
--
2.53.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v3] perf test: Skip perf data type profiling tests for s390
2026-04-01 12:21 [PATCH v3] perf test: Skip perf data type profiling tests for s390 Thomas Richter
@ 2026-04-01 16:21 ` Ian Rogers
2026-04-02 21:57 ` Namhyung Kim
1 sibling, 0 replies; 3+ messages in thread
From: Ian Rogers @ 2026-04-01 16:21 UTC (permalink / raw)
To: Thomas Richter
Cc: linux-kernel, linux-s390, linux-perf-users, acme, namhyung,
agordeev, gor, sumanthk, hca, japo
On Wed, Apr 1, 2026 at 5:21 AM Thomas Richter <tmricht@linux.ibm.com> wrote:
>
> Test case 'perf data type profiling tests' fails on s390 with this
> error:
>
> # ./perf mem record -- ./perf test -w code_with_type
> failed: no PMU supports the memory events
> # echo $?
> 255
> #
>
> because s390 does not support memory events at all. According to the
> man page, perf annotate --code-with-type only works with memory
> instructions only. As command 'perf mem record ...' is not supported
> on s390, skip this test for s390.
>
> Output before:
> # ./perf test 'perf data type profiling tests'
> 77: perf data type profiling tests : FAILED!
>
> Output after:
> # ./perf test 'perf data type profiling tests'
> 77: perf data type profiling tests : Skip
>
> Fixes: f60a5c22967b8 ("perf tests: Test annotate with data type profiling and rust")
> Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
> Suggested-by: Namhyung Kim <namhyung@kernel.org>
> Suggested-by: Ian Rogers <irogers@google.com>
> Cc: Namhyung Kim <namhyung@kernel.org>
> Cc: Dmitrii Dolgov <9erthalion6@gmail.com>
Reviewed-by: Ian Rogers <irogers@google.com>
Thanks!
Ian
> ---
> tools/perf/tests/shell/data_type_profiling.sh | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/tools/perf/tests/shell/data_type_profiling.sh b/tools/perf/tests/shell/data_type_profiling.sh
> index fb47b7213b33..eca694600a04 100755
> --- a/tools/perf/tests/shell/data_type_profiling.sh
> +++ b/tools/perf/tests/shell/data_type_profiling.sh
> @@ -15,6 +15,10 @@ err=0
> perfdata=$(mktemp /tmp/__perf_test.perf.data.XXXXX)
> perfout=$(mktemp /tmp/__perf_test.perf.out.XXXXX)
>
> +# Check for support of perf mem before trap handler
> +perf mem record -o /dev/null -- true 2>&1 | \
> + grep -q "failed: no PMU supports the memory events" && exit 2
> +
> cleanup() {
> rm -rf "${perfdata}" "${perfout}"
> rm -rf "${perfdata}".old
> --
> 2.53.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3] perf test: Skip perf data type profiling tests for s390
2026-04-01 12:21 [PATCH v3] perf test: Skip perf data type profiling tests for s390 Thomas Richter
2026-04-01 16:21 ` Ian Rogers
@ 2026-04-02 21:57 ` Namhyung Kim
1 sibling, 0 replies; 3+ messages in thread
From: Namhyung Kim @ 2026-04-02 21:57 UTC (permalink / raw)
To: linux-kernel, linux-s390, linux-perf-users, acme, irogers,
Thomas Richter
Cc: agordeev, gor, sumanthk, hca, japo
On Wed, 01 Apr 2026 14:21:01 +0200, Thomas Richter wrote:
> Test case 'perf data type profiling tests' fails on s390 with this
> error:
>
> # ./perf mem record -- ./perf test -w code_with_type
> failed: no PMU supports the memory events
> # echo $?
> 255
> #
>
> [...]
Applied to perf-tools-next, thanks!
Best regards,
Namhyung
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-04-02 21:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-01 12:21 [PATCH v3] perf test: Skip perf data type profiling tests for s390 Thomas Richter
2026-04-01 16:21 ` Ian Rogers
2026-04-02 21:57 ` Namhyung Kim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox