misc-test: skip the IPv6 server test if there's no IPv6 support
authorDan Winship <danw@gnome.org>
Thu, 18 Apr 2013 19:40:55 +0000 (15:40 -0400)
committerDan Winship <danw@gnome.org>
Thu, 18 Apr 2013 19:41:51 +0000 (15:41 -0400)
https://bugzilla.gnome.org/show_bug.cgi?id=698220

tests/misc-test.c

index a9150a1..39ee960 100644 (file)
@@ -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);