diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-29 14:14:14 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-02-09 12:30:12 -0700 |
commit | 5e2ab40172b42ae9ce6d58b95f238013184fa865 (patch) | |
tree | 9638f6c5be573a0c9af22bd4a971a36f892bbc9c /tools/buildman/main.py | |
parent | ce31277160de2b8500f6a0e6fd284ef137e26628 (diff) |
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>
Diffstat (limited to 'tools/buildman/main.py')
-rwxr-xr-x | tools/buildman/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/buildman/main.py b/tools/buildman/main.py index c6af311a69..01271061e6 100755 --- a/tools/buildman/main.py +++ b/tools/buildman/main.py @@ -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 # 'entry' module. - test_util.RunTestSuites( + test_util.run_test_suites( result, False, verboose, False, None, test_name, [], [test.TestBuild, func_test.TestFunctional, '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() |