mirror of https://github.com/ArduPilot/ardupilot
autotest: correct placement of not-alive-after-test message
This was misplaced with bad conflict resolution
This commit is contained in:
parent
e51631c8b0
commit
55e8922c3c
|
@ -5817,7 +5817,6 @@ Also, ignores heartbeats not from our target system'''
|
||||||
self.context_pop()
|
self.context_pop()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.print_exception_caught(e, send_statustext=False)
|
self.print_exception_caught(e, send_statustext=False)
|
||||||
self.progress("Not alive after test", send_statustext=False)
|
|
||||||
passed = False
|
passed = False
|
||||||
|
|
||||||
ardupilot_alive = False
|
ardupilot_alive = False
|
||||||
|
@ -5826,6 +5825,7 @@ Also, ignores heartbeats not from our target system'''
|
||||||
ardupilot_alive = True
|
ardupilot_alive = True
|
||||||
except Exception:
|
except Exception:
|
||||||
# process is dead
|
# process is dead
|
||||||
|
self.progress("Not alive after test", send_statustext=False)
|
||||||
passed = False
|
passed = False
|
||||||
reset_needed = True
|
reset_needed = True
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue