diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-11-03 07:37:46 -0500 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-11-04 12:00:02 -0500 |
commit | 794b95608f8d92189baba697a7d6072e94ed2e0e (patch) | |
tree | cb2b4df5b17d5fcfd7084a074d40dca4f070c333 /tests/qtest | |
parent | e19c520fe6545230bf37c2458c6d97ed18cd0c4f (diff) |
ivshmem-test: do not use short-form boolean option
This QemuOpts idiom will be deprecated, so get rid of it in the tests.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/qtest')
-rw-r--r-- | tests/qtest/ivshmem-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/ivshmem-test.c b/tests/qtest/ivshmem-test.c index d5c8b9f128..dfa69424ed 100644 --- a/tests/qtest/ivshmem-test.c +++ b/tests/qtest/ivshmem-test.c @@ -135,7 +135,7 @@ static void setup_vm_cmd(IVState *s, const char *cmd, bool msix) static void setup_vm(IVState *s) { char *cmd = g_strdup_printf("-object memory-backend-file" - ",id=mb1,size=1M,share,mem-path=/dev/shm%s" + ",id=mb1,size=1M,share=on,mem-path=/dev/shm%s" " -device ivshmem-plain,memdev=mb1", tmpshm); setup_vm_cmd(s, cmd, false); |