summaryrefslogtreecommitdiff
path: root/tools/patman/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/patman/__main__.py')
-rwxr-xr-xtools/patman/__main__.py6
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