mirror of
https://github.com/ARM-software/devlib.git
synced 2025-04-05 01:10:03 +01:00
utils/android: better error message when exit code not detected
Include the stdout/stderr output in the message of the exception raised when the exit code of the adb command cannot be detected.
This commit is contained in:
parent
b933dbda67
commit
85036fbb30
@ -381,8 +381,9 @@ def adb_shell(device, command, timeout=None, check_exit_code=False,
|
|||||||
raise TargetError(message.format(re_search[0]))
|
raise TargetError(message.format(re_search[0]))
|
||||||
else:
|
else:
|
||||||
message = 'adb has returned early; did not get an exit code. '\
|
message = 'adb has returned early; did not get an exit code. '\
|
||||||
'Was kill-server invoked?'
|
'Was kill-server invoked?\nOUTPUT:\n-----\n{}\n'\
|
||||||
raise TargetError(message)
|
'-----\nERROR:\n-----\n{}\n-----'
|
||||||
|
raise TargetError(message.format(raw_output, error))
|
||||||
|
|
||||||
return output
|
return output
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user