2024-01-29 16:33:38

by Kousik Sanagavarapu

[permalink] [raw]
Subject: [PATCH] selftest/ftrace: fix typo in ftracetest script

Fix a typo in ftracetest script which is run when running the kselftests
for ftrace.

s/faii/fail

Signed-off-by: Kousik Sanagavarapu <[email protected]>
---
tools/testing/selftests/ftrace/ftracetest | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/ftrace/ftracetest b/tools/testing/selftests/ftrace/ftracetest
index c778d4dcc17e..25d4e0fca385 100755
--- a/tools/testing/selftests/ftrace/ftracetest
+++ b/tools/testing/selftests/ftrace/ftracetest
@@ -504,7 +504,7 @@ prlog "# of undefined(test bug): " `echo $UNDEFINED_CASES | wc -w`
if [ "$KTAP" = "1" ]; then
echo -n "# Totals:"
echo -n " pass:"`echo $PASSED_CASES | wc -w`
- echo -n " faii:"`echo $FAILED_CASES | wc -w`
+ echo -n " fail:"`echo $FAILED_CASES | wc -w`
echo -n " xfail:"`echo $XFAILED_CASES | wc -w`
echo -n " xpass:0"
echo -n " skip:"`echo $UNTESTED_CASES $UNSUPPORTED_CASES | wc -w`
--
2.43.0.443.g6965527da0



2024-01-31 15:08:05

by Masami Hiramatsu

[permalink] [raw]
Subject: Re: [PATCH] selftest/ftrace: fix typo in ftracetest script

Hi,

On Mon, 29 Jan 2024 21:58:07 +0530
Kousik Sanagavarapu <[email protected]> wrote:

> Fix a typo in ftracetest script which is run when running the kselftests
> for ftrace.
>
> s/faii/fail
>

Thanks, this looks obvious typo.

> Signed-off-by: Kousik Sanagavarapu <[email protected]>

Acked-by: Masami Hiramatsu (Google) <[email protected]>
Fixes: dbcf76390eb9 ("selftests/ftrace: Improve integration with kselftest runner")


Shuah, can you pick this to your branch?

Thank you,


> ---
> tools/testing/selftests/ftrace/ftracetest | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/testing/selftests/ftrace/ftracetest b/tools/testing/selftests/ftrace/ftracetest
> index c778d4dcc17e..25d4e0fca385 100755
> --- a/tools/testing/selftests/ftrace/ftracetest
> +++ b/tools/testing/selftests/ftrace/ftracetest
> @@ -504,7 +504,7 @@ prlog "# of undefined(test bug): " `echo $UNDEFINED_CASES | wc -w`
> if [ "$KTAP" = "1" ]; then
> echo -n "# Totals:"
> echo -n " pass:"`echo $PASSED_CASES | wc -w`
> - echo -n " faii:"`echo $FAILED_CASES | wc -w`
> + echo -n " fail:"`echo $FAILED_CASES | wc -w`
> echo -n " xfail:"`echo $XFAILED_CASES | wc -w`
> echo -n " xpass:0"
> echo -n " skip:"`echo $UNTESTED_CASES $UNSUPPORTED_CASES | wc -w`
> --
> 2.43.0.443.g6965527da0
>
>


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

2024-02-20 21:42:16

by Shuah Khan

[permalink] [raw]
Subject: Re: [PATCH] selftest/ftrace: fix typo in ftracetest script

On 1/31/24 07:52, Masami Hiramatsu (Google) wrote:
> Hi,
>
> On Mon, 29 Jan 2024 21:58:07 +0530
> Kousik Sanagavarapu <[email protected]> wrote:
>
>> Fix a typo in ftracetest script which is run when running the kselftests
>> for ftrace.
>>
>> s/faii/fail
>>
>
> Thanks, this looks obvious typo.
>
>> Signed-off-by: Kousik Sanagavarapu <[email protected]>
>
> Acked-by: Masami Hiramatsu (Google) <[email protected]>
> Fixes: dbcf76390eb9 ("selftests/ftrace: Improve integration with kselftest runner")
>
>
> Shuah, can you pick this to your branch?
>

Applied to linux-kselftest next for Linux 6.9

thanks,
-- Shuah