summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2013-04-18 15:40:55 -0400
committerDan Winship <danw@gnome.org>2013-04-24 11:39:50 -0400
commit46f40a5e422b712fea4413f596af89998723bd87 (patch)
treee5db2d9c7ceedc2ddf25ca0dbb83c34ebd133074 /tests
parentd3b3e50ce850b2357dda3b2b046650fc1e1d30b0 (diff)
downloadlibsoup-46f40a5e422b712fea4413f596af89998723bd87.tar.gz
libsoup-46f40a5e422b712fea4413f596af89998723bd87.tar.bz2
libsoup-46f40a5e422b712fea4413f596af89998723bd87.zip
misc-test: skip the IPv6 server test if there's no IPv6 support
https://bugzilla.gnome.org/show_bug.cgi?id=698220
Diffstat (limited to 'tests')
-rw-r--r--tests/misc-test.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/misc-test.c b/tests/misc-test.c
index a9150a11..39ee960b 100644
--- a/tests/misc-test.c
+++ b/tests/misc-test.c
@@ -1110,6 +1110,11 @@ do_ipv6_test (void)
ipv6_server = soup_server_new (SOUP_SERVER_INTERFACE, ipv6_addr,
NULL);
g_object_unref (ipv6_addr);
+ if (!ipv6_server) {
+ debug_printf (1, " skipping due to lack of IPv6 support\n");
+ return;
+ }
+
soup_server_add_handler (ipv6_server, NULL, ipv6_server_callback, NULL, NULL);
soup_server_run_async (ipv6_server);