tests/qtest: Skip unplug tests that use missing devices
Signed-off-by: Fabiano Rosas <farosas@suse.de> Message-Id: <20230208194700.11035-8-farosas@suse.de> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
ca7d9f5f28
commit
45ec78befb
@ -68,6 +68,11 @@ static void test_pci_unplug_request(void)
|
||||
const char *arch = qtest_get_arch();
|
||||
const char *machine_addition = "";
|
||||
|
||||
if (!qtest_has_device("virtio-mouse-pci")) {
|
||||
g_test_skip("Device virtio-mouse-pci not available");
|
||||
return;
|
||||
}
|
||||
|
||||
if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
|
||||
machine_addition = "-machine pc";
|
||||
}
|
||||
@ -82,11 +87,17 @@ static void test_pci_unplug_request(void)
|
||||
|
||||
static void test_q35_pci_unplug_request(void)
|
||||
{
|
||||
QTestState *qtest;
|
||||
|
||||
QTestState *qtest = qtest_initf("-machine q35 "
|
||||
"-device pcie-root-port,id=p1 "
|
||||
"-device pcie-pci-bridge,bus=p1,id=b1 "
|
||||
"-device virtio-mouse-pci,bus=b1,id=dev0");
|
||||
if (!qtest_has_device("virtio-mouse-pci")) {
|
||||
g_test_skip("Device virtio-mouse-pci not available");
|
||||
return;
|
||||
}
|
||||
|
||||
qtest = qtest_initf("-machine q35 "
|
||||
"-device pcie-root-port,id=p1 "
|
||||
"-device pcie-pci-bridge,bus=p1,id=b1 "
|
||||
"-device virtio-mouse-pci,bus=b1,id=dev0");
|
||||
|
||||
process_device_remove(qtest, "dev0");
|
||||
|
||||
@ -99,6 +110,11 @@ static void test_pci_unplug_json_request(void)
|
||||
const char *arch = qtest_get_arch();
|
||||
const char *machine_addition = "";
|
||||
|
||||
if (!qtest_has_device("virtio-mouse-pci")) {
|
||||
g_test_skip("Device virtio-mouse-pci not available");
|
||||
return;
|
||||
}
|
||||
|
||||
if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
|
||||
machine_addition = "-machine pc";
|
||||
}
|
||||
@ -114,6 +130,7 @@ static void test_pci_unplug_json_request(void)
|
||||
|
||||
static void test_q35_pci_unplug_json_request(void)
|
||||
{
|
||||
QTestState *qtest;
|
||||
const char *port = "-device \"{'driver': 'pcie-root-port', "
|
||||
"'id': 'p1'}\"";
|
||||
|
||||
@ -125,8 +142,12 @@ static void test_q35_pci_unplug_json_request(void)
|
||||
"'bus': 'b1', "
|
||||
"'id': 'dev0'}\"";
|
||||
|
||||
QTestState *qtest = qtest_initf("-machine q35 %s %s %s",
|
||||
port, bridge, device);
|
||||
if (!qtest_has_device("virtio-mouse-pci")) {
|
||||
g_test_skip("Device virtio-mouse-pci not available");
|
||||
return;
|
||||
}
|
||||
|
||||
qtest = qtest_initf("-machine q35 %s %s %s", port, bridge, device);
|
||||
|
||||
process_device_remove(qtest, "dev0");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user