]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
kunit: Fix spelling mistakes in comments and messages
authorJinseok Kim <always.starving0@gmail.com>
Fri, 1 May 2026 16:27:37 +0000 (01:27 +0900)
committerShuah Khan <skhan@linuxfoundation.org>
Mon, 4 May 2026 19:12:55 +0000 (13:12 -0600)
Fix two spelling mistakes in kunit tooling:
  Bascially -> Basically
  higer     -> higher

Link: https://lore.kernel.org/r/20260501162739.3861-1-always.starving0@gmail.com
Signed-off-by: Jinseok Kim <always.starving0@gmail.com>
Reviewed-by: David Gow <david@davidgow.net>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/kunit/kunit_kernel.py
tools/testing/kunit/kunit_parser.py

index 2869fcb199ff7a6fbb8e23fc4b3c3ab2ca024598..58557c47d85f696f82e165df58fa905094e45f5c 100644 (file)
@@ -218,7 +218,7 @@ def _get_qemu_ops(config_path: str,
        # exists (I learned this through experimentation and could not find it
        # anywhere in the Python documentation).
        #
-       # Bascially, we completely ignore the actual file location of the config
+       # Basically, we completely ignore the actual file location of the config
        # we are loading and just tell Python that the module lives in the
        # QEMU_CONFIGS_DIR for import purposes regardless of where it actually
        # exists as a file.
index 1c61a0ed740d4b0a2dcde22d2bf4efc2ed530cf4..0e1d2f4985eb19b83e67a1f27539c46bb39376ef 100644 (file)
@@ -268,7 +268,7 @@ def check_version(version_num: int, accepted_versions: List[int],
        if version_num < min(accepted_versions):
                test.add_error(printer, f'{version_type} version lower than expected!')
        elif version_num > max(accepted_versions):
-               test.add_error(printer, f'{version_type} version higer than expected!')
+               test.add_error(printer, f'{version_type} version higher than expected!')
 
 def parse_ktap_header(lines: LineStream, test: Test, printer: Printer) -> bool:
        """