diff options
author | Daniel P. Berrangé | 2021-02-16 20:10:24 +0100 |
---|---|---|
committer | Paolo Bonzini | 2021-02-25 14:14:33 +0100 |
commit | c23874132b79f69328b53273437970116c7a3d0d (patch) | |
tree | 436f7e215dfe000a3ecbd802d758713d4bbdf01f /tests | |
parent | qemu-options: update to show preferred boolean syntax for -vnc (diff) | |
download | qemu-c23874132b79f69328b53273437970116c7a3d0d.tar.gz qemu-c23874132b79f69328b53273437970116c7a3d0d.tar.xz qemu-c23874132b79f69328b53273437970116c7a3d0d.zip |
docs: update to show preferred boolean syntax for -chardev
The preferred syntax is to use "foo=on|off", rather than a bare
"foo" or "nofoo".
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20210216191027.595031-8-berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-char.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-char.c b/tests/test-char.c index 469d25989c..755d54c15e 100644 --- a/tests/test-char.c +++ b/tests/test-char.c @@ -780,7 +780,7 @@ static void char_socket_server_test(gconstpointer opaque) g_setenv("QTEST_SILENT_ERRORS", "1", 1); /* - * We rely on config->addr containing "nowait", otherwise + * We rely on config->addr containing "wait=off", otherwise * qemu_chr_new() will block until a client connects. We * can't spawn our client thread though, because until * qemu_chr_new() returns we don't know what TCP port was @@ -1114,7 +1114,7 @@ static void char_socket_server_two_clients_test(gconstpointer opaque) g_setenv("QTEST_SILENT_ERRORS", "1", 1); /* - * We rely on addr containing "nowait", otherwise + * We rely on addr containing "wait=off", otherwise * qemu_chr_new() will block until a client connects. We * can't spawn our client thread though, because until * qemu_chr_new() returns we don't know what TCP port was |