# HG changeset patch # User Sergey Kandaurov # Date 1436363228 -10800 # Node ID 5f9dfe85a1f24e5c774f2dba647e0a83671676b8 # Parent 0016fe31be131b3f1d13c587ab92a96b9608792d Tests: skipped proxy_bind tests on win32. On some versions, even though '127.0.0.2' exists by default, connecting from a bound local socket leads to connection timeout. diff --git a/stream_proxy_bind.t b/stream_proxy_bind.t --- a/stream_proxy_bind.t +++ b/stream_proxy_bind.t @@ -22,6 +22,7 @@ use Test::Nginx; select STDERR; $| = 1; select STDOUT; $| = 1; +plan(skip_all => 'win32') if $^O eq 'MSWin32'; plan(skip_all => '127.0.0.2 local address required') unless defined IO::Socket::INET->new( LocalAddr => '127.0.0.2' );