diff options
author | Simon Glass | 2022-01-22 05:07:28 -0700 |
---|---|---|
committer | Tom Rini | 2022-02-08 23:07:59 -0500 |
commit | 1d0f30e936d2fabbbaa34c3904369252d54a56cc (patch) | |
tree | e8436bb0186b0acff50dc4d77879509e65dbc950 /tools/dtoc | |
parent | ce3e75dc5977e6500669fd9418405ddd4207a164 (diff) |
patman: Update test_util to run doc tests
At present this function does not run the doctests. Allow the caller to
pass these modules in as strings.
Update patman to use this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/dtoc')
-rwxr-xr-x | tools/dtoc/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dtoc/main.py b/tools/dtoc/main.py index 6f9b526bd74..276cfadf5a3 100755 --- a/tools/dtoc/main.py +++ b/tools/dtoc/main.py @@ -58,7 +58,7 @@ def run_tests(processes, args): test_util.RunTestSuites( result, debug=True, verbosity=1, test_preserve_dirs=False, processes=processes, test_name=test_name, toolpath=[], - test_class_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) |