[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 1/6] test/guest-debug: echo QEMU command as well
From: |
Alex Bennée |
Subject: |
[PATCH v1 1/6] test/guest-debug: echo QEMU command as well |
Date: |
Mon, 14 Dec 2020 15:30:07 +0000 |
This helps with debugging.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
tests/guest-debug/run-test.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/guest-debug/run-test.py b/tests/guest-debug/run-test.py
index 71c5569054..0c4f5c3808 100755
--- a/tests/guest-debug/run-test.py
+++ b/tests/guest-debug/run-test.py
@@ -53,6 +53,7 @@ if __name__ == '__main__':
cmd = "%s %s -g %s %s" % (args.qemu, args.qargs, socket_name,
args.binary)
+ print("QEMU CMD: %s" % (cmd))
inferior = subprocess.Popen(shlex.split(cmd))
# Now launch gdb with our test and collect the result
--
2.20.1
- Re: [PATCH v1 2/6] configure: gate our use of GDB to 8.3.1 or above, (continued)
[PATCH v1 3/6] gdbstub: add support to Xfer:auxv:read: packet, Alex Bennée, 2020/12/14
[PATCH v1 4/6] gdbstub: drop CPUEnv from gdb_exit(), Alex Bennée, 2020/12/14
[PATCH v1 6/6] gdbstub: ensure we clean-up when terminated, Alex Bennée, 2020/12/14
[PATCH v1 5/6] gdbstub: drop gdbserver_cleanup in favour of gdb_exit, Alex Bennée, 2020/12/14
[PATCH v1 1/6] test/guest-debug: echo QEMU command as well,
Alex Bennée <=