diff options
author | Dan Winship <danw@gnome.org> | 2013-04-18 15:40:55 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2013-04-24 11:39:50 -0400 |
commit | 46f40a5e422b712fea4413f596af89998723bd87 (patch) | |
tree | e5db2d9c7ceedc2ddf25ca0dbb83c34ebd133074 /tests | |
parent | d3b3e50ce850b2357dda3b2b046650fc1e1d30b0 (diff) | |
download | libsoup-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.c | 5 |
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); |