All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] KUnit fixes update for Linux 5.17-rc4
@ 2022-02-10 20:02 Shuah Khan
  2022-02-11  0:07 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Shuah Khan @ 2022-02-10 20:02 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Shuah Khan, Brendan Higgins, linux-kselftest, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1409 bytes --]

Hi Linus,

Please pull the following KUnit fixes update for Linux 5.17-rc4.

This KUnit fixes update for Linux 5.17-rc4 consists of bug fixes
to the test and usage documentation.

Note: The doc fix patch resolves a bugzilla issue.

diff is attached.

thanks,
-- Shuah

----------------------------------------------------------------
The following changes since commit 235528072f28b3b0a1446279b7eaddda36dbf743:

   kunit: tool: Import missing importlib.abc (2022-01-25 12:59:43 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 92a68053c3468705e2c7c752c9a3f256304a35a6:

   Documentation: KUnit: Fix usage bug (2022-02-08 13:16:20 -0700)

----------------------------------------------------------------
linux-kselftest-kunit-fixes-5.17-rc4

This KUnit fixes update for Linux 5.17-rc4 consists of bug fixes
to the test and usage documentation.

----------------------------------------------------------------
Akira Kawata (1):
       Documentation: KUnit: Fix usage bug

Daniel Latypov (1):
       kunit: fix missing f in f-string in run_checks.py

  Documentation/dev-tools/kunit/usage.rst | 2 +-
  tools/testing/kunit/run_checks.py       | 2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)

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

[-- Attachment #2: linux-kselftest-kunit-fixes-5.17-rc4.diff --]
[-- Type: text/x-patch, Size: 979 bytes --]

diff --git a/Documentation/dev-tools/kunit/usage.rst b/Documentation/dev-tools/kunit/usage.rst
index 76af931a332c..1c83e7d60a8a 100644
--- a/Documentation/dev-tools/kunit/usage.rst
+++ b/Documentation/dev-tools/kunit/usage.rst
@@ -242,7 +242,7 @@ example:
 
 	int rectangle_area(struct shape *this)
 	{
-		struct rectangle *self = container_of(this, struct shape, parent);
+		struct rectangle *self = container_of(this, struct rectangle, parent);
 
 		return self->length * self->width;
 	};
diff --git a/tools/testing/kunit/run_checks.py b/tools/testing/kunit/run_checks.py
index 4f32133ed77c..13d854afca9d 100755
--- a/tools/testing/kunit/run_checks.py
+++ b/tools/testing/kunit/run_checks.py
@@ -61,7 +61,7 @@ def main(argv: Sequence[str]) -> None:
 		elif isinstance(ex, subprocess.CalledProcessError):
 			print(f'{name}: FAILED')
 		else:
-			print('{name}: unexpected exception: {ex}')
+			print(f'{name}: unexpected exception: {ex}')
 			continue
 
 		output = ex.output

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] KUnit fixes update for Linux 5.17-rc4
  2022-02-10 20:02 [GIT PULL] KUnit fixes update for Linux 5.17-rc4 Shuah Khan
@ 2022-02-11  0:07 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2022-02-11  0:07 UTC (permalink / raw)
  To: Shuah Khan
  Cc: Linus Torvalds, Shuah Khan, Brendan Higgins, linux-kselftest,
	linux-kernel

The pull request you sent on Thu, 10 Feb 2022 13:02:20 -0700:

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

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

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-02-11  0:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-10 20:02 [GIT PULL] KUnit fixes update for Linux 5.17-rc4 Shuah Khan
2022-02-11  0:07 ` pr-tracker-bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.