4 * Copyright (c) 2016, 2017 Red Hat Inc.
7 * Michael S. Tsirkin <mst@redhat.com>,
8 * Victor Kaplansky <victork@redhat.com>
9 * Thomas Huth <thuth@redhat.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
15 #include "qemu/osdep.h"
16 #include <glib/gstdio.h>
17 #include "qemu-common.h"
19 #include "boot-sector.h"
21 #define NETNAME "net0"
23 static char disk
[] = "tests/pxe-test-disk-XXXXXX";
25 typedef struct testdef
{
26 const char *machine
; /* Machine type */
27 const char *model
; /* NIC device model */
30 static testdef_t x86_tests
[] = {
32 { "pc", "virtio-net-pci" },
34 { "q35", "virtio-net-pci", },
38 static testdef_t x86_tests_slow
[] = {
39 { "pc", "ne2k_pci", },
46 static testdef_t ppc64_tests
[] = {
47 { "pseries", "spapr-vlan" },
48 { "pseries", "virtio-net-pci", },
52 static testdef_t ppc64_tests_slow
[] = {
53 { "pseries", "e1000" },
57 static testdef_t s390x_tests
[] = {
58 { "s390-ccw-virtio", "virtio-net-ccw" },
62 static void test_pxe_one(const testdef_t
*test
, bool ipv6
)
66 args
= g_strdup_printf(
67 "-machine %s,accel=kvm:tcg -nodefaults -boot order=n "
68 "-netdev user,id=" NETNAME
",tftp=./,bootfile=%s,ipv4=%s,ipv6=%s "
69 "-device %s,bootindex=1,netdev=" NETNAME
,
70 test
->machine
, disk
, ipv6
? "off" : "on", ipv6
? "on" : "off",
74 boot_sector_test(global_qtest
);
75 qtest_quit(global_qtest
);
79 static void test_pxe_ipv4(gconstpointer data
)
81 const testdef_t
*test
= data
;
83 test_pxe_one(test
, false);
86 static void test_pxe_ipv6(gconstpointer data
)
88 const testdef_t
*test
= data
;
90 test_pxe_one(test
, true);
93 static void test_batch(const testdef_t
*tests
, bool ipv6
)
97 for (i
= 0; tests
[i
].machine
; i
++) {
98 const testdef_t
*test
= &tests
[i
];
101 testname
= g_strdup_printf("pxe/ipv4/%s/%s",
102 test
->machine
, test
->model
);
103 qtest_add_data_func(testname
, test
, test_pxe_ipv4
);
107 testname
= g_strdup_printf("pxe/ipv6/%s/%s",
108 test
->machine
, test
->model
);
109 qtest_add_data_func(testname
, test
, test_pxe_ipv6
);
115 int main(int argc
, char *argv
[])
118 const char *arch
= qtest_get_arch();
120 ret
= boot_sector_init(disk
);
124 g_test_init(&argc
, &argv
, NULL
);
126 if (strcmp(arch
, "i386") == 0 || strcmp(arch
, "x86_64") == 0) {
127 test_batch(x86_tests
, false);
129 test_batch(x86_tests_slow
, false);
131 } else if (strcmp(arch
, "ppc64") == 0) {
132 test_batch(ppc64_tests
, g_test_slow());
134 test_batch(ppc64_tests_slow
, true);
136 } else if (g_str_equal(arch
, "s390x")) {
137 test_batch(s390x_tests
, g_test_slow());
140 boot_sector_cleanup(disk
);