Browse Source

autotest: try to fix build of binaries

mission-4.1.18
Andrew Tridgell 9 years ago
parent
commit
168f4e52cf
  1. 3
      Tools/autotest/autotest.py

3
Tools/autotest/autotest.py

@ -207,7 +207,8 @@ def binary_path(step, debug=False):
elif step.find("QuadPlane") != -1: elif step.find("QuadPlane") != -1:
binary_name = "arduplane" binary_name = "arduplane"
else: else:
raise(ValueError("Unable to determine binary name for step %s" % (step,))) # cope with builds that don't have a specific binary
return None
if debug: if debug:
binary_basedir = "sitl-debug" binary_basedir = "sitl-debug"

Loading…
Cancel
Save