blob: 92d2431aea7c2a9cfc8cacfdf51ff42befd13475 [file] [log] [blame]
Simon Glass38856012019-10-31 07:43:05 -06001#!/usr/bin/env python3
Tom Rini83d290c2018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glassbf7fd502016-11-25 20:15:51 -07003
4# Copyright (c) 2016 Google, Inc
5# Written by Simon Glass <sjg@chromium.org>
6#
Simon Glassbf7fd502016-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 Glass86679ce2019-07-08 13:18:36 -060013import site
Simon Glassbf7fd502016-11-25 20:15:51 -070014import sys
15import traceback
Simon Glassbf7fd502016-11-25 20:15:51 -070016
Andy Shevchenko022f6b02021-12-06 14:44:12 +030017# Get the absolute path to this file at run-time
18our_path = os.path.dirname(os.path.realpath(__file__))
19our1_path = os.path.dirname(our_path)
20our2_path = os.path.dirname(our1_path)
21
Andy Shevchenko33f27f42021-12-06 14:44:13 +030022# Extract $(srctree) from Kbuild environment, or use relative paths below
23srctree = os.environ.get('srctree', our2_path)
24
Andy Shevchenko022f6b02021-12-06 14:44:12 +030025#
26# Do not pollute source tree with cache files:
27# https://stackoverflow.com/a/60024195/2511795
28# https://bugs.python.org/issue33499
29#
Andy Shevchenko33f27f42021-12-06 14:44:13 +030030sys.pycache_prefix = os.path.relpath(our_path, srctree)
Andy Shevchenko022f6b02021-12-06 14:44:12 +030031
Simon Glass53cd5d92019-07-08 14:25:29 -060032# Bring in the patman and dtoc libraries (but don't override the first path
33# in PYTHONPATH)
Andy Shevchenko33f27f42021-12-06 14:44:13 +030034sys.path.insert(2, our1_path)
Simon Glassb4fa9492020-04-17 18:09:05 -060035
Simon Glassbc570642022-01-09 20:14:11 -070036from binman import bintool
Simon Glass4583c002023-02-23 18:18:04 -070037from u_boot_pylib import test_util
Simon Glassbf7fd502016-11-25 20:15:51 -070038
Simon Glassb4360202017-05-27 07:38:22 -060039# Bring in the libfdt module
Simon Glass53cd5d92019-07-08 14:25:29 -060040sys.path.insert(2, 'scripts/dtc/pylibfdt')
Andy Shevchenko33f27f42021-12-06 14:44:13 +030041sys.path.insert(2, os.path.join(srctree, 'scripts/dtc/pylibfdt'))
Philippe Reynes7aa288e2022-01-27 15:03:13 +010042sys.path.insert(2, os.path.join(srctree, 'build-sandbox/scripts/dtc/pylibfdt'))
Andy Shevchenko33f27f42021-12-06 14:44:13 +030043sys.path.insert(2, os.path.join(srctree, 'build-sandbox_spl/scripts/dtc/pylibfdt'))
Simon Glassb4360202017-05-27 07:38:22 -060044
Simon Glass16287932020-04-17 18:09:03 -060045from binman import cmdline
46from binman import control
Simon Glass4583c002023-02-23 18:18:04 -070047from u_boot_pylib import test_util
Simon Glassbf7fd502016-11-25 20:15:51 -070048
Simon Glass8acce602019-07-08 13:18:50 -060049def RunTests(debug, verbosity, processes, test_preserve_dirs, args, toolpath):
Simon Glass084059a2018-06-01 09:38:18 -060050 """Run the functional tests and any embedded doctests
51
52 Args:
53 debug: True to enable debugging, which shows a full stack trace on error
Simon Glassee0c9a72019-07-08 13:18:48 -060054 verbosity: Verbosity level to use
Simon Glassd5164a72019-07-08 13:18:49 -060055 test_preserve_dirs: True to preserve the input directory used by tests
56 so that it can be examined afterwards (only useful for debugging
57 tests). If a single test is selected (in args[0]) it also preserves
58 the output directory for this test. Both directories are displayed
59 on the command line.
60 processes: Number of processes to use to run tests (None=same as #CPUs)
Simon Glass084059a2018-06-01 09:38:18 -060061 args: List of positional args provided to binman. This can hold a test
Simon Glass53cd5d92019-07-08 14:25:29 -060062 name to execute (as in 'binman test testSections', for example)
Simon Glass8acce602019-07-08 13:18:50 -060063 toolpath: List of paths to use for tools
Simon Glass084059a2018-06-01 09:38:18 -060064 """
Simon Glass56ee85e2022-01-09 20:13:57 -070065 from binman import bintool_test
Simon Glass16287932020-04-17 18:09:03 -060066 from binman import cbfs_util_test
67 from binman import elf_test
68 from binman import entry_test
69 from binman import fdt_test
Simon Glassed16b122021-11-23 21:08:58 -070070 from binman import fip_util_test
Simon Glass16287932020-04-17 18:09:03 -060071 from binman import ftest
72 from binman import image_test
Simon Glassbf7fd502016-11-25 20:15:51 -070073 import doctest
74
Simon Glassce0dc2e2020-04-17 18:09:01 -060075 test_name = args and args[0] or None
Simon Glass934cdcf2017-11-12 21:52:21 -070076
77 # Run the entry tests first ,since these need to be the first to import the
78 # 'entry' module.
Alper Nebi Yasakd8318fe2022-04-02 20:06:06 +030079 result = test_util.run_test_suites(
80 'binman', debug, verbosity, test_preserve_dirs, processes, test_name,
Simon Glassce0dc2e2020-04-17 18:09:01 -060081 toolpath,
Simon Glass56ee85e2022-01-09 20:13:57 -070082 [bintool_test.TestBintool, entry_test.TestEntry, ftest.TestFunctional,
83 fdt_test.TestFdt, elf_test.TestElf, image_test.TestImage,
84 cbfs_util_test.TestCbfs, fip_util_test.TestFip])
Simon Glassbf7fd502016-11-25 20:15:51 -070085
Alper Nebi Yasakd8318fe2022-04-02 20:06:06 +030086 return (0 if result.wasSuccessful() else 1)
Simon Glassbf7fd502016-11-25 20:15:51 -070087
Simon Glass952a61a2023-02-23 18:18:18 -070088def RunTestCoverage(toolpath, build_dir):
Simon Glassbf7fd502016-11-25 20:15:51 -070089 """Run the tests and check that we get 100% coverage"""
Simon Glass87d43322020-08-05 13:27:46 -060090 glob_list = control.GetEntryModules(False)
Tom Rini16d836c2018-07-06 10:27:14 -060091 all_set = set([os.path.splitext(os.path.basename(item))[0]
92 for item in glob_list if '_testing' not in item])
Simon Glass32eb66d2020-07-09 18:39:29 -060093 extra_args = ''
94 if toolpath:
95 for path in toolpath:
96 extra_args += ' --toolpath %s' % path
Simon Glass5e2ab402022-01-29 14:14:14 -070097 test_util.run_test_coverage('tools/binman/binman', None,
Simon Glass4583c002023-02-23 18:18:04 -070098 ['*test*', '*main.py', 'tools/patman/*', 'tools/dtoc/*',
99 'tools/u_boot_pylib/*'],
Simon Glass952a61a2023-02-23 18:18:18 -0700100 build_dir, all_set, extra_args or None)
Simon Glassbf7fd502016-11-25 20:15:51 -0700101
Simon Glass53cd5d92019-07-08 14:25:29 -0600102def RunBinman(args):
Simon Glassbf7fd502016-11-25 20:15:51 -0700103 """Main entry point to binman once arguments are parsed
104
105 Args:
Simon Glass53cd5d92019-07-08 14:25:29 -0600106 args: Command line arguments Namespace object
Simon Glassbf7fd502016-11-25 20:15:51 -0700107 """
108 ret_code = 0
109
Simon Glass53cd5d92019-07-08 14:25:29 -0600110 if not args.debug:
Simon Glassbf7fd502016-11-25 20:15:51 -0700111 sys.tracebacklimit = 0
112
Simon Glassb5287c42020-07-09 18:39:30 -0600113 # Provide a default toolpath in the hope of finding a mkimage built from
114 # current source
115 if not args.toolpath:
116 args.toolpath = ['./tools', 'build-sandbox/tools']
117
Simon Glass53cd5d92019-07-08 14:25:29 -0600118 if args.cmd == 'test':
119 if args.test_coverage:
Simon Glass952a61a2023-02-23 18:18:18 -0700120 RunTestCoverage(args.toolpath, args.build_dir)
Simon Glass53cd5d92019-07-08 14:25:29 -0600121 else:
122 ret_code = RunTests(args.debug, args.verbosity, args.processes,
123 args.test_preserve_dirs, args.tests,
124 args.toolpath)
Simon Glassbf7fd502016-11-25 20:15:51 -0700125
Simon Glassbc570642022-01-09 20:14:11 -0700126 elif args.cmd == 'bintool-docs':
127 control.write_bintool_docs(bintool.Bintool.get_tool_list())
128
Simon Glass53cd5d92019-07-08 14:25:29 -0600129 elif args.cmd == 'entry-docs':
Simon Glass87d43322020-08-05 13:27:46 -0600130 control.WriteEntryDocs(control.GetEntryModules())
Simon Glassbf7fd502016-11-25 20:15:51 -0700131
132 else:
133 try:
Simon Glass53cd5d92019-07-08 14:25:29 -0600134 ret_code = control.Binman(args)
Simon Glassbf7fd502016-11-25 20:15:51 -0700135 except Exception as e:
Simon Glass6c8e0bf2020-07-09 18:39:26 -0600136 print('binman: %s' % e, file=sys.stderr)
Simon Glass53cd5d92019-07-08 14:25:29 -0600137 if args.debug:
Simon Glass2ca84682019-05-14 15:53:37 -0600138 print()
Simon Glassbf7fd502016-11-25 20:15:51 -0700139 traceback.print_exc()
140 ret_code = 1
141 return ret_code
142
143
Simon Glass952a61a2023-02-23 18:18:18 -0700144def start_binman():
Simon Glass53cd5d92019-07-08 14:25:29 -0600145 args = cmdline.ParseArgs(sys.argv[1:])
146
147 ret_code = RunBinman(args)
Simon Glassbf7fd502016-11-25 20:15:51 -0700148 sys.exit(ret_code)
Simon Glass952a61a2023-02-23 18:18:18 -0700149
150
151if __name__ == "__main__":
152 start_binman()