blob: 4b2092b94973abcc3dd704ab5bdd55c1810eb9c4 [file] [log] [blame]
Paolo Bonzinidb1f2662018-10-05 19:00:19 +02001/*
2 * QTest testcase for PCI
3 *
4 * Copyright (c) 2018 Red Hat, Inc.
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"
Marc-André Lureau907b5102022-03-30 13:39:05 +040011#include "libqtest.h"
Markus Armbruster0b8fa322019-05-23 16:35:07 +020012#include "qemu/module.h"
Paolo Bonzinidb1f2662018-10-05 19:00:19 +020013#include "libqos/qgraph.h"
14#include "libqos/pci.h"
15
16/* Tests only initialization so far. TODO: Replace with functional tests */
17static void nop(void *obj, void *data, QGuestAllocator *alloc)
18{
19}
20
21static void register_pci_test(void)
22{
23 qos_add_test("nop", "pci-device", nop, NULL);
24}
25
26libqos_init(register_pci_test);