1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-26 13:01:17 +02:00

patman: Convert camel case in test_util.py

Convert this file to snake case and update all files which use it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2022-01-29 14:14:14 -07:00
parent ce31277160
commit 5e2ab40172
6 changed files with 15 additions and 15 deletions

View File

@@ -84,14 +84,14 @@ def RunTests(debug, verbosity, processes, test_preserve_dirs, args, toolpath):
# Run the entry tests first ,since these need to be the first to import the # Run the entry tests first ,since these need to be the first to import the
# 'entry' module. # 'entry' module.
test_util.RunTestSuites( test_util.run_test_suites(
result, debug, verbosity, test_preserve_dirs, processes, test_name, result, debug, verbosity, test_preserve_dirs, processes, test_name,
toolpath, toolpath,
[bintool_test.TestBintool, entry_test.TestEntry, ftest.TestFunctional, [bintool_test.TestBintool, entry_test.TestEntry, ftest.TestFunctional,
fdt_test.TestFdt, elf_test.TestElf, image_test.TestImage, fdt_test.TestFdt, elf_test.TestElf, image_test.TestImage,
cbfs_util_test.TestCbfs, fip_util_test.TestFip]) cbfs_util_test.TestCbfs, fip_util_test.TestFip])
return test_util.ReportResult('binman', test_name, result) return test_util.report_result('binman', test_name, result)
def RunTestCoverage(toolpath): def RunTestCoverage(toolpath):
"""Run the tests and check that we get 100% coverage""" """Run the tests and check that we get 100% coverage"""
@@ -102,7 +102,7 @@ def RunTestCoverage(toolpath):
if toolpath: if toolpath:
for path in toolpath: for path in toolpath:
extra_args += ' --toolpath %s' % path extra_args += ' --toolpath %s' % path
test_util.RunTestCoverage('tools/binman/binman', None, test_util.run_test_coverage('tools/binman/binman', None,
['*test*', '*main.py', 'tools/patman/*', 'tools/dtoc/*'], ['*test*', '*main.py', 'tools/patman/*', 'tools/dtoc/*'],
args.build_dir, all_set, extra_args or None) args.build_dir, all_set, extra_args or None)

View File

@@ -41,12 +41,12 @@ def RunTests(skip_net_tests, verboose, args):
# Run the entry tests first ,since these need to be the first to import the # Run the entry tests first ,since these need to be the first to import the
# 'entry' module. # 'entry' module.
test_util.RunTestSuites( test_util.run_test_suites(
result, False, verboose, False, None, test_name, [], result, False, verboose, False, None, test_name, [],
[test.TestBuild, func_test.TestFunctional, [test.TestBuild, func_test.TestFunctional,
'buildman.toolchain', 'patman.gitutil']) 'buildman.toolchain', 'patman.gitutil'])
return test_util.ReportResult('buildman', test_name, result) return test_util.report_result('buildman', test_name, result)
options, args = cmdline.ParseArgs() options, args = cmdline.ParseArgs()

View File

@@ -55,17 +55,17 @@ def run_tests(processes, args):
test_dtoc.setup() test_dtoc.setup()
test_util.RunTestSuites( test_util.run_test_suites(
result, debug=True, verbosity=1, test_preserve_dirs=False, result, debug=True, verbosity=1, test_preserve_dirs=False,
processes=processes, test_name=test_name, toolpath=[], processes=processes, test_name=test_name, toolpath=[],
class_and_module_list=[test_dtoc.TestDtoc,test_src_scan.TestSrcScan]) class_and_module_list=[test_dtoc.TestDtoc,test_src_scan.TestSrcScan])
return test_util.ReportResult('binman', test_name, result) return test_util.report_result('binman', test_name, result)
def RunTestCoverage(): def RunTestCoverage():
"""Run the tests and check that we get 100% coverage""" """Run the tests and check that we get 100% coverage"""
sys.argv = [sys.argv[0]] sys.argv = [sys.argv[0]]
test_util.RunTestCoverage('tools/dtoc/dtoc', '/main.py', test_util.run_test_coverage('tools/dtoc/dtoc', '/main.py',
['tools/patman/*.py', '*/fdt*', '*test*'], args.build_dir) ['tools/patman/*.py', '*/fdt*', '*test*'], args.build_dir)

View File

@@ -715,7 +715,7 @@ class TestFdtUtil(unittest.TestCase):
def RunTestCoverage(): def RunTestCoverage():
"""Run the tests and check that we get 100% coverage""" """Run the tests and check that we get 100% coverage"""
test_util.RunTestCoverage('tools/dtoc/test_fdt.py', None, test_util.run_test_coverage('tools/dtoc/test_fdt.py', None,
['tools/patman/*.py', '*test_fdt.py'], options.build_dir) ['tools/patman/*.py', '*test_fdt.py'], options.build_dir)

View File

@@ -135,12 +135,12 @@ if args.cmd == 'test':
from patman import func_test from patman import func_test
result = unittest.TestResult() result = unittest.TestResult()
test_util.RunTestSuites( test_util.run_test_suites(
result, False, False, False, None, None, None, result, False, False, False, None, None, None,
[test_checkpatch.TestPatch, func_test.TestFunctional, [test_checkpatch.TestPatch, func_test.TestFunctional,
'gitutil', 'settings', 'terminal']) 'gitutil', 'settings', 'terminal'])
sys.exit(test_util.ReportResult('patman', args.testname, result)) sys.exit(test_util.report_result('patman', args.testname, result))
# Process commits, produce patches files, check them, email them # Process commits, produce patches files, check them, email them
elif args.cmd == 'send': elif args.cmd == 'send':

View File

@@ -23,7 +23,7 @@ except:
use_concurrent = False use_concurrent = False
def RunTestCoverage(prog, filter_fname, exclude_list, build_dir, required=None, def run_test_coverage(prog, filter_fname, exclude_list, build_dir, required=None,
extra_args=None): extra_args=None):
"""Run tests and check that we get 100% coverage """Run tests and check that we get 100% coverage
@@ -102,7 +102,7 @@ def capture_sys_output():
sys.stdout, sys.stderr = old_out, old_err sys.stdout, sys.stderr = old_out, old_err
def ReportResult(toolname:str, test_name: str, result: unittest.TestResult): def report_result(toolname:str, test_name: str, result: unittest.TestResult):
"""Report the results from a suite of tests """Report the results from a suite of tests
Args: Args:
@@ -139,8 +139,8 @@ def ReportResult(toolname:str, test_name: str, result: unittest.TestResult):
return 0 return 0
def RunTestSuites(result, debug, verbosity, test_preserve_dirs, processes, def run_test_suites(result, debug, verbosity, test_preserve_dirs, processes,
test_name, toolpath, class_and_module_list): test_name, toolpath, class_and_module_list):
"""Run a series of test suites and collect the results """Run a series of test suites and collect the results
Args: Args: