From 21477e408fc0e34f465aa986ecc2fe15955da912 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 12 Mar 2014 18:13:19 -0400 Subject: [PATCH] Skip http/ipv6_for_domain test when we have no ipv6 support --- test/regress_http.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/regress_http.c b/test/regress_http.c index ca7d5155..98291500 100644 --- a/test/regress_http.c +++ b/test/regress_http.c @@ -962,6 +962,10 @@ http_connection_test_(struct basic_test_data *data, int persistent, const char * test_ok = 0; http = http_setup(&port, data->base, ipv6); + if (!http && ipv6) { + tt_skip(); + } + tt_assert(http); evcon = evhttp_connection_base_new(data->base, dnsbase, address, port); tt_assert(evcon);