diff options
author | Simon Glass <sjg@chromium.org> | 2025-02-09 14:26:00 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-02-17 11:17:55 -0600 |
commit | 5c33fb028865bdc490aa0db2980987149786b00f (patch) | |
tree | 875d297c912f835aa95e56d9911e97e3166543e6 /tools/buildman/main.py | |
parent | 064556910e61044f1295162ceaad600582b66cda (diff) |
u_boot_pylib: Move gitutil into the library
Move this file into U-Boot's Python library, so that it is no-longer
part of patman.
This makes a start on:
https://source.denx.de/u-boot/custodians/u-boot-dm/-/issues/35
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/main.py')
-rwxr-xr-x | tools/buildman/main.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/buildman/main.py b/tools/buildman/main.py index a948f36d9c0..72571b226d9 100755 --- a/tools/buildman/main.py +++ b/tools/buildman/main.py @@ -50,8 +50,7 @@ def run_tests(skip_net_tests, debug, verbose, args): # 'entry' module. result = test_util.run_test_suites( 'buildman', debug, verbose, False, args.threads, test_name, [], - [test.TestBuild, func_test.TestFunctional, - 'buildman.toolchain', 'patman.gitutil']) + [test.TestBuild, func_test.TestFunctional, 'buildman.toolchain']) return (0 if result.wasSuccessful() else 1) |