aboutsummaryrefslogtreecommitdiff
path: root/tests/ne2000-test.c
diff options
context:
space:
mode:
authorEmanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>2018-08-17 13:04:12 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2019-03-07 17:28:46 +0100
commit941e33170916bc5bea8373807f2bfe5dc396d339 (patch)
tree5ad41d9f3849b6cc16a296cd6354797ab8215a92 /tests/ne2000-test.c
parent31692b2ec78c352b87f928c873ac38d6fdf711a7 (diff)
qos-test: ne2k_pci test node
Convert tests/ne2000-test to a driver node; currently it runs the PCI nop test only, therefore we're not placing it in tests/libqos. The actual device consumed by the test is ne2k_pci. Signed-off-by: Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/ne2000-test.c')
-rw-r--r--tests/ne2000-test.c46
1 files changed, 36 insertions, 10 deletions
diff --git a/tests/ne2000-test.c b/tests/ne2000-test.c
index b7cf3dd2f5..097c2eec6c 100644
--- a/tests/ne2000-test.c
+++ b/tests/ne2000-test.c
@@ -9,23 +9,49 @@
#include "qemu/osdep.h"
#include "libqtest.h"
+#include "libqos/qgraph.h"
+#include "libqos/pci.h"
-/* Tests only initialization so far. TODO: Replace with functional tests */
-static void pci_nop(void)
+typedef struct QNe2k_pci QNe2k_pci;
+
+struct QNe2k_pci {
+ QOSGraphObject obj;
+ QPCIDevice dev;
+};
+
+static void *ne2k_pci_get_driver(void *obj, const char *interface)
{
+ QNe2k_pci *ne2k_pci = obj;
+
+ if (!g_strcmp0(interface, "pci-device")) {
+ return &ne2k_pci->dev;
+ }
+
+ fprintf(stderr, "%s not present in ne2k_pci\n", interface);
+ g_assert_not_reached();
}
-int main(int argc, char **argv)
+static void *ne2k_pci_create(void *pci_bus, QGuestAllocator *alloc, void *addr)
{
- int ret;
+ QNe2k_pci *ne2k_pci = g_new0(QNe2k_pci, 1);
+ QPCIBus *bus = pci_bus;
- g_test_init(&argc, &argv, NULL);
- qtest_add_func("/ne2000/pci/nop", pci_nop);
+ qpci_device_init(&ne2k_pci->dev, bus, addr);
+ ne2k_pci->obj.get_driver = ne2k_pci_get_driver;
- qtest_start("-device ne2k_pci");
- ret = g_test_run();
+ return &ne2k_pci->obj;
+}
- qtest_end();
+static void ne2000_register_nodes(void)
+{
+ QOSGraphEdgeOptions opts = {
+ .extra_device_opts = "addr=04.0",
+ };
+ add_qpci_address(&opts, &(QPCIAddress) { .devfn = QPCI_DEVFN(4, 0) });
- return ret;
+ qos_node_create_driver("ne2k_pci", ne2k_pci_create);
+ qos_node_consumes("ne2k_pci", "pci-bus", &opts);
+ qos_node_produces("ne2k_pci", "pci-device");
}
+
+libqos_init(ne2000_register_nodes);