From: "Alex Bennée" <alex.bennee@linaro.org>
To: qemu-devel@nongnu.org
Cc: "Alex Bennée" <alex.bennee@linaro.org>,
"Gautam Agrawal" <gautamnagrawal@gmail.com>
Subject: [RFC PATCH] tests/guest-debug: better handle gdb crashes
Date: Wed, 13 Apr 2022 13:11:15 +0100 [thread overview]
Message-ID: <20220413121115.639610-1-alex.bennee@linaro.org> (raw)
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>
---
tests/guest-debug/run-test.py | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/tests/guest-debug/run-test.py b/tests/guest-debug/run-test.py
index 2e58795a10..d865e46ecd 100755
--- a/tests/guest-debug/run-test.py
+++ b/tests/guest-debug/run-test.py
@@ -92,17 +92,18 @@ def log(output, msg):
result = subprocess.call(gdb_cmd, shell=True, stdout=output)
- # A negative result is the result of an internal gdb failure like
- # a crash. We force a return of 0 so we don't fail the test on
+ # A result of greater than 128 indicates a fatal signal (likely a
+ # 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.
- if result < 0:
- print("GDB crashed? SKIPPING")
+ if result > 128:
+ log(output, "GDB crashed? (%d, %d) SKIPPING" % (result, result - 128))
exit(0)
try:
inferior.wait(2)
except subprocess.TimeoutExpired:
- print("GDB never connected? Killed guest")
+ log(output, "GDB never connected? Killed guest")
inferior.kill()
exit(result)
--
2.30.2
reply other threads:[~2022-04-13 12:12 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220413121115.639610-1-alex.bennee@linaro.org \
--to=alex.bennee@linaro.org \
--cc=gautamnagrawal@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).