Andreas Färber | b6f46f0 | 2014-02-09 04:43:10 +0100 | [diff] [blame] | 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 | |
Andreas Färber | b6f46f0 | 2014-02-09 04:43:10 +0100 | [diff] [blame] | 10 | #include "qemu/osdep.h" |
Peter Maydell | 681c28a | 2016-02-08 18:08:51 +0000 | [diff] [blame] | 11 | #include "libqtest.h" |
Igor Mammedov | d1f3fc2 | 2014-09-26 09:28:09 +0000 | [diff] [blame] | 12 | #include "libqos/pci.h" |
| 13 | |
| 14 | #define PCI_SLOT_HP 0x06 |
Andreas Färber | b6f46f0 | 2014-02-09 04:43:10 +0100 | [diff] [blame] | 15 | |
| 16 | /* Tests only initialization so far. TODO: Replace with functional tests */ |
| 17 | static void pci_nop(void) |
| 18 | { |
| 19 | } |
| 20 | |
Igor Mammedov | d1f3fc2 | 2014-09-26 09:28:09 +0000 | [diff] [blame] | 21 | static void hotplug(void) |
| 22 | { |
| 23 | qpci_plug_device_test("virtio-rng-pci", "rng1", PCI_SLOT_HP, NULL); |
| 24 | qpci_unplug_acpi_device_test("rng1", PCI_SLOT_HP); |
| 25 | } |
| 26 | |
Andreas Färber | b6f46f0 | 2014-02-09 04:43:10 +0100 | [diff] [blame] | 27 | int main(int argc, char **argv) |
| 28 | { |
| 29 | int ret; |
| 30 | |
| 31 | g_test_init(&argc, &argv, NULL); |
| 32 | qtest_add_func("/virtio/rng/pci/nop", pci_nop); |
Igor Mammedov | d1f3fc2 | 2014-09-26 09:28:09 +0000 | [diff] [blame] | 33 | qtest_add_func("/virtio/rng/pci/hotplug", hotplug); |
Andreas Färber | b6f46f0 | 2014-02-09 04:43:10 +0100 | [diff] [blame] | 34 | |
| 35 | qtest_start("-device virtio-rng-pci"); |
| 36 | ret = g_test_run(); |
| 37 | |
| 38 | qtest_end(); |
| 39 | |
| 40 | return ret; |
| 41 | } |