blob: 67c560c48d37be0ed74e1f4515c7df58f062725c [file] [log] [blame]
Simon Glassc78ed662019-10-31 07:42:53 -06001#!/usr/bin/env python3
Tom Rini10e47792018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glassc05694f2013-04-03 11:07:16 +00003#
4# Copyright (c) 2012 The Chromium OS Authors.
5#
Simon Glassc05694f2013-04-03 11:07:16 +00006
7"""See README for more information"""
8
Simon Glassf0d9c102020-04-17 18:09:02 -06009import doctest
Simon Glassc05694f2013-04-03 11:07:16 +000010import multiprocessing
Simon Glassc05694f2013-04-03 11:07:16 +000011import os
12import re
13import sys
Simon Glassc05694f2013-04-03 11:07:16 +000014
15# Bring in the patman libraries
16our_path = os.path.dirname(os.path.realpath(__file__))
Simon Glassf0d9c102020-04-17 18:09:02 -060017sys.path.insert(1, os.path.join(our_path, '..'))
Simon Glassc05694f2013-04-03 11:07:16 +000018
19# Our modules
Simon Glassf0d9c102020-04-17 18:09:02 -060020from buildman import board
21from buildman import bsettings
22from buildman import builder
23from buildman import cmdline
24from buildman import control
25from buildman import toolchain
Simon Glassa997ea52020-04-17 18:09:04 -060026from patman import patchstream
27from patman import gitutil
28from patman import terminal
Simon Glass6f484e42022-01-22 05:07:30 -070029from patman import test_util
Simon Glassc05694f2013-04-03 11:07:16 +000030
Simon Glass6f484e42022-01-22 05:07:30 -070031def RunTests(skip_net_tests, verboose, args):
Simon Glasse36fe012022-02-11 13:23:19 -070032 from buildman import func_test
33 from buildman import test
Simon Glasscc246fb2013-09-23 17:35:17 -060034 import doctest
35
Simon Glass6f484e42022-01-22 05:07:30 -070036 test_name = args and args[0] or None
Simon Glass2bfc6972017-11-12 21:52:14 -070037 if skip_net_tests:
38 test.use_network = False
Simon Glassc05694f2013-04-03 11:07:16 +000039
Simon Glass6f484e42022-01-22 05:07:30 -070040 # Run the entry tests first ,since these need to be the first to import the
41 # 'entry' module.
Alper Nebi Yasakca1c5882022-04-02 20:06:06 +030042 result = test_util.run_test_suites(
43 'buildman', False, verboose, False, None, test_name, [],
Simon Glass6f484e42022-01-22 05:07:30 -070044 [test.TestBuild, func_test.TestFunctional,
45 'buildman.toolchain', 'patman.gitutil'])
Simon Glassc05694f2013-04-03 11:07:16 +000046
Alper Nebi Yasakca1c5882022-04-02 20:06:06 +030047 return (0 if result.wasSuccessful() else 1)
Simon Glassc05694f2013-04-03 11:07:16 +000048
Simon Glass04bac6b2014-09-05 19:00:10 -060049options, args = cmdline.ParseArgs()
Simon Glassc05694f2013-04-03 11:07:16 +000050
Simon Glass838ddf32022-01-22 05:07:29 -070051if not options.debug:
52 sys.tracebacklimit = 0
53
Simon Glassc05694f2013-04-03 11:07:16 +000054# Run our meagre tests
55if options.test:
Simon Glass6f484e42022-01-22 05:07:30 -070056 RunTests(options.skip_net_tests, options.verbose, args)
Simon Glassc05694f2013-04-03 11:07:16 +000057
58# Build selected commits for selected boards
59else:
Simon Glassc88c8952014-09-05 19:00:14 -060060 bsettings.Setup(options.config_file)
Simon Glassc2f91072014-08-28 09:43:39 -060061 ret_code = control.DoBuildman(options, args)
62 sys.exit(ret_code)