diff mbox series

[GIT,PULL] KUnit fixes update for Linux 5.17-rc4

Message ID 3a0311b2-33af-d13e-e92b-111bfb357a19@linuxfoundation.org (mailing list archive)
State Accepted
Commit ff00854812b216e06e92191f036eb0bd1596b2d4
Delegated to: Brendan Higgins
Headers show
Series [GIT,PULL] KUnit fixes update for Linux 5.17-rc4 | expand

Pull-request

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

Commit Message

Shuah Khan Feb. 10, 2022, 8:02 p.m. UTC
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(-)

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

Comments

pr-tracker-bot@kernel.org Feb. 11, 2022, 12:07 a.m. UTC | #1
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!
diff mbox series

Patch

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