diff options
author | Kousik Sanagavarapu <five231003@gmail.com> | 2024-01-29 17:28:07 +0100 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2024-02-20 22:47:37 +0100 |
commit | 1901ae3cc9f8cbe78c3cdeec18cd54246ff11ca8 (patch) | |
tree | 2b88f3374e7405cbeaf26dcb33580237c07f7ac8 /tools/testing/selftests/ftrace | |
parent | selftests: fuxex: Report a unique test name per run of futex_requeue_pi (diff) | |
download | linux-1901ae3cc9f8cbe78c3cdeec18cd54246ff11ca8.tar.xz linux-1901ae3cc9f8cbe78c3cdeec18cd54246ff11ca8.zip |
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 <five231003@gmail.com>
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/ftrace')
-rwxr-xr-x | tools/testing/selftests/ftrace/ftracetest | 2 |
1 files changed, 1 insertions, 1 deletions
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` |