From: Alex Bennée Date: Fri, 8 Jan 2021 22:42:38 +0000 (+0000) Subject: test/guest-debug: echo QEMU command as well X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5662ab11f6e70157521913e38e49d4d1b135c4d5;p=qemu.git test/guest-debug: echo QEMU command as well This helps with debugging. Signed-off-by: Alex Bennée Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20210108224256.2321-3-alex.bennee@linaro.org> --- 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