diff options
author | Alex Bennée | 2020-05-20 16:05:33 +0200 |
---|---|---|
committer | Alex Bennée | 2020-05-27 15:26:49 +0200 |
commit | 8ec6f3315118ef75d37e9433dc8faa8383130fb6 (patch) | |
tree | 33d0ac96670fe4ea5d7115929515c5e3c52b7176 /tests/tcg | |
parent | tests/fp: split and audit the conversion tests (diff) | |
download | qemu-8ec6f3315118ef75d37e9433dc8faa8383130fb6.tar.gz qemu-8ec6f3315118ef75d37e9433dc8faa8383130fb6.tar.xz qemu-8ec6f3315118ef75d37e9433dc8faa8383130fb6.zip |
tests/tcg: better detect confused gdb which can't connect
While we may gamely give the right information it can still confuse
the wide range of GDBs out there. For example ppc64abi32-linux-user
reports:
warning: Selected architecture powerpc:common is not compatible with reported target architecture powerpc:common64
warning: Architecture rejected target-supplied description
but still connects. Add a test for a 0 pc and exit early if that is
the case. This may actually be a bug we need to fix?
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20200520140541.30256-8-alex.bennee@linaro.org>
Diffstat (limited to 'tests/tcg')
-rw-r--r-- | tests/tcg/multiarch/gdbstub/sha1.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/tcg/multiarch/gdbstub/sha1.py b/tests/tcg/multiarch/gdbstub/sha1.py index 734553b98b..2bfde49633 100644 --- a/tests/tcg/multiarch/gdbstub/sha1.py +++ b/tests/tcg/multiarch/gdbstub/sha1.py @@ -65,6 +65,10 @@ except (gdb.error, AttributeError): print("SKIPPING (not connected)", file=sys.stderr) exit(0) +if gdb.parse_and_eval('$pc') == 0: + print("SKIP: PC not set") + exit(0) + try: # These are not very useful in scripts gdb.execute("set pagination off") |