Explorar o código

selftests: breakpoint_test: Add missing line breaks

Add missing line breaks between the last two tests.

Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Shuah Khan %!s(int64=8) %!d(string=hai) anos
pai
achega
bc3e2ad395
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      tools/testing/selftests/breakpoints/breakpoint_test.c

+ 2 - 2
tools/testing/selftests/breakpoints/breakpoint_test.c

@@ -367,11 +367,11 @@ static void launch_tests(void)
 
 
 	/* Icebp traps */
 	/* Icebp traps */
 	ptrace(PTRACE_CONT, child_pid, NULL, 0);
 	ptrace(PTRACE_CONT, child_pid, NULL, 0);
-	check_success("Test icebp");
+	check_success("Test icebp\n");
 
 
 	/* Int 3 traps */
 	/* Int 3 traps */
 	ptrace(PTRACE_CONT, child_pid, NULL, 0);
 	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);
 	ptrace(PTRACE_CONT, child_pid, NULL, 0);
 }
 }