blob: 41c1cdb1aa2e7701b382ccd280d42fefc0ee228a [file] [log] [blame]
Andreas Färberb6f46f02014-02-09 04:43:10 +01001/*
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
10#include <glib.h>
11#include <string.h>
12#include "libqtest.h"
13#include "qemu/osdep.h"
Igor Mammedovd1f3fc22014-09-26 09:28:09 +000014#include "libqos/pci.h"
15
16#define PCI_SLOT_HP 0x06
Andreas Färberb6f46f02014-02-09 04:43:10 +010017
18/* Tests only initialization so far. TODO: Replace with functional tests */
19static void pci_nop(void)
20{
21}
22
Igor Mammedovd1f3fc22014-09-26 09:28:09 +000023static void hotplug(void)
24{
25 qpci_plug_device_test("virtio-rng-pci", "rng1", PCI_SLOT_HP, NULL);
26 qpci_unplug_acpi_device_test("rng1", PCI_SLOT_HP);
27}
28
Andreas Färberb6f46f02014-02-09 04:43:10 +010029int main(int argc, char **argv)
30{
31 int ret;
32
33 g_test_init(&argc, &argv, NULL);
34 qtest_add_func("/virtio/rng/pci/nop", pci_nop);
Igor Mammedovd1f3fc22014-09-26 09:28:09 +000035 qtest_add_func("/virtio/rng/pci/hotplug", hotplug);
Andreas Färberb6f46f02014-02-09 04:43:10 +010036
37 qtest_start("-device virtio-rng-pci");
38 ret = g_test_run();
39
40 qtest_end();
41
42 return ret;
43}