3 # Copyright (c) 2012 The Chromium OS Authors.
5 # SPDX-License-Identifier: GPL-2.0+
8 """See README for more information"""
10 import multiprocessing
16 # Bring in the patman libraries
17 our_path = os.path.dirname(os.path.realpath(__file__))
18 sys.path.append(os.path.join(our_path, '../patman'))
38 result = unittest.TestResult()
39 for module in ['toolchain', 'gitutil']:
40 suite = doctest.DocTestSuite(module)
43 sys.argv = [sys.argv[0]]
44 for module in (test.TestBuild, func_test.TestFunctional):
45 suite = unittest.TestLoader().loadTestsFromTestCase(module)
49 for test, err in result.errors:
51 for test, err in result.failures:
55 options, args = cmdline.ParseArgs()
57 # Run our meagre tests
61 # Build selected commits for selected boards
63 bsettings.Setup(options.config_file)
64 ret_code = control.DoBuildman(options, args)