Browse Source

autotest: disable button test

zr-v5.1
Peter Barker 4 years ago committed by Peter Barker
parent
commit
f3866e5f39
  1. 1
      Tools/autotest/arducopter.py
  2. 5
      Tools/autotest/arduplane.py
  3. 2
      Tools/autotest/common.py
  4. 1
      Tools/autotest/rover.py

1
Tools/autotest/arducopter.py

@ -5586,6 +5586,7 @@ class AutoTestCopter(AutoTest): @@ -5586,6 +5586,7 @@ class AutoTestCopter(AutoTest):
"Parachute": "See https://github.com/ArduPilot/ardupilot/issues/4702",
"HorizontalAvoidFence": "See https://github.com/ArduPilot/ardupilot/issues/11525",
"AltEstimation": "See https://github.com/ArduPilot/ardupilot/issues/15191",
"Button": "See https://github.com/ArduPilot/ardupilot/issues/15259",
}
class AutoTestHeli(AutoTestCopter):

5
Tools/autotest/arduplane.py

@ -2114,3 +2114,8 @@ class AutoTestPlane(AutoTest): @@ -2114,3 +2114,8 @@ class AutoTestPlane(AutoTest):
self.log_upload),
])
return ret
def disabled_tests(self):
return {
"Button": "See https://github.com/ArduPilot/ardupilot/issues/15259",
}

2
Tools/autotest/common.py

@ -6669,7 +6669,7 @@ switch value''' @@ -6669,7 +6669,7 @@ switch value'''
# but it *will* end up as 1<<btn immediately afterwards. Thus
# not attempting to fetch the value back here:
new_mask = 0
self.send_set_parameter("SIM_PIN_MASK", new_mask)
self.send_set_parameter("SIM_PIN_MASK", new_mask, verbose=True)
tstart = self.get_sim_time_cached()
while True:
now = self.get_sim_time_cached()

1
Tools/autotest/rover.py

@ -5455,6 +5455,7 @@ Brakes have negligible effect (with=%0.2fm without=%0.2fm delta=%0.2fm) @@ -5455,6 +5455,7 @@ Brakes have negligible effect (with=%0.2fm without=%0.2fm delta=%0.2fm)
def disabled_tests(self):
return {
"DriveMaxRCIN": "currently triggers Arithmetic Exception",
"Button": "See https://github.com/ArduPilot/ardupilot/issues/15259",
}
def rc_defaults(self):

Loading…
Cancel
Save