From 2750b361aa7b5b04bda9ed6ccba9d15d02b2b3ab Mon Sep 17 00:00:00 2001 From: Siddharth Purohit Date: Tue, 6 Jul 2021 11:21:30 +0530 Subject: [PATCH] autotest: move to using tool instead of tools program group --- Tools/autotest/arducopter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/autotest/arducopter.py b/Tools/autotest/arducopter.py index c96b1fc4d9..da48a6809d 100644 --- a/Tools/autotest/arducopter.py +++ b/Tools/autotest/arducopter.py @@ -6784,7 +6784,7 @@ class AutoTestCopter(AutoTest): def test_replay(self): '''test replay correctness''' self.progress("Building Replay") - util.build_SITL('tools/Replay', clean=False, configure=False) + util.build_SITL('tool/Replay', clean=False, configure=False) self.test_replay_bit(self.test_replay_gps_bit) self.test_replay_bit(self.test_replay_beacon_bit) @@ -6797,7 +6797,7 @@ class AutoTestCopter(AutoTest): self.progress("Running replay on (%s)" % current_log_filepath) - util.run_cmd(['build/sitl/tools/Replay', current_log_filepath], + util.run_cmd(['build/sitl/tool/Replay', current_log_filepath], directory=util.topdir(), checkfail=True, show=True) self.context_pop()