Skip to content

Commit

Permalink
Merge tag 'linux-kselftest-kunit-5.7-rc4' of git://git.kernel.org/pub…
Browse files Browse the repository at this point in the history
…/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
  • Loading branch information
torvalds committed Apr 30, 2020
2 parents 75ec0ba + 6cb1818 commit 0468915
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 0468915

Please sign in to comment.