changeset 626:5f9dfe85a1f2

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.
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 08 Jul 2015 16:47:08 +0300
parents 0016fe31be13
children cb35a9ec4428
files stream_proxy_bind.t
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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' );