diff proxy.t @ 1171:cdbdb75cf194

Tests: dropped try_run() checks for hosts without IPv6 support. Tests for geoip are special as they depend on IPv6 support in the GeoIP library.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 04 May 2017 14:31:10 +0300
parents cf14cfe9ec8c
children 766bcbb632ee
line wrap: on
line diff
--- a/proxy.t
+++ b/proxy.t
@@ -80,9 +80,6 @@ like(http_get('/var?b=127.0.0.1:' . port
 	'proxy with variables');
 like(http_get('/var?b=u/'), qr/SEE-THIS/, 'proxy with variables to upstream');
 
-SKIP: {
-skip 'no ipv6', 1 unless socket(my $s, &AF_INET6, &SOCK_STREAM, 0);
-
 TODO: {
 todo_skip 'heap-buffer-overflow', 1
 	unless $ENV{TEST_NGINX_UNSAFE} or $t->has_version('1.11.0');
@@ -91,8 +88,6 @@ ok(http_get("/var?b=[::]"), 'proxy with 
 
 }
 
-}
-
 like(http_get('/timeout'), qr/200 OK/, 'proxy connect timeout');
 
 ###############################################################################