Skip to content

Commit 952ee2e

Browse files
mhiramatPlaidCat
authored andcommitted
selftests: breakpoints: Fix a typo of function name
commit-author Masami Hiramatsu <mhiramat@kernel.org> commit 5b06eea Since commit 5821ba9 ("selftests: Add test plan API to kselftest.h and adjust callers") accidentally introduced 'a' typo in the front of run_test() function, breakpoint_test_arm64.c became not able to be compiled. Remove the 'a' from arun_test(). Fixes: 5821ba9 ("selftests: Add test plan API to kselftest.h and adjust callers") Reported-by: Jun Takahashi <takahashi.jun_s@aa.socionext.com> Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Cc: Kees Cook <keescook@chromium.org> Reviewed-by: Kees Cook <keescook@chromium.org> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org> (cherry picked from commit 5b06eea) Signed-off-by: Marcin Wcisło <marcin.wcislo@conclusive.pl>
1 parent 7b75781 commit 952ee2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/testing/selftests/breakpoints/breakpoint_test_arm64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ static bool set_watchpoint(pid_t pid, int size, int wp)
118118
return false;
119119
}
120120

121-
static bool arun_test(int wr_size, int wp_size, int wr, int wp)
121+
static bool run_test(int wr_size, int wp_size, int wr, int wp)
122122
{
123123
int status;
124124
siginfo_t siginfo;

0 commit comments

Comments
 (0)