]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/qtest/vnc-display-test: Use the 'none' machine
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 19 Jan 2023 12:05:13 +0000 (13:05 +0100)
committerThomas Huth <thuth@redhat.com>
Thu, 26 Jan 2023 12:42:28 +0000 (13:42 +0100)
If we don't specify any machine, an architecture default
might be picked. But some architectures don't provide any
default, such ARM:

  $ make check-qtest-aarch64
  ...
  19/20 qemu:qtest+qtest-aarch64 / qtest-aarch64/vnc-display-test
  qemu-system-aarch64: No machine specified, and there is no default

Since we don't need any particular machine to run this VNC
test, use the 'none' machine.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230119120514.28778-3-philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/qtest/vnc-display-test.c

index fd63e3a881f5f26179b42b1e10cd6665cea0406a..df468c7b229133bf86a61ebea3d6b75ca6f05a30 100644 (file)
@@ -44,7 +44,7 @@ test_setup(Test *test)
 #else
     int pair[2];
 
-    test->qts = qtest_init("-vnc none -name vnc-test");
+    test->qts = qtest_init("-M none -vnc none -name vnc-test");
 
     g_assert_cmpint(qemu_socketpair(AF_UNIX, SOCK_STREAM, 0, pair), ==, 0);