From: Shuah Khan Date: Mon, 24 Jul 2017 16:20:07 +0000 (-0600) Subject: selftests: breakpoint_test: Add missing line breaks X-Git-Tag: v4.14-rc1~89^2~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc3e2ad395e3b41183c0bc5b4958e465f5f46017;p=platform%2Fkernel%2Flinux-rpi.git selftests: breakpoint_test: Add missing line breaks Add missing line breaks between the last two tests. Signed-off-by: Shuah Khan --- diff --git a/tools/testing/selftests/breakpoints/breakpoint_test.c b/tools/testing/selftests/breakpoints/breakpoint_test.c index f633561..901b85ea 100644 --- a/tools/testing/selftests/breakpoints/breakpoint_test.c +++ b/tools/testing/selftests/breakpoints/breakpoint_test.c @@ -367,11 +367,11 @@ static void launch_tests(void) /* Icebp traps */ ptrace(PTRACE_CONT, child_pid, NULL, 0); - check_success("Test icebp"); + check_success("Test icebp\n"); /* Int 3 traps */ ptrace(PTRACE_CONT, child_pid, NULL, 0); - check_success("Test int 3 trap"); + check_success("Test int 3 trap\n"); ptrace(PTRACE_CONT, child_pid, NULL, 0); }