Skip to content

Commit

Permalink
kunit: Add missing newline in summary message
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
melver authored and shuahkh committed Apr 23, 2020
1 parent 8f3d9f3 commit 6cb1818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kunit/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ static void kunit_print_ok_not_ok(void *test_or_suite,
* representation.
*/
if (suite)
pr_info("%s %zd - %s",
pr_info("%s %zd - %s\n",
kunit_status_to_string(is_ok),
test_number, description);
else
Expand Down

0 comments on commit 6cb1818

Please sign in to comment.