diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/guest-debug/run-test.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/guest-debug/run-test.py b/tests/guest-debug/run-test.py index 8b91ff9..2e58795 100755 --- a/tests/guest-debug/run-test.py +++ b/tests/guest-debug/run-test.py @@ -64,10 +64,10 @@ if __name__ == '__main__': # Launch QEMU with binary if "system" in args.qemu: - cmd = "%s %s %s -gdb unix:path=%s,server" % (args.qemu, - args.qargs, - args.binary, - socket_name) + cmd = "%s %s %s -gdb unix:path=%s,server=on" % (args.qemu, + args.qargs, + args.binary, + socket_name) else: cmd = "%s %s -g %s %s" % (args.qemu, args.qargs, socket_name, args.binary) |