diff options
author | Laurent Vivier <lvivier@redhat.com> | 2016-10-17 12:30:24 +0200 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2016-10-28 09:36:58 +1100 |
commit | 30ca440eec9fe1d7eec5a48addac656438778278 (patch) | |
tree | 68e20f4d2ffa59169c9597ee0e1fac8b6d4a210e /tests/virtio-rng-test.c | |
parent | a980f7f2c2f4d7e9a1eba4f804cd66dbd458b6d4 (diff) |
tests: enable virtio tests on SPAPR
but disable MSI-X tests on SPAPR as we can't check the result
(the memory region used on PC is not readable on SPAPR).
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'tests/virtio-rng-test.c')
-rw-r--r-- | tests/virtio-rng-test.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/virtio-rng-test.c b/tests/virtio-rng-test.c index e1b26401f9..dcecf77463 100644 --- a/tests/virtio-rng-test.c +++ b/tests/virtio-rng-test.c @@ -20,8 +20,13 @@ static void pci_nop(void) static void hotplug(void) { + const char *arch = qtest_get_arch(); + qpci_plug_device_test("virtio-rng-pci", "rng1", PCI_SLOT_HP, NULL); - qpci_unplug_acpi_device_test("rng1", PCI_SLOT_HP); + + if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) { + qpci_unplug_acpi_device_test("rng1", PCI_SLOT_HP); + } } int main(int argc, char **argv) |