selftests: breakpoint_test: Add missing line breaks
authorShuah Khan <shuahkh@osg.samsung.com>
Mon, 24 Jul 2017 16:20:07 +0000 (10:20 -0600)
committerShuah Khan <shuahkh@osg.samsung.com>
Wed, 26 Jul 2017 16:32:31 +0000 (10:32 -0600)
Add missing line breaks between the last two tests.

Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
tools/testing/selftests/breakpoints/breakpoint_test.c

index f633561..901b85e 100644 (file)
@@ -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);
 }