mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 21:32:52 +00:00
a25f56aebe
Convert tests/virtio-rng-test in qgraph test node, virtio-rng-test. This test consumes a virtio-rng interface and checks that its function return the expected values. Some functions are implemented only for virtio-rng-pci, so they don't consume virtio-rng, but virtio-rng-pci Note that this test does not allocate any virtio-rng structure, it's all done by the qtest walking graph mechanism Signed-off-by: Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
34 lines
888 B
C
34 lines
888 B
C
/*
|
|
* QTest testcase for VirtIO RNG
|
|
*
|
|
* Copyright (c) 2014 SUSE LINUX Products GmbH
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "libqtest.h"
|
|
#include "libqos/qgraph.h"
|
|
#include "libqos/virtio-rng.h"
|
|
|
|
#define PCI_SLOT_HP 0x06
|
|
|
|
static void rng_hotplug(void *obj, void *data, QGuestAllocator *alloc)
|
|
{
|
|
const char *arch = qtest_get_arch();
|
|
|
|
qtest_qmp_device_add("virtio-rng-pci", "rng1",
|
|
"{'addr': %s}", stringify(PCI_SLOT_HP));
|
|
|
|
if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
|
|
qpci_unplug_acpi_device_test("rng1", PCI_SLOT_HP);
|
|
}
|
|
}
|
|
|
|
static void register_virtio_rng_test(void)
|
|
{
|
|
qos_add_test("hotplug", "virtio-rng-pci", rng_hotplug, NULL);
|
|
}
|
|
|
|
libqos_init(register_virtio_rng_test);
|