Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc3e2ad3 authored by Shuah Khan's avatar Shuah Khan
Browse files

selftests: breakpoint_test: Add missing line breaks



Add missing line breaks between the last two tests.

Signed-off-by: default avatarShuah Khan <shuahkh@osg.samsung.com>
parent 5cc3027f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);
}