Selaa lähdekoodia

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 8 vuotta sitten
vanhempi
commit
bc3e2ad395
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  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 */
 	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);
 }