Skip to content

Commit 0468915

Browse files
committed
Merge tag 'linux-kselftest-kunit-5.7-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest
Pull Kunit fix from Shuah Khan: "A single fix to flush the test summary to the console log without delay" * tag 'linux-kselftest-kunit-5.7-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest: kunit: Add missing newline in summary message
2 parents 75ec0ba + 6cb1818 commit 0468915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/kunit/test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static void kunit_print_ok_not_ok(void *test_or_suite,
9393
* representation.
9494
*/
9595
if (suite)
96-
pr_info("%s %zd - %s",
96+
pr_info("%s %zd - %s\n",
9797
kunit_status_to_string(is_ok),
9898
test_number, description);
9999
else

0 commit comments

Comments
 (0)