summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2022-02-10 15:39:59 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2022-02-10 15:39:59 -0800
commitff00854812b216e06e92191f036eb0bd1596b2d4 (patch)
tree72b5a1f3080b1d00be964df87a3149f6f749a434 /tools
parente3c85076d7a6f986445b9008be7e7f83d1b0780a (diff)
parent92a68053c3468705e2c7c752c9a3f256304a35a6 (diff)
Merge tag 'linux-kselftest-kunit-fixes-5.17-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest
Pull KUnit fixes from Shuah Khan: "Fixes to the test and usage documentation" * tag 'linux-kselftest-kunit-fixes-5.17-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest: Documentation: KUnit: Fix usage bug kunit: fix missing f in f-string in run_checks.py
Diffstat (limited to 'tools')
-rwxr-xr-xtools/testing/kunit/run_checks.py2
1 files changed, 1 insertions, 1 deletions
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