Skip to content

Commit 5b06eea

Browse files
mhiramatshuahkh
authored andcommitted
selftests: breakpoints: Fix a typo of function name
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]>
1 parent 303e621 commit 5b06eea

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
@@ -109,7 +109,7 @@ static bool set_watchpoint(pid_t pid, int size, int wp)
109109
return false;
110110
}
111111

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)
113113
{
114114
int status;
115115
siginfo_t siginfo;

0 commit comments

Comments
 (0)