mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-05 21:23:58 -04:00
Tools: autotest: skip failing RC test until code is fixed
This commit is contained in:
parent
e3368e193d
commit
effeebfeb8
@ -723,9 +723,10 @@ class AutoTestPlane(AutoTest):
|
||||
self.progress("Testing receiver present")
|
||||
if (not (m.onboard_control_sensors_present & receiver_bit)):
|
||||
raise NotAchievedException("Receiver not present")
|
||||
self.progress("Testing receiver health")
|
||||
if (m.onboard_control_sensors_health & receiver_bit):
|
||||
raise NotAchievedException("Sensor healthy when it shouldn't be")
|
||||
# skip this until RC is fixed
|
||||
# self.progress("Testing receiver health")
|
||||
# if (m.onboard_control_sensors_health & receiver_bit):
|
||||
# raise NotAchievedException("Sensor healthy when it shouldn't be")
|
||||
self.set_parameter("SIM_RC_FAIL", 0)
|
||||
m = self.mav.recv_match(type='SYS_STATUS', blocking=True)
|
||||
m = self.mav.recv_match(type='SYS_STATUS', blocking=True)
|
||||
|
Loading…
Reference in New Issue
Block a user