]> Git Repo - qemu.git/blame - tests/virtio-rng-test.c
tests/tcg/xtensa: conditionalize debug option tests
[qemu.git] / tests / virtio-rng-test.c
CommitLineData
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 "libqtest.h"
d1f3fc24
IM
12#include "libqos/pci.h"
13
14#define PCI_SLOT_HP 0x06
b6f46f02
AF
15
16/* Tests only initialization so far. TODO: Replace with functional tests */
17static void pci_nop(void)
18{
19}
20
d1f3fc24
IM
21static void hotplug(void)
22{
30ca440e
LV
23 const char *arch = qtest_get_arch();
24
82cab70b
MA
25 qtest_qmp_device_add("virtio-rng-pci", "rng1",
26 "{'addr': %s}", stringify(PCI_SLOT_HP));
30ca440e
LV
27
28 if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
29 qpci_unplug_acpi_device_test("rng1", PCI_SLOT_HP);
30 }
d1f3fc24
IM
31}
32
b6f46f02
AF
33int main(int argc, char **argv)
34{
35 int ret;
36
37 g_test_init(&argc, &argv, NULL);
38 qtest_add_func("/virtio/rng/pci/nop", pci_nop);
d1f3fc24 39 qtest_add_func("/virtio/rng/pci/hotplug", hotplug);
b6f46f02
AF
40
41 qtest_start("-device virtio-rng-pci");
42 ret = g_test_run();
43
44 qtest_end();
45
46 return ret;
47}
This page took 0.231694 seconds and 4 git commands to generate.