diff options
author | Simon Glass <sjg@chromium.org> | 2025-04-29 07:22:06 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2025-05-27 10:07:41 +0100 |
commit | a61635d2af81d00b02155eb5decc03eb92f94413 (patch) | |
tree | 8f1ff2e6a3bfcc93732153c1b660bb178814ed78 /tools/buildman/main.py | |
parent | 9dee86cf533271deddd7f8ab077d98e4a1d3cb78 (diff) |
tools: Plumb in capture control
Add control of capturing output into u_boot_pylib and the tools 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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/main.py b/tools/buildman/main.py index 72571b226d9..77b9bebed27 100755 --- a/tools/buildman/main.py +++ b/tools/buildman/main.py @@ -49,7 +49,7 @@ def run_tests(skip_net_tests, debug, verbose, 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', debug, verbose, False, args.threads, test_name, [], + 'buildman', debug, verbose, False, False, args.threads, test_name, [], [test.TestBuild, func_test.TestFunctional, 'buildman.toolchain']) return (0 if result.wasSuccessful() else 1) |