From a593f84d5165c539bc84435ab9a18c64a5f7212b Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 10 May 2025 13:05:17 +0200 Subject: patman: Add tests for Cseries Add various tests for the Cseries functionality, including both direct and via-cmdline variants. Signed-off-by: Simon Glass --- tools/patman/__main__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/patman/__main__.py') 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 -- cgit v1.2.3