aboutsummaryrefslogtreecommitdiff
path: root/tests/e1000-test.c
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2019-09-09 12:04:01 +0200
committerThomas Huth <thuth@redhat.com>2020-01-12 11:42:41 +0100
commit1e8a1fae7464ef79c9e50aa0f807d2c511be3c8e (patch)
tree80d1a4f0454b9a75c09461e69f969213350540ea /tests/e1000-test.c
parent10ae5b303a0de07f0659a2c90d9c1266b3908b97 (diff)
test: Move qtests to a separate directory
The tests directory itself is pretty overcrowded, and it's hard to see which test belongs to which test subsystem (unit, qtest, ...). Let's move the qtests to a separate folder for more clarity. Message-Id: <20191218103059.11729-6-thuth@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/e1000-test.c')
-rw-r--r--tests/e1000-test.c68
1 files changed, 0 insertions, 68 deletions
diff --git a/tests/e1000-test.c b/tests/e1000-test.c
deleted file mode 100644
index c387984ef6..0000000000
--- a/tests/e1000-test.c
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * QTest testcase for e1000 NIC
- *
- * Copyright (c) 2013-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 "qemu/module.h"
-#include "libqos/qgraph.h"
-#include "libqos/pci.h"
-
-typedef struct QE1000 QE1000;
-
-struct QE1000 {
- QOSGraphObject obj;
- QPCIDevice dev;
-};
-
-static const char *models[] = {
- "e1000",
- "e1000-82540em",
- "e1000-82544gc",
- "e1000-82545em",
-};
-
-static void *e1000_get_driver(void *obj, const char *interface)
-{
- QE1000 *e1000 = obj;
-
- if (!g_strcmp0(interface, "pci-device")) {
- return &e1000->dev;
- }
-
- fprintf(stderr, "%s not present in e1000e\n", interface);
- g_assert_not_reached();
-}
-
-static void *e1000_create(void *pci_bus, QGuestAllocator *alloc, void *addr)
-{
- QE1000 *e1000 = g_new0(QE1000, 1);
- QPCIBus *bus = pci_bus;
-
- qpci_device_init(&e1000->dev, bus, addr);
- e1000->obj.get_driver = e1000_get_driver;
-
- return &e1000->obj;
-}
-
-static void e1000_register_nodes(void)
-{
- int i;
- QOSGraphEdgeOptions opts = {
- .extra_device_opts = "addr=04.0",
- };
- add_qpci_address(&opts, &(QPCIAddress) { .devfn = QPCI_DEVFN(4, 0) });
-
- for (i = 0; i < ARRAY_SIZE(models); i++) {
- qos_node_create_driver(models[i], e1000_create);
- qos_node_consumes(models[i], "pci-bus", &opts);
- qos_node_produces(models[i], "pci-device");
- }
-}
-
-libqos_init(e1000_register_nodes);