~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/kunit/run_checks.py

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/testing/kunit/run_checks.py (Architecture mips) and /tools/testing/kunit/run_checks.py (Architecture m68k)


  1 #!/usr/bin/env python3                              1 #!/usr/bin/env python3
  2 # SPDX-License-Identifier: GPL-2.0                  2 # SPDX-License-Identifier: GPL-2.0
  3 #                                                   3 #
  4 # This file runs some basic checks to verify k      4 # This file runs some basic checks to verify kunit works.
  5 # It is only of interest if you're making chan      5 # It is only of interest if you're making changes to KUnit itself.
  6 #                                                   6 #
  7 # Copyright (C) 2021, Google LLC.                   7 # Copyright (C) 2021, Google LLC.
  8 # Author: Daniel Latypov <dlatypov@google.com.c      8 # Author: Daniel Latypov <dlatypov@google.com.com>
  9                                                     9 
 10 from concurrent import futures                     10 from concurrent import futures
 11 import datetime                                    11 import datetime
 12 import os                                          12 import os
 13 import shutil                                      13 import shutil
 14 import subprocess                                  14 import subprocess
 15 import sys                                         15 import sys
 16 import textwrap                                    16 import textwrap
 17 from typing import Dict, List, Sequence            17 from typing import Dict, List, Sequence
 18                                                    18 
 19 ABS_TOOL_PATH = os.path.abspath(os.path.dirnam     19 ABS_TOOL_PATH = os.path.abspath(os.path.dirname(__file__))
 20 TIMEOUT = datetime.timedelta(minutes=5).total_     20 TIMEOUT = datetime.timedelta(minutes=5).total_seconds()
 21                                                    21 
 22 commands: Dict[str, Sequence[str]] = {             22 commands: Dict[str, Sequence[str]] = {
 23         'kunit_tool_test.py': ['./kunit_tool_t     23         'kunit_tool_test.py': ['./kunit_tool_test.py'],
 24         'kunit smoke test': ['./kunit.py', 'ru     24         'kunit smoke test': ['./kunit.py', 'run', '--kunitconfig=lib/kunit', '--build_dir=kunit_run_checks'],
 25         'pytype': ['/bin/sh', '-c', 'pytype *.     25         'pytype': ['/bin/sh', '-c', 'pytype *.py'],
 26         'mypy': ['mypy', '--config-file', 'myp     26         'mypy': ['mypy', '--config-file', 'mypy.ini', '--exclude', '_test.py$', '--exclude', 'qemu_configs/', '.'],
 27 }                                                  27 }
 28                                                    28 
 29 # The user might not have mypy or pytype insta     29 # The user might not have mypy or pytype installed, skip them if so.
 30 # Note: you can install both via `$ pip instal     30 # Note: you can install both via `$ pip install mypy pytype`
 31 necessary_deps : Dict[str, str] = {                31 necessary_deps : Dict[str, str] = {
 32         'pytype': 'pytype',                        32         'pytype': 'pytype',
 33         'mypy': 'mypy',                            33         'mypy': 'mypy',
 34 }                                                  34 }
 35                                                    35 
 36 def main(argv: Sequence[str]) -> None:             36 def main(argv: Sequence[str]) -> None:
 37         if argv:                                   37         if argv:
 38                 raise RuntimeError('This scrip     38                 raise RuntimeError('This script takes no arguments')
 39                                                    39 
 40         future_to_name: Dict[futures.Future[No     40         future_to_name: Dict[futures.Future[None], str] = {}
 41         executor = futures.ThreadPoolExecutor(     41         executor = futures.ThreadPoolExecutor(max_workers=len(commands))
 42         for name, argv in commands.items():        42         for name, argv in commands.items():
 43                 if name in necessary_deps and      43                 if name in necessary_deps and shutil.which(necessary_deps[name]) is None:
 44                         print(f'{name}: SKIPPE     44                         print(f'{name}: SKIPPED, {necessary_deps[name]} not in $PATH')
 45                         continue                   45                         continue
 46                 f = executor.submit(run_cmd, a     46                 f = executor.submit(run_cmd, argv)
 47                 future_to_name[f] = name           47                 future_to_name[f] = name
 48                                                    48 
 49         has_failures = False                       49         has_failures = False
 50         print(f'Waiting on {len(future_to_name     50         print(f'Waiting on {len(future_to_name)} checks ({", ".join(future_to_name.values())})...')
 51         for f in  futures.as_completed(future_     51         for f in  futures.as_completed(future_to_name.keys()):
 52                 name = future_to_name[f]           52                 name = future_to_name[f]
 53                 ex = f.exception()                 53                 ex = f.exception()
 54                 if not ex:                         54                 if not ex:
 55                         print(f'{name}: PASSED     55                         print(f'{name}: PASSED')
 56                         continue                   56                         continue
 57                                                    57 
 58                 has_failures = True                58                 has_failures = True
 59                 if isinstance(ex, subprocess.T     59                 if isinstance(ex, subprocess.TimeoutExpired):
 60                         print(f'{name}: TIMED      60                         print(f'{name}: TIMED OUT')
 61                 elif isinstance(ex, subprocess     61                 elif isinstance(ex, subprocess.CalledProcessError):
 62                         print(f'{name}: FAILED     62                         print(f'{name}: FAILED')
 63                 else:                              63                 else:
 64                         print(f'{name}: unexpe     64                         print(f'{name}: unexpected exception: {ex}')
 65                         continue                   65                         continue
 66                                                    66 
 67                 output = ex.output                 67                 output = ex.output
 68                 if output:                         68                 if output:
 69                         print(textwrap.indent(     69                         print(textwrap.indent(output.decode(), '> '))
 70         executor.shutdown()                        70         executor.shutdown()
 71                                                    71 
 72         if has_failures:                           72         if has_failures:
 73                 sys.exit(1)                        73                 sys.exit(1)
 74                                                    74 
 75                                                    75 
 76 def run_cmd(argv: Sequence[str]) -> None:          76 def run_cmd(argv: Sequence[str]) -> None:
 77         subprocess.check_output(argv, stderr=s     77         subprocess.check_output(argv, stderr=subprocess.STDOUT, cwd=ABS_TOOL_PATH, timeout=TIMEOUT)
 78                                                    78 
 79                                                    79 
 80 if __name__ == '__main__':                         80 if __name__ == '__main__':
 81         main(sys.argv[1:])                         81         main(sys.argv[1:])
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php