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 f63356151ad41f1a20e9e6a13da6f9fdcb06ce28..901b85ea6a590c1c0e042fd784ea60f75d676a6f 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);
 }