autotest: disable button test

This commit is contained in:
Peter Barker 2020-09-07 15:17:41 +10:00 committed by Peter Barker
parent e9b8a20312
commit f3866e5f39
4 changed files with 8 additions and 1 deletions

View File

@ -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):

View File

@ -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",
}

View File

@ -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()

View File

@ -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):