mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
buildman: Fix verboose typo and add comment
Fix the typo in the RunTests() function, adding comments while we are here. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
8c1fbd1f60
commit
2ef22f8e68
1 changed files with 9 additions and 2 deletions
|
@ -28,7 +28,14 @@ from patman import gitutil
|
|||
from u_boot_pylib import terminal
|
||||
from u_boot_pylib import test_util
|
||||
|
||||
def RunTests(skip_net_tests, verboose, args):
|
||||
def RunTests(skip_net_tests, verbose, args):
|
||||
"""Run the buildman tests
|
||||
|
||||
Args:
|
||||
skip_net_tests (bool): True to skip tests which need the network
|
||||
verbosity (int): Verbosity level to use (0-4)
|
||||
args (list of str): List of tests to run, empty to run all
|
||||
"""
|
||||
from buildman import func_test
|
||||
from buildman import test
|
||||
import doctest
|
||||
|
@ -40,7 +47,7 @@ def RunTests(skip_net_tests, verboose, args):
|
|||
# Run the entry tests first ,since these need to be the first to import the
|
||||
# 'entry' module.
|
||||
result = test_util.run_test_suites(
|
||||
'buildman', False, verboose, False, None, test_name, [],
|
||||
'buildman', False, verbose, False, None, test_name, [],
|
||||
[test.TestBuild, func_test.TestFunctional,
|
||||
'buildman.toolchain', 'patman.gitutil'])
|
||||
|
||||
|
|
Loading…
Reference in a new issue