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/u_boot_pylib/__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/u_boot_pylib/__main__.py')
-rwxr-xr-x | tools/u_boot_pylib/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/u_boot_pylib/__main__.py b/tools/u_boot_pylib/__main__.py index c0762bca733..d86b9d7dce0 100755 --- a/tools/u_boot_pylib/__main__.py +++ b/tools/u_boot_pylib/__main__.py @@ -16,7 +16,7 @@ if __name__ == "__main__": from u_boot_pylib import test_util result = test_util.run_test_suites( - 'u_boot_pylib', False, False, False, None, None, None, + 'u_boot_pylib', False, False, False, False, None, None, None, ['terminal']) sys.exit(0 if result.wasSuccessful() else 1) |