qemu/tests/virtio-rng-test.c
<<
>>
Prefs
   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
  10#include "qemu/osdep.h"
  11#include "libqtest.h"
  12#include "libqos/pci.h"
  13
  14#define PCI_SLOT_HP             0x06
  15
  16/* Tests only initialization so far. TODO: Replace with functional tests */
  17static void pci_nop(void)
  18{
  19}
  20
  21static void hotplug(void)
  22{
  23    const char *arch = qtest_get_arch();
  24
  25    qpci_plug_device_test("virtio-rng-pci", "rng1", PCI_SLOT_HP, NULL);
  26
  27    if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
  28        qpci_unplug_acpi_device_test("rng1", PCI_SLOT_HP);
  29    }
  30}
  31
  32int main(int argc, char **argv)
  33{
  34    int ret;
  35
  36    g_test_init(&argc, &argv, NULL);
  37    qtest_add_func("/virtio/rng/pci/nop", pci_nop);
  38    qtest_add_func("/virtio/rng/pci/hotplug", hotplug);
  39
  40    qtest_start("-device virtio-rng-pci");
  41    ret = g_test_run();
  42
  43    qtest_end();
  44
  45    return ret;
  46}
  47