2022-09-14 22:54:50 -03:00
|
|
|
#!/usr/bin/env python3
|
2022-01-09 22:49:20 -04:00
|
|
|
|
|
|
|
"""
|
|
|
|
Contains functions used to test the ArduPilot build_options.py structures
|
|
|
|
|
2022-12-17 03:58:11 -04:00
|
|
|
To extract feature sizes:
|
|
|
|
|
|
|
|
cat >> /tmp/extra-hwdef.dat <<EOF
|
|
|
|
undef AP_BARO_MS56XX_ENABLED
|
|
|
|
define AP_BARO_MS56XX_ENABLED 1
|
|
|
|
EOF
|
|
|
|
|
|
|
|
nice time ./Tools/autotest/test_build_options.py --board=CubeOrange --extra-hwdef=/tmp/extra-hwdef.dat --no-run-with-defaults --no-disable-all --no-enable-in-turn | tee /tmp/tbo-out # noqa
|
|
|
|
grep 'sabling.*saves' /tmp/tbo-out
|
|
|
|
|
|
|
|
- note that a lot of the time explicitly disabling features will make the binary larger as the ROMFS includes the generated hwdef.h which will have the extra define in it # noqa
|
|
|
|
|
2022-01-09 22:49:20 -04:00
|
|
|
AP_FLAKE8_CLEAN
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import print_function
|
|
|
|
|
2022-05-12 00:59:59 -03:00
|
|
|
import fnmatch
|
|
|
|
import optparse
|
2022-01-09 22:49:20 -04:00
|
|
|
import os
|
2023-04-07 23:48:40 -03:00
|
|
|
import sys
|
2022-01-09 22:49:20 -04:00
|
|
|
|
|
|
|
from pysim import util
|
|
|
|
|
2023-04-07 23:48:40 -03:00
|
|
|
sys.path.insert(1, os.path.join(os.path.dirname(__file__), '..', 'scripts'))
|
|
|
|
import extract_features # noqa
|
|
|
|
|
2022-01-09 22:49:20 -04:00
|
|
|
|
2022-12-17 03:58:11 -04:00
|
|
|
class TestBuildOptionsResult(object):
|
|
|
|
'''object to return results from a comparison'''
|
|
|
|
|
|
|
|
def __init__(self, feature, vehicle, bytes_delta):
|
|
|
|
self.feature = feature
|
|
|
|
self.vehicle = vehicle
|
|
|
|
self.bytes_delta = bytes_delta
|
|
|
|
|
|
|
|
|
2022-03-04 02:33:10 -04:00
|
|
|
class TestBuildOptions(object):
|
2022-05-12 00:59:59 -03:00
|
|
|
def __init__(self,
|
|
|
|
match_glob=None,
|
|
|
|
do_step_disable_all=True,
|
|
|
|
do_step_disable_none=False,
|
2022-06-14 03:51:21 -03:00
|
|
|
do_step_disable_defaults=True,
|
|
|
|
do_step_disable_in_turn=True,
|
2022-09-14 22:54:50 -03:00
|
|
|
do_step_enable_in_turn=True,
|
2022-07-19 09:33:01 -03:00
|
|
|
build_targets=None,
|
2024-02-10 17:59:03 -04:00
|
|
|
board="CubeOrange", # DevEBoxH7v2 also works
|
2022-07-14 23:38:25 -03:00
|
|
|
extra_hwdef=None):
|
|
|
|
self.extra_hwdef = extra_hwdef
|
2022-03-04 08:06:54 -04:00
|
|
|
self.sizes_nothing_disabled = None
|
2022-05-12 00:59:59 -03:00
|
|
|
self.match_glob = match_glob
|
|
|
|
self.do_step_disable_all = do_step_disable_all
|
|
|
|
self.do_step_disable_none = do_step_disable_none
|
2022-06-14 03:51:21 -03:00
|
|
|
self.do_step_run_with_defaults = do_step_disable_defaults
|
|
|
|
self.do_step_disable_in_turn = do_step_disable_in_turn
|
2022-09-14 22:54:50 -03:00
|
|
|
self.do_step_enable_in_turn = do_step_enable_in_turn
|
2022-05-12 00:59:59 -03:00
|
|
|
self.build_targets = build_targets
|
|
|
|
if self.build_targets is None:
|
|
|
|
self.build_targets = self.all_targets()
|
2022-07-19 09:33:01 -03:00
|
|
|
self._board = board
|
2022-12-17 03:58:11 -04:00
|
|
|
self.results = {}
|
2022-05-12 00:59:59 -03:00
|
|
|
|
2022-12-29 04:44:49 -04:00
|
|
|
def must_have_defines_for_board(self, board):
|
|
|
|
'''return a set of defines which must always be enabled'''
|
|
|
|
must_have_defines = {
|
2023-01-27 00:51:50 -04:00
|
|
|
"CubeOrange": frozenset([
|
|
|
|
'AP_BARO_MS56XX_ENABLED',
|
|
|
|
'AP_COMPASS_LSM303D_ENABLED',
|
2023-02-01 08:53:43 -04:00
|
|
|
'AP_COMPASS_AK8963_ENABLED',
|
2023-02-19 21:05:04 -04:00
|
|
|
'AP_COMPASS_AK09916_ENABLED',
|
|
|
|
'AP_COMPASS_ICM20948_ENABLED',
|
2023-06-13 18:27:51 -03:00
|
|
|
]),
|
|
|
|
"CubeBlack": frozenset([
|
|
|
|
'AP_BARO_MS56XX_ENABLED',
|
|
|
|
'AP_COMPASS_LSM303D_ENABLED',
|
|
|
|
'AP_COMPASS_AK8963_ENABLED',
|
|
|
|
'AP_COMPASS_AK09916_ENABLED',
|
|
|
|
'AP_COMPASS_ICM20948_ENABLED',
|
|
|
|
]),
|
2022-12-29 04:44:49 -04:00
|
|
|
}
|
|
|
|
return must_have_defines.get(board, frozenset([]))
|
|
|
|
|
2022-05-12 00:59:59 -03:00
|
|
|
@staticmethod
|
|
|
|
def all_targets():
|
|
|
|
return ['copter', 'plane', 'rover', 'antennatracker', 'sub', 'blimp']
|
|
|
|
|
|
|
|
def progress(self, message):
|
|
|
|
print("###### %s" % message)
|
2022-03-04 08:06:54 -04:00
|
|
|
|
2022-03-04 02:33:10 -04:00
|
|
|
# swiped from app.py:
|
|
|
|
def get_build_options_from_ardupilot_tree(self):
|
|
|
|
'''return a list of build options'''
|
|
|
|
import importlib.util
|
|
|
|
spec = importlib.util.spec_from_file_location(
|
|
|
|
"build_options.py",
|
|
|
|
os.path.join(os.path.dirname(os.path.realpath(__file__)),
|
|
|
|
'..', 'scripts', 'build_options.py'))
|
|
|
|
mod = importlib.util.module_from_spec(spec)
|
|
|
|
spec.loader.exec_module(mod)
|
|
|
|
return mod.BUILD_OPTIONS
|
|
|
|
|
|
|
|
def write_defines_to_file(self, defines, filepath):
|
2022-04-14 20:49:56 -03:00
|
|
|
lines = []
|
|
|
|
lines.extend(["undef %s\n" % (a, ) for (a, b) in defines.items()])
|
|
|
|
lines.extend(["define %s %s\n" % (a, b) for (a, b) in defines.items()])
|
|
|
|
content = "".join(lines)
|
2022-03-04 02:33:10 -04:00
|
|
|
with open(filepath, "w") as f:
|
|
|
|
f.write(content)
|
|
|
|
|
2022-09-14 22:54:50 -03:00
|
|
|
def get_disable_defines(self, feature, options):
|
2022-03-04 02:33:10 -04:00
|
|
|
'''returns a hash of (name, value) defines to turn feature off -
|
|
|
|
recursively gets dependencies'''
|
|
|
|
ret = {
|
|
|
|
feature.define: 0,
|
|
|
|
}
|
2022-09-01 23:04:27 -03:00
|
|
|
added_one = True
|
|
|
|
while added_one:
|
|
|
|
added_one = False
|
|
|
|
for option in options:
|
|
|
|
if option.define in ret:
|
|
|
|
continue
|
|
|
|
if option.dependency is None:
|
|
|
|
continue
|
|
|
|
for dep in option.dependency.split(','):
|
|
|
|
f = self.get_option_by_label(dep, options)
|
|
|
|
if f.define not in ret:
|
|
|
|
continue
|
|
|
|
|
|
|
|
print("%s requires %s" % (option.define, f.define))
|
|
|
|
added_one = True
|
|
|
|
ret[option.define] = 0
|
|
|
|
break
|
2022-01-09 22:49:20 -04:00
|
|
|
return ret
|
2022-03-04 02:33:10 -04:00
|
|
|
|
2022-09-14 22:54:50 -03:00
|
|
|
def update_get_enable_defines_for_feature(self, ret, feature, options):
|
|
|
|
'''recursive function to turn on required feature and what it depends
|
|
|
|
on'''
|
|
|
|
ret[feature.define] = 1
|
|
|
|
if feature.dependency is None:
|
|
|
|
return
|
|
|
|
for depname in feature.dependency.split(','):
|
|
|
|
dep = None
|
|
|
|
for f in options:
|
|
|
|
if f.label == depname:
|
|
|
|
dep = f
|
|
|
|
if dep is None:
|
|
|
|
raise ValueError("Invalid dep (%s) for feature (%s)" %
|
|
|
|
(depname, feature.label))
|
|
|
|
self.update_get_enable_defines_for_feature(ret, dep, options)
|
|
|
|
|
|
|
|
def get_enable_defines(self, feature, options):
|
|
|
|
'''returns a hash of (name, value) defines to turn all features *but* feature (and whatever it depends on) on'''
|
|
|
|
ret = self.get_disable_all_defines()
|
|
|
|
self.update_get_enable_defines_for_feature(ret, feature, options)
|
2022-12-29 04:44:49 -04:00
|
|
|
for define in self.must_have_defines_for_board(self._board):
|
|
|
|
ret[define] = 1
|
2022-09-14 22:54:50 -03:00
|
|
|
return ret
|
|
|
|
|
|
|
|
def test_disable_feature(self, feature, options):
|
|
|
|
defines = self.get_disable_defines(feature, options)
|
2022-08-27 19:46:13 -03:00
|
|
|
|
|
|
|
if len(defines.keys()) > 1:
|
2022-09-01 23:04:27 -03:00
|
|
|
self.progress("Disabling %s disables (%s)" % (
|
2022-08-27 19:46:13 -03:00
|
|
|
feature.define,
|
|
|
|
",".join(defines.keys())))
|
|
|
|
|
2022-03-04 02:33:10 -04:00
|
|
|
self.test_compile_with_defines(defines)
|
|
|
|
|
2023-04-07 23:48:40 -03:00
|
|
|
# if the feature is truly disabled then extract_features.py
|
|
|
|
# should say so:
|
|
|
|
for target in self.build_targets:
|
|
|
|
path = self.target_to_elf_path(target)
|
|
|
|
extracter = extract_features.ExtractFeatures(path)
|
|
|
|
(compiled_in_feature_defines, not_compiled_in_feature_defines) = extracter.extract()
|
|
|
|
for define in defines:
|
|
|
|
# the following defines are known not to work on some
|
|
|
|
# or all vehicles:
|
|
|
|
feature_define_whitelist = set([
|
|
|
|
'AP_RANGEFINDER_ENABLED', # only at vehicle level ATM
|
|
|
|
'BEACON_ENABLED', # Rover doesn't obey this (should also be AP_BEACON_ENABLED)
|
|
|
|
'WINCH_ENABLED', # Copter doesn't use this; should use AP_WINCH_ENABLED
|
|
|
|
])
|
|
|
|
if define in compiled_in_feature_defines:
|
|
|
|
error = f"feature gated by {define} still compiled into ({target}); extract_features.py bug?"
|
|
|
|
if define in feature_define_whitelist:
|
|
|
|
print("warn: " + error)
|
|
|
|
else:
|
|
|
|
raise ValueError(error)
|
|
|
|
|
2022-09-14 22:54:50 -03:00
|
|
|
def test_enable_feature(self, feature, options):
|
|
|
|
defines = self.get_enable_defines(feature, options)
|
|
|
|
|
|
|
|
enabled = list(filter(lambda x : bool(defines[x]), defines.keys()))
|
|
|
|
|
|
|
|
if len(enabled) > 1:
|
|
|
|
self.progress("Enabling %s enables (%s)" % (
|
|
|
|
feature.define,
|
|
|
|
",".join(enabled)))
|
|
|
|
|
|
|
|
self.test_compile_with_defines(defines)
|
|
|
|
|
2022-03-04 08:06:54 -04:00
|
|
|
def board(self):
|
|
|
|
'''returns board to build for'''
|
2022-07-19 09:33:01 -03:00
|
|
|
return self._board
|
2022-03-04 08:06:54 -04:00
|
|
|
|
2022-03-04 02:33:10 -04:00
|
|
|
def test_compile_with_defines(self, defines):
|
|
|
|
extra_hwdef_filepath = "/tmp/extra.hwdef"
|
|
|
|
self.write_defines_to_file(defines, extra_hwdef_filepath)
|
2022-07-14 23:38:25 -03:00
|
|
|
if self.extra_hwdef is not None:
|
|
|
|
content = open(self.extra_hwdef, "r").read()
|
|
|
|
with open(extra_hwdef_filepath, "a") as f:
|
|
|
|
f.write(content)
|
2022-03-04 02:33:10 -04:00
|
|
|
util.waf_configure(
|
2022-03-04 08:06:54 -04:00
|
|
|
self.board(),
|
2022-03-04 02:33:10 -04:00
|
|
|
extra_hwdef=extra_hwdef_filepath,
|
|
|
|
)
|
2022-05-12 00:59:59 -03:00
|
|
|
for t in self.build_targets:
|
2022-03-04 02:33:10 -04:00
|
|
|
try:
|
2022-03-04 08:06:54 -04:00
|
|
|
util.run_cmd([util.relwaf(), t])
|
2022-03-04 02:33:10 -04:00
|
|
|
except Exception:
|
2022-03-04 08:06:54 -04:00
|
|
|
print("Failed to build (%s) with things disabled" %
|
2022-03-04 02:33:10 -04:00
|
|
|
(t,))
|
|
|
|
raise
|
|
|
|
|
2023-04-07 23:48:40 -03:00
|
|
|
def target_to_path(self, target, extension=None):
|
|
|
|
'''given a build target (e.g. copter), return expected path to .bin
|
|
|
|
file for that target'''
|
2022-03-04 08:06:54 -04:00
|
|
|
target_to_binpath = {
|
|
|
|
"copter": "arducopter",
|
2022-03-12 08:21:55 -04:00
|
|
|
"plane": "arduplane",
|
|
|
|
"rover": "ardurover",
|
|
|
|
"antennatracker": "antennatracker",
|
|
|
|
"sub": "ardusub",
|
|
|
|
"blimp": "blimp",
|
2022-03-04 08:06:54 -04:00
|
|
|
}
|
2023-04-07 23:48:40 -03:00
|
|
|
filename = target_to_binpath[target]
|
|
|
|
if extension is not None:
|
|
|
|
filename += "." + extension
|
|
|
|
return os.path.join("build", self.board(), "bin", filename)
|
|
|
|
|
|
|
|
def target_to_bin_path(self, target):
|
|
|
|
'''given a build target (e.g. copter), return expected path to .bin
|
|
|
|
file for that target'''
|
|
|
|
return self.target_to_path(target, 'bin')
|
|
|
|
|
|
|
|
def target_to_elf_path(self, target):
|
|
|
|
'''given a build target (e.g. copter), return expected path to .elf
|
|
|
|
file for that target'''
|
|
|
|
return self.target_to_path(target)
|
|
|
|
|
|
|
|
def find_build_sizes(self):
|
|
|
|
'''returns a hash with size of all build targets'''
|
|
|
|
ret = {}
|
2022-05-12 00:59:59 -03:00
|
|
|
for target in self.build_targets:
|
2023-04-07 23:48:40 -03:00
|
|
|
path = self.target_to_bin_path(target)
|
2022-03-04 08:06:54 -04:00
|
|
|
ret[target] = os.path.getsize(path)
|
|
|
|
return ret
|
|
|
|
|
2022-12-17 03:58:11 -04:00
|
|
|
def csv_for_results(self, results):
|
|
|
|
'''return a string with csv for results'''
|
|
|
|
features = sorted(results.keys())
|
|
|
|
all_vehicles = set()
|
|
|
|
for feature in features:
|
|
|
|
all_vehicles.update(list(results[feature].keys()))
|
|
|
|
sorted_all_vehicles = sorted(list(all_vehicles))
|
|
|
|
ret = ""
|
|
|
|
ret += ",".join(["Feature"] + sorted_all_vehicles) + "\n"
|
|
|
|
for feature in features:
|
|
|
|
line = [feature]
|
|
|
|
feature_results = results[feature]
|
|
|
|
for vehicle in sorted_all_vehicles:
|
|
|
|
bytes_delta = ""
|
|
|
|
if vehicle in feature_results:
|
|
|
|
result = feature_results[vehicle]
|
|
|
|
bytes_delta = result.bytes_delta
|
|
|
|
line.append(str(bytes_delta))
|
|
|
|
ret += ",".join(line) + "\n"
|
|
|
|
return ret
|
|
|
|
|
2022-03-04 08:06:54 -04:00
|
|
|
def disable_in_turn_check_sizes(self, feature, sizes_nothing_disabled):
|
2022-05-12 00:59:59 -03:00
|
|
|
if not self.do_step_disable_none:
|
|
|
|
self.progress("disable-none skipped, size comparison not available")
|
|
|
|
return
|
2022-03-04 08:06:54 -04:00
|
|
|
current_sizes = self.find_build_sizes()
|
|
|
|
for (build, new_size) in current_sizes.items():
|
|
|
|
old_size = sizes_nothing_disabled[build]
|
2022-05-12 00:59:59 -03:00
|
|
|
self.progress("Disabling %s(%s) on %s saves %u bytes" %
|
|
|
|
(feature.label, feature.define, build, old_size - new_size))
|
2022-12-17 03:58:11 -04:00
|
|
|
if feature.define not in self.results:
|
|
|
|
self.results[feature.define] = {}
|
|
|
|
self.results[feature.define][build] = TestBuildOptionsResult(feature.define, build, old_size - new_size)
|
|
|
|
with open("/tmp/some.csv", "w") as f:
|
|
|
|
f.write(self.csv_for_results(self.results))
|
2022-03-04 08:06:54 -04:00
|
|
|
|
2022-03-04 02:33:10 -04:00
|
|
|
def run_disable_in_turn(self):
|
|
|
|
options = self.get_build_options_from_ardupilot_tree()
|
|
|
|
count = 1
|
2022-12-17 03:58:11 -04:00
|
|
|
for feature in sorted(options, key=lambda x : x.define):
|
2023-04-26 18:51:01 -03:00
|
|
|
if self.match_glob is not None:
|
|
|
|
if not fnmatch.fnmatch(feature.define, self.match_glob):
|
|
|
|
continue
|
2023-04-07 23:48:40 -03:00
|
|
|
with open("/tmp/run-disable-in-turn-progress", "w") as f:
|
2023-05-03 17:58:11 -03:00
|
|
|
f.write(f"{count}/{len(options)} {feature.define}\n")
|
2023-04-07 23:48:40 -03:00
|
|
|
# if feature.define < "WINCH_ENABLED":
|
|
|
|
# count += 1
|
|
|
|
# continue
|
2022-12-29 04:44:49 -04:00
|
|
|
if feature.define in self.must_have_defines_for_board(self._board):
|
|
|
|
self.progress("Feature %s(%s) (%u/%u) is a MUST-HAVE" %
|
|
|
|
(feature.label, feature.define, count, len(options)))
|
2023-04-07 23:48:40 -03:00
|
|
|
count += 1
|
2022-12-29 04:44:49 -04:00
|
|
|
continue
|
2022-05-12 00:59:59 -03:00
|
|
|
self.progress("Disabling feature %s(%s) (%u/%u)" %
|
|
|
|
(feature.label, feature.define, count, len(options)))
|
2022-09-14 22:54:50 -03:00
|
|
|
self.test_disable_feature(feature, options)
|
2022-03-04 02:33:10 -04:00
|
|
|
count += 1
|
2022-03-04 08:06:54 -04:00
|
|
|
self.disable_in_turn_check_sizes(feature, self.sizes_nothing_disabled)
|
2022-03-04 02:33:10 -04:00
|
|
|
|
2022-09-14 22:54:50 -03:00
|
|
|
def run_enable_in_turn(self):
|
|
|
|
options = self.get_build_options_from_ardupilot_tree()
|
|
|
|
count = 1
|
|
|
|
for feature in options:
|
2023-04-14 23:16:14 -03:00
|
|
|
if self.match_glob is not None:
|
|
|
|
if not fnmatch.fnmatch(feature.define, self.match_glob):
|
|
|
|
continue
|
2022-09-14 22:54:50 -03:00
|
|
|
self.progress("Enabling feature %s(%s) (%u/%u)" %
|
|
|
|
(feature.label, feature.define, count, len(options)))
|
2023-05-03 17:58:11 -03:00
|
|
|
with open("/tmp/run-enable-in-turn-progress", "w") as f:
|
|
|
|
f.write(f"{count}/{len(options)} {feature.define}\n")
|
2022-12-28 23:20:37 -04:00
|
|
|
self.test_enable_feature(feature, options)
|
2022-09-14 22:54:50 -03:00
|
|
|
count += 1
|
|
|
|
|
2022-09-01 23:04:27 -03:00
|
|
|
def get_option_by_label(self, label, options):
|
|
|
|
for x in options:
|
|
|
|
if x.label == label:
|
|
|
|
return x
|
2022-09-15 06:35:39 -03:00
|
|
|
raise ValueError("No such option (%s)" % label)
|
2022-09-01 23:04:27 -03:00
|
|
|
|
2022-09-14 22:54:50 -03:00
|
|
|
def get_disable_all_defines(self):
|
|
|
|
'''returns a hash of defines which turns all features off'''
|
2022-03-04 02:33:10 -04:00
|
|
|
options = self.get_build_options_from_ardupilot_tree()
|
|
|
|
defines = {}
|
|
|
|
for feature in options:
|
2022-05-12 00:59:59 -03:00
|
|
|
if self.match_glob is not None:
|
|
|
|
if not fnmatch.fnmatch(feature.define, self.match_glob):
|
|
|
|
continue
|
2022-03-04 02:33:10 -04:00
|
|
|
defines[feature.define] = 0
|
2022-12-29 04:44:49 -04:00
|
|
|
for define in self.must_have_defines_for_board(self._board):
|
|
|
|
defines[define] = 1
|
|
|
|
|
2022-09-14 22:54:50 -03:00
|
|
|
return defines
|
|
|
|
|
|
|
|
def run_disable_all(self):
|
|
|
|
defines = self.get_disable_all_defines()
|
2022-03-04 02:33:10 -04:00
|
|
|
self.test_compile_with_defines(defines)
|
|
|
|
|
2022-03-04 08:06:54 -04:00
|
|
|
def run_disable_none(self):
|
|
|
|
self.test_compile_with_defines({})
|
|
|
|
self.sizes_nothing_disabled = self.find_build_sizes()
|
|
|
|
|
2022-06-14 03:51:21 -03:00
|
|
|
def run_with_defaults(self):
|
|
|
|
options = self.get_build_options_from_ardupilot_tree()
|
|
|
|
defines = {}
|
|
|
|
for feature in options:
|
|
|
|
defines[feature.define] = feature.default
|
|
|
|
self.test_compile_with_defines(defines)
|
|
|
|
|
2022-08-27 19:46:13 -03:00
|
|
|
def check_deps_consistency(self):
|
|
|
|
# self.progress("Checking deps consistency")
|
|
|
|
options = self.get_build_options_from_ardupilot_tree()
|
|
|
|
for feature in options:
|
2022-09-14 22:54:50 -03:00
|
|
|
self.get_disable_defines(feature, options)
|
2022-08-27 19:46:13 -03:00
|
|
|
|
2023-02-10 10:28:48 -04:00
|
|
|
def check_duplicate_labels(self):
|
|
|
|
'''check that we do not have multiple features with same labels'''
|
|
|
|
options = self.get_build_options_from_ardupilot_tree()
|
|
|
|
seen_labels = {}
|
|
|
|
for feature in options:
|
|
|
|
if seen_labels.get(feature.label, None) is not None:
|
|
|
|
raise ValueError("Duplicate entries found for label '%s'" % feature.label)
|
|
|
|
seen_labels[feature.label] = True
|
|
|
|
|
2022-03-04 02:33:10 -04:00
|
|
|
def run(self):
|
2022-08-27 19:46:13 -03:00
|
|
|
self.check_deps_consistency()
|
2023-02-10 10:28:48 -04:00
|
|
|
self.check_duplicate_labels()
|
2022-06-14 03:51:21 -03:00
|
|
|
if self.do_step_run_with_defaults:
|
|
|
|
self.progress("Running run-with-defaults step")
|
|
|
|
self.run_with_defaults()
|
2022-05-12 00:59:59 -03:00
|
|
|
if self.do_step_disable_all:
|
|
|
|
self.progress("Running disable-all step")
|
|
|
|
self.run_disable_all()
|
|
|
|
if self.do_step_disable_none:
|
|
|
|
self.progress("Running disable-none step")
|
|
|
|
self.run_disable_none()
|
2022-06-14 03:51:21 -03:00
|
|
|
if self.do_step_disable_in_turn:
|
|
|
|
self.progress("Running disable-in-turn step")
|
|
|
|
self.run_disable_in_turn()
|
2022-09-14 22:54:50 -03:00
|
|
|
if self.do_step_enable_in_turn:
|
|
|
|
self.progress("Running enable-in-turn step")
|
|
|
|
self.run_enable_in_turn()
|
2022-01-13 21:18:45 -04:00
|
|
|
|
|
|
|
|
2022-01-09 22:49:20 -04:00
|
|
|
if __name__ == '__main__':
|
2022-05-12 00:59:59 -03:00
|
|
|
|
|
|
|
parser = optparse.OptionParser()
|
|
|
|
parser.add_option("--define-match-glob",
|
|
|
|
type='string',
|
|
|
|
default=None,
|
|
|
|
help='feature define must match this glob to be tested')
|
2022-06-14 03:51:21 -03:00
|
|
|
parser.add_option("--no-run-with-defaults",
|
|
|
|
action='store_true',
|
|
|
|
help='Do not run the run-with-defaults step')
|
2022-05-12 00:59:59 -03:00
|
|
|
parser.add_option("--no-disable-all",
|
|
|
|
action='store_true',
|
|
|
|
help='Do not run the disable-all step')
|
|
|
|
parser.add_option("--no-disable-none",
|
|
|
|
action='store_true',
|
|
|
|
help='Do not run the disable-none step')
|
2022-06-14 03:51:21 -03:00
|
|
|
parser.add_option("--no-disable-in-turn",
|
|
|
|
action='store_true',
|
|
|
|
help='Do not run the disable-in-turn step')
|
2022-09-14 22:54:50 -03:00
|
|
|
parser.add_option("--no-enable-in-turn",
|
|
|
|
action='store_true',
|
|
|
|
help='Do not run the enable-in-turn step')
|
2022-05-12 00:59:59 -03:00
|
|
|
parser.add_option("--build-targets",
|
|
|
|
type='choice',
|
|
|
|
choices=TestBuildOptions.all_targets(),
|
|
|
|
action='append',
|
|
|
|
help='vehicle targets to build')
|
2022-07-14 23:38:25 -03:00
|
|
|
parser.add_option("--extra-hwdef",
|
|
|
|
type='string',
|
|
|
|
default=None,
|
|
|
|
help="file containing extra hwdef information")
|
2022-07-19 09:33:01 -03:00
|
|
|
parser.add_option("--board",
|
|
|
|
type='string',
|
|
|
|
default="DevEBoxH7v2",
|
|
|
|
help='board to build for')
|
2022-05-12 00:59:59 -03:00
|
|
|
|
|
|
|
opts, args = parser.parse_args()
|
|
|
|
|
|
|
|
tbo = TestBuildOptions(
|
|
|
|
match_glob=opts.define_match_glob,
|
|
|
|
do_step_disable_all=not opts.no_disable_all,
|
|
|
|
do_step_disable_none=not opts.no_disable_none,
|
2022-06-14 03:51:21 -03:00
|
|
|
do_step_disable_defaults=not opts.no_run_with_defaults,
|
|
|
|
do_step_disable_in_turn=not opts.no_disable_in_turn,
|
2022-09-14 22:54:50 -03:00
|
|
|
do_step_enable_in_turn=not opts.no_enable_in_turn,
|
2022-05-12 00:59:59 -03:00
|
|
|
build_targets=opts.build_targets,
|
2022-07-19 09:33:01 -03:00
|
|
|
board=opts.board,
|
2022-07-14 23:38:25 -03:00
|
|
|
extra_hwdef=opts.extra_hwdef,
|
2022-05-12 00:59:59 -03:00
|
|
|
)
|
2022-03-04 02:33:10 -04:00
|
|
|
tbo.run()
|