Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests: breakpoints: Fix a typo of function name

Since commit 5821ba969511 ("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: 5821ba969511 ("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>

authored by

Masami Hiramatsu and committed by
Shuah Khan
5b06eeae 303e6218

+1 -1
+1 -1
tools/testing/selftests/breakpoints/breakpoint_test_arm64.c
··· 109 109 return false; 110 110 } 111 111 112 - static bool arun_test(int wr_size, int wp_size, int wr, int wp) 112 + static bool run_test(int wr_size, int wp_size, int wr, int wp) 113 113 { 114 114 int status; 115 115 siginfo_t siginfo;