From fda31e67d953df94c3a0e41d2dd8c3978123285e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 9 Jan 2017 21:13:17 +1100 Subject: [PATCH] autotest: fixed arducopter binary name --- Tools/autotest/autotest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/autotest/autotest.py b/Tools/autotest/autotest.py index 6fce9aaac1..c5477c4f22 100755 --- a/Tools/autotest/autotest.py +++ b/Tools/autotest/autotest.py @@ -222,7 +222,7 @@ def skip_step(step): def binary_path(step, debug=False): if step.find("ArduCopter") != -1: - binary_name = "arducopter-quad" + binary_name = "arducopter" elif step.find("ArduPlane") != -1: binary_name = "arduplane" elif step.find("APMrover2") != -1: @@ -268,7 +268,7 @@ def run_step(step): return util.build_SITL('bin/ardurover', j=opts.j, debug=opts.debug) if step == 'build.ArduCopter': - return util.build_SITL('bin/arducopter-quad', j=opts.j, debug=opts.debug) + return util.build_SITL('bin/arducopter', j=opts.j, debug=opts.debug) if step == 'build.AntennaTracker': return util.build_SITL('bin/antennatracker', j=opts.j, debug=opts.debug)