]>
Commit | Line | Data |
---|---|---|
b6f46f02 AF |
1 | /* |
2 | * QTest testcase for VirtIO RNG | |
3 | * | |
4 | * Copyright (c) 2014 SUSE LINUX Products GmbH | |
5 | * | |
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 | */ | |
9 | ||
681c28a3 | 10 | #include "qemu/osdep.h" |
b6f46f02 | 11 | #include <glib.h> |
b6f46f02 | 12 | #include "libqtest.h" |
d1f3fc24 IM |
13 | #include "libqos/pci.h" |
14 | ||
15 | #define PCI_SLOT_HP 0x06 | |
b6f46f02 AF |
16 | |
17 | /* Tests only initialization so far. TODO: Replace with functional tests */ | |
18 | static void pci_nop(void) | |
19 | { | |
20 | } | |
21 | ||
d1f3fc24 IM |
22 | static void hotplug(void) |
23 | { | |
24 | qpci_plug_device_test("virtio-rng-pci", "rng1", PCI_SLOT_HP, NULL); | |
25 | qpci_unplug_acpi_device_test("rng1", PCI_SLOT_HP); | |
26 | } | |
27 | ||
b6f46f02 AF |
28 | int main(int argc, char **argv) |
29 | { | |
30 | int ret; | |
31 | ||
32 | g_test_init(&argc, &argv, NULL); | |
33 | qtest_add_func("/virtio/rng/pci/nop", pci_nop); | |
d1f3fc24 | 34 | qtest_add_func("/virtio/rng/pci/hotplug", hotplug); |
b6f46f02 AF |
35 | |
36 | qtest_start("-device virtio-rng-pci"); | |
37 | ret = g_test_run(); | |
38 | ||
39 | qtest_end(); | |
40 | ||
41 | return ret; | |
42 | } |