Browse Source

Plane: add test for loading/restoring large missions

c415-sdk
Peter Barker 5 years ago committed by Peter Barker
parent
commit
899b98b2f9
  1. 1059
      Tools/autotest/ArduPlane_Tests/LargeMissions/Kingaroy-vlarge.txt
  2. 1059
      Tools/autotest/ArduPlane_Tests/LargeMissions/Kingaroy-vlarge2.txt
  3. 8
      Tools/autotest/arduplane.py

1059
Tools/autotest/ArduPlane_Tests/LargeMissions/Kingaroy-vlarge.txt

File diff suppressed because it is too large Load Diff

1059
Tools/autotest/ArduPlane_Tests/LargeMissions/Kingaroy-vlarge2.txt

File diff suppressed because it is too large Load Diff

8
Tools/autotest/arduplane.py

@ -1638,6 +1638,10 @@ class AutoTestPlane(AutoTest): @@ -1638,6 +1638,10 @@ class AutoTestPlane(AutoTest):
'''In lockup Plane should copy RC inputs to RC outputs'''
self.plane_CPUFailsafe()
def test_large_missions(self):
self.load_mission("Kingaroy-vlarge.txt")
self.load_mission("Kingaroy-vlarge2.txt")
def tests(self):
'''return list of all tests'''
ret = super(AutoTestPlane, self).tests()
@ -1739,6 +1743,10 @@ class AutoTestPlane(AutoTest): @@ -1739,6 +1743,10 @@ class AutoTestPlane(AutoTest):
"Test DeepStall Landing",
self.fly_deepstall),
("LargeMissions",
"Test Manipulation of Large missions",
self.test_large_missions),
("LogDownLoad",
"Log download",
lambda: self.log_download(

Loading…
Cancel
Save