diff options
author | Simon Glass | 2022-07-30 20:57:07 -0600 |
---|---|---|
committer | Simon Glass | 2022-08-09 11:55:41 -0600 |
commit | ad744222f59e765ef9d6ee7efa2ee670a4ebd06d (patch) | |
tree | da4c7bbcfc868abe6a856a90652fc19ec64d14fd /tools | |
parent | b26dd9648c48d41c1486a623012363167c7a5fc7 (diff) |
dtoc: Fix fdt test coverage
Fix a bug that the --processes option was ignored, thus resulting in no
test coverage information being generated.
Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: 42ae363ddd9 ("dtoc: Update fdt tests to use test_util")
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/dtoc/test_fdt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dtoc/test_fdt.py b/tools/dtoc/test_fdt.py index b48819831d6..afa0bb58850 100755 --- a/tools/dtoc/test_fdt.py +++ b/tools/dtoc/test_fdt.py @@ -793,7 +793,7 @@ def run_tests(args, processes): """ test_name = args[0] if args else None result = test_util.run_test_suites( - 'test_fdt', False, False, False, None, test_name, None, + 'test_fdt', False, False, False, processes, test_name, None, [TestFdt, TestNode, TestProp, TestFdtUtil]) return (0 if result.wasSuccessful() else 1) |