From: David Gibson <david@gibson.dropbear.id.au>
To: mst@redhat.com
Cc: thuth@redhat.com, qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PATCH 3/4] tests/pxe-test: Test net booting over IPv6 in some cases
Date: Fri, 15 Dec 2017 21:16:50 +1100 [thread overview]
Message-ID: <20171215101651.13911-4-david@gibson.dropbear.id.au> (raw)
In-Reply-To: <20171215101651.13911-1-david@gibson.dropbear.id.au>
This adds IPv6 net boot testing (in addition to IPv4) when in slow test
mode on ppc64 or s390. IPv6 PXE doesn't seem to work on x86, I'm guessing
out BIOS image doesn't support it.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
---
tests/pxe-test.c | 26 ++++++++++++++++++++------
1 file changed, 20 insertions(+), 6 deletions(-)
diff --git a/tests/pxe-test.c b/tests/pxe-test.c
index f9bca8976d..e7a0610070 100644
--- a/tests/pxe-test.c
+++ b/tests/pxe-test.c
@@ -89,7 +89,14 @@ static void test_pxe_ipv4(gconstpointer data)
test_pxe_one(test, false);
}
-static void test_batch(const testdef_t *tests)
+static void test_pxe_ipv6(gconstpointer data)
+{
+ const testdef_t *test = data;
+
+ test_pxe_one(test, true);
+}
+
+static void test_batch(const testdef_t *tests, bool ipv6)
{
int i;
@@ -101,6 +108,13 @@ static void test_batch(const testdef_t *tests)
test->machine, test->model);
qtest_add_data_func(testname, test, test_pxe_ipv4);
g_free(testname);
+
+ if (ipv6) {
+ testname = g_strdup_printf("pxe/ipv6/%s/%s",
+ test->machine, test->model);
+ qtest_add_data_func(testname, test, test_pxe_ipv6);
+ g_free(testname);
+ }
}
}
@@ -116,17 +130,17 @@ int main(int argc, char *argv[])
g_test_init(&argc, &argv, NULL);
if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
- test_batch(x86_tests);
+ test_batch(x86_tests, false);
if (g_test_slow()) {
- test_batch(x86_tests_slow);
+ test_batch(x86_tests_slow, false);
}
} else if (strcmp(arch, "ppc64") == 0) {
- test_batch(ppc64_tests);
+ test_batch(ppc64_tests, g_test_slow());
if (g_test_slow()) {
- test_batch(ppc64_tests_slow);
+ test_batch(ppc64_tests_slow, true);
}
} else if (g_str_equal(arch, "s390x")) {
- test_batch(s390x_tests);
+ test_batch(s390x_tests, g_test_slow());
}
ret = g_test_run();
boot_sector_cleanup(disk);
--
2.14.3
next prev parent reply other threads:[~2017-12-15 10:17 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-15 10:16 [Qemu-devel] [PATCH 0/4] Improvements to pxe-test David Gibson
2017-12-15 10:16 ` [Qemu-devel] [PATCH 1/4] tests/pxe-test: Remove unnecessary special case test functions David Gibson
2017-12-15 10:54 ` Thomas Huth
2017-12-15 10:16 ` [Qemu-devel] [PATCH 2/4] tests/pxe-test: Use table of testcases rather than open-coding David Gibson
2017-12-15 11:08 ` Thomas Huth
2017-12-15 12:54 ` David Gibson
2017-12-15 10:16 ` David Gibson [this message]
2017-12-15 11:10 ` [Qemu-devel] [PATCH 3/4] tests/pxe-test: Test net booting over IPv6 in some cases Thomas Huth
2017-12-15 12:56 ` David Gibson
2017-12-15 14:15 ` [Qemu-devel] [Qemu-ppc] " Thomas Huth
2017-12-15 10:16 ` [Qemu-devel] [PATCH 4/4] tests/pxe-test: Add some extra tests David Gibson
2017-12-15 10:51 ` Thomas Huth
2017-12-15 12:59 ` David Gibson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171215101651.13911-4-david@gibson.dropbear.id.au \
--to=david@gibson.dropbear.id.au \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).