diff options
author | Simon Glass <sjg@chromium.org> | 2025-05-10 13:05:17 +0200 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2025-05-27 10:07:43 +0100 |
commit | a593f84d5165c539bc84435ab9a18c64a5f7212b (patch) | |
tree | 62bc85cad2a535c3bac3cefbe293d2e9b8f4b1f5 /tools/patman/__main__.py | |
parent | cc6ce7157a51f5e7b64cd4a4c6380d3fd43aebeb (diff) |
patman: Add tests for Cseries
Add various tests for the Cseries functionality, including both direct
and via-cmdline variants.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/__main__.py')
-rwxr-xr-x | tools/patman/__main__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/patman/__main__.py b/tools/patman/__main__.py index 4e20761ae3a..edfb1b5927c 100755 --- a/tools/patman/__main__.py +++ b/tools/patman/__main__.py @@ -39,14 +39,14 @@ def run_patman(): # pylint: disable=C0415 from patman import func_test from patman import test_checkpatch + from patman import test_cseries to_run = args.testname if args.testname not in [None, 'test'] else None result = test_util.run_test_suites( 'patman', False, args.verbose, args.no_capture, args.test_preserve_dirs, None, to_run, None, - [test_checkpatch.TestPatch, func_test.TestFunctional, - 'settings']) - + [test_checkpatch.TestPatch, func_test.TestFunctional, 'settings', + test_cseries.TestCseries]) sys.exit(0 if result.wasSuccessful() else 1) # Process commits, produce patches files, check them, email them |