]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tests/qtest/usb-hcd-uhci-test: Skip test if UHCI controller is not available
authorThomas Huth <thuth@redhat.com>
Thu, 11 May 2023 11:59:00 +0000 (13:59 +0200)
committerThomas Huth <thuth@redhat.com>
Mon, 22 May 2023 07:44:48 +0000 (09:44 +0200)
The test is already fenced with CONFIG_USB_UHCI in meson.build, but in
case we build the ppc or mips targets in parallel, this config switch
is still set in "config_all_devices" and thus the test is still run.
Thus we need an explicit additional check here before adding the tests
to the test plan.

Message-Id: <20230512124033.502654-13-thuth@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/qtest/usb-hcd-uhci-test.c

index f264d2bf734d9ea92ef8ea37bc983c7615ccdcf7..84ac2f3c1ac5af366934bca8515d434661689d63 100644 (file)
@@ -66,6 +66,11 @@ int main(int argc, char **argv)
 
     g_test_init(&argc, &argv, NULL);
 
+    if (!qtest_has_device("piix3-usb-uhci")) {
+        g_debug("piix3-usb-uhci not available");
+        return 0;
+    }
+
     qtest_add_func("/uhci/pci/init", test_uhci_init);
     qtest_add_func("/uhci/pci/port1", test_port_1);
     qtest_add_func("/uhci/pci/hotplug", test_uhci_hotplug);