tests/guest-debug: better handle gdb crashes
There are a number of GDB's on various distros which fail fairly hard when attempting to talk to a cross-arch guest. The previous attempt to catch this was incorrect as the shell will deliver signals as 128+n. Fix the detection and while we are it improve the logging we dump into the test output. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reported-by: Gautam Agrawal <gautamnagrawal@gmail.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220419091020.3008144-26-alex.bennee@linaro.org>
This commit is contained in:
parent
e618e1f9b4
commit
caccf59918
@ -92,17 +92,18 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
result = subprocess.call(gdb_cmd, shell=True, stdout=output)
|
result = subprocess.call(gdb_cmd, shell=True, stdout=output)
|
||||||
|
|
||||||
# A negative result is the result of an internal gdb failure like
|
# A result of greater than 128 indicates a fatal signal (likely a
|
||||||
# a crash. We force a return of 0 so we don't fail the test on
|
# crash due to gdb internal failure). That's a problem for GDB and
|
||||||
|
# not the test so we force a return of 0 so we don't fail the test on
|
||||||
# account of broken external tools.
|
# account of broken external tools.
|
||||||
if result < 0:
|
if result > 128:
|
||||||
print("GDB crashed? SKIPPING")
|
log(output, "GDB crashed? (%d, %d) SKIPPING" % (result, result - 128))
|
||||||
exit(0)
|
exit(0)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
inferior.wait(2)
|
inferior.wait(2)
|
||||||
except subprocess.TimeoutExpired:
|
except subprocess.TimeoutExpired:
|
||||||
print("GDB never connected? Killed guest")
|
log(output, "GDB never connected? Killed guest")
|
||||||
inferior.kill()
|
inferior.kill()
|
||||||
|
|
||||||
exit(result)
|
exit(result)
|
||||||
|
Loading…
Reference in New Issue
Block a user