[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAJpZYjWpcmqZfVFkCPa7ou6C+4zK0J07Q6iGmEPN4-zS9oDsiw@mail.gmail.com>
Date: Tue, 10 Jun 2025 08:58:02 -0700
From: Chun-Tse Shao <ctshao@...gle.com>
To: Thomas Richter <tmricht@...ux.ibm.com>
Cc: linux-kernel@...r.kernel.org, linux-s390@...r.kernel.org,
linux-perf-users@...r.kernel.org, acme@...nel.org, namhyung@...nel.org,
agordeev@...ux.ibm.com, gor@...ux.ibm.com, sumanthk@...ux.ibm.com,
hca@...ux.ibm.com, japo@...ux.ibm.com
Subject: Re: [PATCH] perf test: Skip stat uniquifying test if unavailable
Hi Thomas,
Thanks for the fix. Arnaldo also had a fix and should fix this issue.
https://lore.kernel.org/all/aEHugAPinlWLuTAS@x1/
Thanks,
CT
On Tue, Jun 10, 2025 at 7:45 AM Thomas Richter <tmricht@...ux.ibm.com> wrote:
>
> Commit cb422594d6206 ("perf test: Add stat uniquifying test")
> introduced a new test case which uses an event named clockticks
> which is exported as sysfs file .../uncore_imc_0/clockticks.
> This file does not exist on s390 and causes the test case to
> always fail.
>
> Check for the existence of file clockticks and skip this
> test if the event does not exist.
>
> Output before:
> # perf test 87
> 87: perf stat events uniquifying : FAILED!
> # ./perf stat -e clockticks -A
> event syntax error: 'clockticks'
> \___ Bad event name
> ...
> #
>
> Output after:
> # perf test 87
> 87: perf stat events uniquifying : Skip
> #
>
> Fixes: cb422594d6206 ("perf test: Add stat uniquifying test")
> Signed-off-by: Thomas Richter <tmricht@...ux.ibm.com>
> Acked-by: Sumanth Korikkar <sumanthk@...ux.ibm.com>
> Cc: Chun-Tse Shao <ctshao@...gle.com>
> ---
> tools/perf/tests/shell/stat+event_uniquifying.sh | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/tools/perf/tests/shell/stat+event_uniquifying.sh b/tools/perf/tests/shell/stat+event_uniquifying.sh
> index 5ec35c52b7d9..485ee6e8f574 100755
> --- a/tools/perf/tests/shell/stat+event_uniquifying.sh
> +++ b/tools/perf/tests/shell/stat+event_uniquifying.sh
> @@ -49,6 +49,11 @@ test_event_uniquifying() {
> uniquified_event_array+=("${uniquified_event}")
> done < <(${perf_tool} list -v ${event} | grep "\[Kernel PMU event\]")
>
> + if [ -z "$uniquified_event" ]
> + then
> + err=2
> + return
> + fi
> perf_command="${perf_tool} stat -e $event -A -o ${stat_output} -- true"
> $perf_command
>
> --
> 2.49.0
>
Powered by blists - more mailing lists