Tools: test_build_options.py: add bin mappings for all vehicles

This commit is contained in:
Peter Barker 2022-03-12 23:21:55 +11:00 committed by Peter Barker
parent 7d95b1ddd3
commit a19fa24ccd

View File

@ -88,6 +88,11 @@ class TestBuildOptions(object):
ret = {}
target_to_binpath = {
"copter": "arducopter",
"plane": "arduplane",
"rover": "ardurover",
"antennatracker": "antennatracker",
"sub": "ardusub",
"blimp": "blimp",
}
for target in self.build_targets():
path = os.path.join("build", self.board(), "bin", "%s.bin" % target_to_binpath[target])