Browse Source

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

apm_2208
Peter Barker 3 years ago committed by Peter Barker
parent
commit
a19fa24ccd
  1. 5
      Tools/autotest/test_build_options.py

5
Tools/autotest/test_build_options.py

@ -88,6 +88,11 @@ class TestBuildOptions(object): @@ -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])

Loading…
Cancel
Save