blob: 5fb9404ef6ae0a33a9b5c6cc42e5553a742cc641 [file] [log] [blame]
Simon Glass377bca82019-10-31 07:43:05 -06001#!/usr/bin/env python3
Tom Rini10e47792018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glass2574ef62016-11-25 20:15:51 -07003
4# Copyright (c) 2016 Google, Inc
5# Written by Simon Glass <sjg@chromium.org>
6#
Simon Glass2574ef62016-11-25 20:15:51 -07007# Creates binary images from input files controlled by a description
8#
9
10"""See README for more information"""
11
12import os
Simon Glass40778d72019-07-08 13:18:36 -060013import site
Simon Glass2574ef62016-11-25 20:15:51 -070014import sys
15import traceback
16import unittest
17
Andy Shevchenko12ae3472021-12-06 14:44:12 +030018# Get the absolute path to this file at run-time
19our_path = os.path.dirname(os.path.realpath(__file__))
20our1_path = os.path.dirname(our_path)
21our2_path = os.path.dirname(our1_path)
22
Andy Shevchenko6f64b602021-12-06 14:44:13 +030023# Extract $(srctree) from Kbuild environment, or use relative paths below
24srctree = os.environ.get('srctree', our2_path)
25
Andy Shevchenko12ae3472021-12-06 14:44:12 +030026#
27# Do not pollute source tree with cache files:
28# https://stackoverflow.com/a/60024195/2511795
29# https://bugs.python.org/issue33499
30#
Andy Shevchenko6f64b602021-12-06 14:44:13 +030031sys.pycache_prefix = os.path.relpath(our_path, srctree)
Andy Shevchenko12ae3472021-12-06 14:44:12 +030032
Simon Glassf46732a2019-07-08 14:25:29 -060033# Bring in the patman and dtoc libraries (but don't override the first path
34# in PYTHONPATH)
Andy Shevchenko6f64b602021-12-06 14:44:13 +030035sys.path.insert(2, our1_path)
Simon Glass42143162020-04-17 18:09:05 -060036
Simon Glass620c4462022-01-09 20:14:11 -070037from binman import bintool
Simon Glass42143162020-04-17 18:09:05 -060038from patman import test_util
Simon Glass2574ef62016-11-25 20:15:51 -070039
Simon Glass55901ff2017-05-27 07:38:22 -060040# Bring in the libfdt module
Simon Glassf46732a2019-07-08 14:25:29 -060041sys.path.insert(2, 'scripts/dtc/pylibfdt')
Andy Shevchenko6f64b602021-12-06 14:44:13 +030042sys.path.insert(2, os.path.join(srctree, 'scripts/dtc/pylibfdt'))
Philippe Reynesbbdeb212022-01-27 15:03:13 +010043sys.path.insert(2, os.path.join(srctree, 'build-sandbox/scripts/dtc/pylibfdt'))
Andy Shevchenko6f64b602021-12-06 14:44:13 +030044sys.path.insert(2, os.path.join(srctree, 'build-sandbox_spl/scripts/dtc/pylibfdt'))
Simon Glass55901ff2017-05-27 07:38:22 -060045
Simon Glassc585dd42020-04-17 18:09:03 -060046from binman import cmdline
47from binman import control
Simon Glassa997ea52020-04-17 18:09:04 -060048from patman import test_util
Simon Glass2574ef62016-11-25 20:15:51 -070049
Simon Glasscebfab22019-07-08 13:18:50 -060050def RunTests(debug, verbosity, processes, test_preserve_dirs, args, toolpath):
Simon Glass5666f9a2018-06-01 09:38:18 -060051 """Run the functional tests and any embedded doctests
52
53 Args:
54 debug: True to enable debugging, which shows a full stack trace on error
Simon Glass8a50b4a2019-07-08 13:18:48 -060055 verbosity: Verbosity level to use
Simon Glass1c420c92019-07-08 13:18:49 -060056 test_preserve_dirs: True to preserve the input directory used by tests
57 so that it can be examined afterwards (only useful for debugging
58 tests). If a single test is selected (in args[0]) it also preserves
59 the output directory for this test. Both directories are displayed
60 on the command line.
61 processes: Number of processes to use to run tests (None=same as #CPUs)
Simon Glass5666f9a2018-06-01 09:38:18 -060062 args: List of positional args provided to binman. This can hold a test
Simon Glassf46732a2019-07-08 14:25:29 -060063 name to execute (as in 'binman test testSections', for example)
Simon Glasscebfab22019-07-08 13:18:50 -060064 toolpath: List of paths to use for tools
Simon Glass5666f9a2018-06-01 09:38:18 -060065 """
Simon Glass162017b2022-01-09 20:13:57 -070066 from binman import bintool_test
Simon Glassc585dd42020-04-17 18:09:03 -060067 from binman import cbfs_util_test
68 from binman import elf_test
69 from binman import entry_test
70 from binman import fdt_test
Simon Glass2697b7c2021-11-23 21:08:58 -070071 from binman import fip_util_test
Simon Glassc585dd42020-04-17 18:09:03 -060072 from binman import ftest
73 from binman import image_test
Simon Glass2574ef62016-11-25 20:15:51 -070074 import doctest
75
76 result = unittest.TestResult()
Simon Glass73306922020-04-17 18:09:01 -060077 test_name = args and args[0] or None
Simon Glass8f521362017-11-12 21:52:21 -070078
79 # Run the entry tests first ,since these need to be the first to import the
80 # 'entry' module.
Simon Glass1b53d902022-01-29 14:14:14 -070081 test_util.run_test_suites(
Simon Glass73306922020-04-17 18:09:01 -060082 result, debug, verbosity, test_preserve_dirs, processes, test_name,
83 toolpath,
Simon Glass162017b2022-01-09 20:13:57 -070084 [bintool_test.TestBintool, entry_test.TestEntry, ftest.TestFunctional,
85 fdt_test.TestFdt, elf_test.TestElf, image_test.TestImage,
86 cbfs_util_test.TestCbfs, fip_util_test.TestFip])
Simon Glassd1ba61c2019-05-14 15:53:38 -060087
Simon Glass1b53d902022-01-29 14:14:14 -070088 return test_util.report_result('binman', test_name, result)
Simon Glass2574ef62016-11-25 20:15:51 -070089
Simon Glass5d5930d2020-07-09 18:39:29 -060090def RunTestCoverage(toolpath):
Simon Glass2574ef62016-11-25 20:15:51 -070091 """Run the tests and check that we get 100% coverage"""
Simon Glass220ff5f2020-08-05 13:27:46 -060092 glob_list = control.GetEntryModules(False)
Tom Rinic2a849d2018-07-06 10:27:14 -060093 all_set = set([os.path.splitext(os.path.basename(item))[0]
94 for item in glob_list if '_testing' not in item])
Simon Glass5d5930d2020-07-09 18:39:29 -060095 extra_args = ''
96 if toolpath:
97 for path in toolpath:
98 extra_args += ' --toolpath %s' % path
Simon Glass1b53d902022-01-29 14:14:14 -070099 test_util.run_test_coverage('tools/binman/binman', None,
Simon Glassebbb5432020-04-17 18:08:58 -0600100 ['*test*', '*main.py', 'tools/patman/*', 'tools/dtoc/*'],
Simon Glass5d5930d2020-07-09 18:39:29 -0600101 args.build_dir, all_set, extra_args or None)
Simon Glass2574ef62016-11-25 20:15:51 -0700102
Simon Glassf46732a2019-07-08 14:25:29 -0600103def RunBinman(args):
Simon Glass2574ef62016-11-25 20:15:51 -0700104 """Main entry point to binman once arguments are parsed
105
106 Args:
Simon Glassf46732a2019-07-08 14:25:29 -0600107 args: Command line arguments Namespace object
Simon Glass2574ef62016-11-25 20:15:51 -0700108 """
109 ret_code = 0
110
Simon Glassf46732a2019-07-08 14:25:29 -0600111 if not args.debug:
Simon Glass2574ef62016-11-25 20:15:51 -0700112 sys.tracebacklimit = 0
113
Simon Glass901ec8f2020-07-09 18:39:30 -0600114 # Provide a default toolpath in the hope of finding a mkimage built from
115 # current source
116 if not args.toolpath:
117 args.toolpath = ['./tools', 'build-sandbox/tools']
118
Simon Glassf46732a2019-07-08 14:25:29 -0600119 if args.cmd == 'test':
120 if args.test_coverage:
Simon Glass5d5930d2020-07-09 18:39:29 -0600121 RunTestCoverage(args.toolpath)
Simon Glassf46732a2019-07-08 14:25:29 -0600122 else:
123 ret_code = RunTests(args.debug, args.verbosity, args.processes,
124 args.test_preserve_dirs, args.tests,
125 args.toolpath)
Simon Glass2574ef62016-11-25 20:15:51 -0700126
Simon Glass620c4462022-01-09 20:14:11 -0700127 elif args.cmd == 'bintool-docs':
128 control.write_bintool_docs(bintool.Bintool.get_tool_list())
129
Simon Glassf46732a2019-07-08 14:25:29 -0600130 elif args.cmd == 'entry-docs':
Simon Glass220ff5f2020-08-05 13:27:46 -0600131 control.WriteEntryDocs(control.GetEntryModules())
Simon Glass2574ef62016-11-25 20:15:51 -0700132
133 else:
134 try:
Simon Glassf46732a2019-07-08 14:25:29 -0600135 ret_code = control.Binman(args)
Simon Glass2574ef62016-11-25 20:15:51 -0700136 except Exception as e:
Simon Glassb5a8a942020-07-09 18:39:26 -0600137 print('binman: %s' % e, file=sys.stderr)
Simon Glassf46732a2019-07-08 14:25:29 -0600138 if args.debug:
Simon Glass7cca27d2019-05-14 15:53:37 -0600139 print()
Simon Glass2574ef62016-11-25 20:15:51 -0700140 traceback.print_exc()
141 ret_code = 1
142 return ret_code
143
144
145if __name__ == "__main__":
Simon Glassf46732a2019-07-08 14:25:29 -0600146 args = cmdline.ParseArgs(sys.argv[1:])
147
148 ret_code = RunBinman(args)
Simon Glass2574ef62016-11-25 20:15:51 -0700149 sys.exit(ret_code)