s390x: upgrade status of KVM cores to "supported"
[qemu/ar7.git] / tests / virtio-rng-test.c
blob657d9a41059209e56698bd379e10988485b3cfbf
1 /*
2 * QTest testcase for VirtIO RNG
4 * Copyright (c) 2014 SUSE LINUX Products GmbH
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
10 #include "qemu/osdep.h"
11 #include "libqtest.h"
12 #include "libqos/pci.h"
14 #define PCI_SLOT_HP 0x06
16 /* Tests only initialization so far. TODO: Replace with functional tests */
17 static void pci_nop(void)
21 static void hotplug(void)
23 const char *arch = qtest_get_arch();
25 qtest_qmp_device_add("virtio-rng-pci", "rng1",
26 "{'addr': %s}", stringify(PCI_SLOT_HP));
28 if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
29 qpci_unplug_acpi_device_test("rng1", PCI_SLOT_HP);
33 int main(int argc, char **argv)
35 int ret;
37 g_test_init(&argc, &argv, NULL);
38 qtest_add_func("/virtio/rng/pci/nop", pci_nop);
39 qtest_add_func("/virtio/rng/pci/hotplug", hotplug);
41 qtest_start("-device virtio-rng-pci");
42 ret = g_test_run();
44 qtest_end();
46 return ret;