autotest: disable button test
This commit is contained in:
parent
e9b8a20312
commit
f3866e5f39
@ -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):
|
||||
|
@ -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",
|
||||
}
|
||||
|
@ -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()
|
||||
|
@ -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…
Reference in New Issue
Block a user