ui: introduce enum to track VNC client framebuffer update request state
[qemu/ar7.git] / tests / e1000-test.c
blob0c5fcdcc4478f060664028eef5d74583b5f4973e
1 /*
2 * QTest testcase for e1000 NIC
4 * Copyright (c) 2013-2014 SUSE LINUX Products GmbH
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 */
10 #include "qemu/osdep.h"
11 #include "libqtest.h"
13 /* Tests only initialization so far. TODO: Replace with functional tests */
14 static void test_device(gconstpointer data)
16 const char *model = data;
17 QTestState *s;
18 char *args;
20 args = g_strdup_printf("-device %s", model);
21 s = qtest_start(args);
23 if (s) {
24 qtest_quit(s);
26 g_free(args);
29 static const char *models[] = {
30 "e1000",
31 "e1000-82540em",
32 "e1000-82544gc",
33 "e1000-82545em",
36 int main(int argc, char **argv)
38 int i;
40 g_test_init(&argc, &argv, NULL);
42 for (i = 0; i < ARRAY_SIZE(models); i++) {
43 char *path;
45 path = g_strdup_printf("e1000/%s", models[i]);
46 qtest_add_data_func(path, models[i], test_device);
47 g_free(path);
50 return g_test_run();