diff options
author | Thomas Huth <thuth@redhat.com> | 2023-05-11 13:33:08 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2023-05-22 09:44:48 +0200 |
commit | 335da81152357114b5d5dbfebb680a886b78fe0a (patch) | |
tree | 518ccb4a4ee86cc56ddf4b5492bf7e5a3741327e /tests | |
parent | e8273b0c456a26aad046f48424861ecd26bd16c7 (diff) | |
download | qemu-335da81152357114b5d5dbfebb680a886b78fe0a.zip qemu-335da81152357114b5d5dbfebb680a886b78fe0a.tar.gz qemu-335da81152357114b5d5dbfebb680a886b78fe0a.tar.bz2 |
tests/qtest/readconfig-test: Check for the availability of USB controllers
The USB controllers might not be available in the QEMU binary
(e.g. when using the "--without-default-devices" configure switch),
so we have to check whether the devices can be used before running
the related test.
Message-Id: <20230512124033.502654-12-thuth@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qtest/readconfig-test.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/qtest/readconfig-test.c b/tests/qtest/readconfig-test.c index 918d456..ac72424 100644 --- a/tests/qtest/readconfig-test.c +++ b/tests/qtest/readconfig-test.c @@ -207,7 +207,10 @@ int main(int argc, char *argv[]) if (g_str_equal(arch, "i386") || g_str_equal(arch, "x86_64")) { qtest_add_func("readconfig/x86/memdev", test_x86_memdev); - qtest_add_func("readconfig/x86/ich9-ehci-uhci", test_docs_config_ich9); + if (qtest_has_device("ich9-usb-ehci1") && + qtest_has_device("ich9-usb-uhci1")) { + qtest_add_func("readconfig/x86/ich9-ehci-uhci", test_docs_config_ich9); + } } #if defined(CONFIG_SPICE) && !defined(__FreeBSD__) qtest_add_func("readconfig/spice", test_spice); |