diff options
author | Alex Bennée | 2021-01-08 23:42:38 +0100 |
---|---|---|
committer | Alex Bennée | 2021-01-18 11:04:31 +0100 |
commit | 5662ab11f6e70157521913e38e49d4d1b135c4d5 (patch) | |
tree | 4c960a584383deeccc9ce5b40a1a6babdfd4e41a /tests/guest-debug | |
parent | scripts/checkpatch.pl: fix git-show invocation to include diffstat (diff) | |
download | qemu-5662ab11f6e70157521913e38e49d4d1b135c4d5.tar.gz qemu-5662ab11f6e70157521913e38e49d4d1b135c4d5.tar.xz qemu-5662ab11f6e70157521913e38e49d4d1b135c4d5.zip |
test/guest-debug: echo QEMU command as well
This helps with debugging.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210108224256.2321-3-alex.bennee@linaro.org>
Diffstat (limited to 'tests/guest-debug')
-rwxr-xr-x | tests/guest-debug/run-test.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |