Skip to content

Commit ef1ac90

Browse files
mhiramatpvts-mat
authored andcommitted
selftests: breakpoints: Fix a typo of function name
commit-author Masami Hiramatsu <[email protected]> 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 <[email protected]> Signed-off-by: Masami Hiramatsu <[email protected]> Cc: Kees Cook <[email protected]> Reviewed-by: Kees Cook <[email protected]> Signed-off-by: Shuah Khan <[email protected]> (cherry picked from commit 5b06eea) Signed-off-by: Marcin Wcisło <[email protected]>
1 parent d10f485 commit ef1ac90

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)