2022-11-04 02:35:00

by Yipeng Zou

[permalink] [raw]
Subject: [PATCH] selftests/ftrace: event_triggers: wait longer for test_event_enable

In some platform, the schedule event may came slowly, delay 100ms can't
cover it.

I was notice that on my board which running in low cpu_freq,and this
selftests allways gose fail.

So maybe we can check more times here to wait longer.

Fixes: 43bb45da82f9 ("selftests: ftrace: Add a selftest to test event enable/disable func trigger")
Signed-off-by: Yipeng Zou <[email protected]>
---
.../ftrace/test.d/ftrace/func_event_triggers.tc | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc b/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc
index 8d26d5505808..3eea2abf68f9 100644
--- a/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc
+++ b/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc
@@ -38,11 +38,18 @@ cnt_trace() {

test_event_enabled() {
val=$1
+ check_times=10 # wait for 10 * SLEEP_TIME at most

- e=`cat $EVENT_ENABLE`
- if [ "$e" != $val ]; then
- fail "Expected $val but found $e"
- fi
+ while [ $check_times -ne 0 ]; do
+ e=`cat $EVENT_ENABLE`
+ if [ "$e" == $val ]; then
+ return 0
+ fi
+ sleep $SLEEP_TIME
+ check_times=$((check_times - 1))
+ done
+
+ fail "Expected $val but found $e"
}

run_enable_disable() {
--
2.17.1



2022-11-05 09:28:37

by Masami Hiramatsu

[permalink] [raw]
Subject: Re: [PATCH] selftests/ftrace: event_triggers: wait longer for test_event_enable

Hi Yipeng,

On Fri, 4 Nov 2022 10:09:31 +0800
Yipeng Zou <[email protected]> wrote:

> In some platform, the schedule event may came slowly, delay 100ms can't
> cover it.
>
> I was notice that on my board which running in low cpu_freq,and this
> selftests allways gose fail.

This looks good to me, since this can just extend the waiting time to 1 sec.
(and most of the platforms have no effect)

Acked-by: Masami Hiramatsu (Google) <[email protected]>

Thank you!

>
> So maybe we can check more times here to wait longer.
>
> Fixes: 43bb45da82f9 ("selftests: ftrace: Add a selftest to test event enable/disable func trigger")
> Signed-off-by: Yipeng Zou <[email protected]>
> ---
> .../ftrace/test.d/ftrace/func_event_triggers.tc | 15 +++++++++++----
> 1 file changed, 11 insertions(+), 4 deletions(-)
>
> diff --git a/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc b/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc
> index 8d26d5505808..3eea2abf68f9 100644
> --- a/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc
> +++ b/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc
> @@ -38,11 +38,18 @@ cnt_trace() {
>
> test_event_enabled() {
> val=$1
> + check_times=10 # wait for 10 * SLEEP_TIME at most
>
> - e=`cat $EVENT_ENABLE`
> - if [ "$e" != $val ]; then
> - fail "Expected $val but found $e"
> - fi
> + while [ $check_times -ne 0 ]; do
> + e=`cat $EVENT_ENABLE`
> + if [ "$e" == $val ]; then
> + return 0
> + fi
> + sleep $SLEEP_TIME
> + check_times=$((check_times - 1))
> + done
> +
> + fail "Expected $val but found $e"
> }
>
> run_enable_disable() {
> --
> 2.17.1
>


--
Masami Hiramatsu (Google) <[email protected]>

2022-11-14 18:17:59

by Steven Rostedt

[permalink] [raw]
Subject: Re: [PATCH] selftests/ftrace: event_triggers: wait longer for test_event_enable

On Sat, 5 Nov 2022 17:52:41 +0900
Masami Hiramatsu (Google) <[email protected]> wrote:

> Hi Yipeng,
>
> On Fri, 4 Nov 2022 10:09:31 +0800
> Yipeng Zou <[email protected]> wrote:
>
> > In some platform, the schedule event may came slowly, delay 100ms can't
> > cover it.
> >
> > I was notice that on my board which running in low cpu_freq,and this
> > selftests allways gose fail.
>
> This looks good to me, since this can just extend the waiting time to 1 sec.
> (and most of the platforms have no effect)
>
> Acked-by: Masami Hiramatsu (Google) <[email protected]>
>

Acked-by: Steven Rostedt (Google) <[email protected]>

Shuah,

Care to take this through your tree?

Thanks,

-- Steve


> Thank you!
>
> >
> > So maybe we can check more times here to wait longer.
> >
> > Fixes: 43bb45da82f9 ("selftests: ftrace: Add a selftest to test event enable/disable func trigger")
> > Signed-off-by: Yipeng Zou <[email protected]>
> > ---
> > .../ftrace/test.d/ftrace/func_event_triggers.tc | 15 +++++++++++----
> > 1 file changed, 11 insertions(+), 4 deletions(-)
> >
> > diff --git a/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc b/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc
> > index 8d26d5505808..3eea2abf68f9 100644
> > --- a/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc
> > +++ b/tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc
> > @@ -38,11 +38,18 @@ cnt_trace() {
> >
> > test_event_enabled() {
> > val=$1
> > + check_times=10 # wait for 10 * SLEEP_TIME at most
> >
> > - e=`cat $EVENT_ENABLE`
> > - if [ "$e" != $val ]; then
> > - fail "Expected $val but found $e"
> > - fi
> > + while [ $check_times -ne 0 ]; do
> > + e=`cat $EVENT_ENABLE`
> > + if [ "$e" == $val ]; then
> > + return 0
> > + fi
> > + sleep $SLEEP_TIME
> > + check_times=$((check_times - 1))
> > + done
> > +
> > + fail "Expected $val but found $e"
> > }
> >
> > run_enable_disable() {
> > --
> > 2.17.1
> >
>
>


2022-11-14 18:28:50

by Shuah Khan

[permalink] [raw]
Subject: Re: [PATCH] selftests/ftrace: event_triggers: wait longer for test_event_enable

On 11/14/22 11:10, Steven Rostedt wrote:
> On Sat, 5 Nov 2022 17:52:41 +0900
> Masami Hiramatsu (Google) <[email protected]> wrote:
>
>> Hi Yipeng,
>>
>> On Fri, 4 Nov 2022 10:09:31 +0800
>> Yipeng Zou <[email protected]> wrote:
>>
>>> In some platform, the schedule event may came slowly, delay 100ms can't
>>> cover it.
>>>
>>> I was notice that on my board which running in low cpu_freq,and this
>>> selftests allways gose fail.
>>
>> This looks good to me, since this can just extend the waiting time to 1 sec.
>> (and most of the platforms have no effect)
>>
>> Acked-by: Masami Hiramatsu (Google) <[email protected]>
>>
>
> Acked-by: Steven Rostedt (Google) <[email protected]>
>
> Shuah,
>
> Care to take this through your tree?
>

Yup. I will get this in.

thanks,
-- Shuah