diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2021-01-08 22:42:38 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2021-01-18 10:04:31 +0000 |
commit | 5662ab11f6e70157521913e38e49d4d1b135c4d5 (patch) | |
tree | 4c960a584383deeccc9ce5b40a1a6babdfd4e41a /tests | |
parent | 9e5acb373d431ebce03543d7e0e98bacaf6b7027 (diff) |
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')
-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 |