selftests: breakpoints: Fix a typo of function name
authorMasami Hiramatsu <mhiramat@kernel.org>
Thu, 31 Oct 2019 12:23:00 +0000 (21:23 +0900)
committerShuah Khan <skhan@linuxfoundation.org>
Thu, 7 Nov 2019 21:27:26 +0000 (14:27 -0700)
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>
tools/testing/selftests/breakpoints/breakpoint_test_arm64.c

index 58ed5eeab7094489dd3df9a8b7c5c159ad825b0d..ad41ea69001bce596d9fb537a5f98d0e19df5a2a 100644 (file)
@@ -109,7 +109,7 @@ static bool set_watchpoint(pid_t pid, int size, int wp)
        return false;
 }
 
-static bool arun_test(int wr_size, int wp_size, int wr, int wp)
+static bool run_test(int wr_size, int wp_size, int wr, int wp)
 {
        int status;
        siginfo_t siginfo;