Skip to content

Commit 6cb1818

Browse files
melvershuahkh
authored andcommitted
kunit: Add missing newline in summary message
Add missing newline, as otherwise flushing of the final summary message to the console log can be delayed. Fixes: e2219db ("kunit: add debugfs /sys/kernel/debug/kunit/<suite>/results display") Signed-off-by: Marco Elver <[email protected]> Tested-by: David Gow <[email protected]> Reviewed-by: Alan Maguire <[email protected]> Acked-by: Brendan Higgins <[email protected]> Signed-off-by: Shuah Khan <[email protected]>
1 parent 8f3d9f3 commit 6cb1818

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)