diff mbox series

[GIT,PULL] Kunit update for Linux 5.7-rc4

Message ID c5edb7c4-c5ed-0209-3c7f-cace9d775d64@linuxfoundation.org (mailing list archive)
State Mainlined
Commit 0468915bdb7cd3160c892664a53ce320e254281e
Headers show
Series [GIT,PULL] Kunit update for Linux 5.7-rc4 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux-kselftest-kunit-5.7-rc4

Commit Message

Shuah Khan April 30, 2020, 7:26 p.m. UTC
Hi Linus,

Please pull the following Kunit update for Linux 5.7-rc4.

This Kunit update for Linux 5.7-rc4 consists of a single fix to flush
the test summary to the console log without delay.

diff is attached.

thanks,
-- Shuah

----------------------------------------------------------------
The following changes since commit 8f3d9f354286745c751374f5f1fcafee6b3f3136:

   Linux 5.7-rc1 (2020-04-12 12:35:55 -0700)

are available in the Git repository at:

   git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest 
tags/linux-kselftest-kunit-5.7-rc4

for you to fetch changes up to 6cb1818798812fe7e2c8fe3f489ad1c86adfd6c4:

   kunit: Add missing newline in summary message (2020-04-23 15:42:00 -0600)

----------------------------------------------------------------
linux-kselftest-kunit-5.7-rc4

This Kunit update for Linux 5.7-rc4 consists of a single fix to flush
the test summary to the console log without delay.

----------------------------------------------------------------
Marco Elver (1):
       kunit: Add missing newline in summary message

  lib/kunit/test.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

----------------------------------------------------------------

Comments

pr-tracker-bot@kernel.org April 30, 2020, 11:50 p.m. UTC | #1
The pull request you sent on Thu, 30 Apr 2020 13:26:18 -0600:

> git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux-kselftest-kunit-5.7-rc4

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/0468915bdb7cd3160c892664a53ce320e254281e

Thank you!
diff mbox series

Patch

diff --git a/lib/kunit/test.c b/lib/kunit/test.c
index 7a6430a7fca0..ccb2ffad8dcf 100644
--- a/lib/kunit/test.c
+++ b/lib/kunit/test.c
@@ -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