aboutsummaryrefslogtreecommitdiffstats
path: root/test/net/http/test_http.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/net/http/test_http.rb')
-rw-r--r--test/net/http/test_http.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/net/http/test_http.rb b/test/net/http/test_http.rb
index 5741d99f28..49ffc5e9ea 100644
--- a/test/net/http/test_http.rb
+++ b/test/net/http/test_http.rb
@@ -628,6 +628,7 @@ class TestNetHTTPLocalBind < Test::Unit::TestCase
include TestNetHTTPUtils
def test_bind_to_local_host
+ skip "cannot cross between network interfaces on Windows, so skip this test until we find better test." if /mswin|mingw/ =~ RUBY_PLATFORM
@server.mount_proc('/show_ip') { |req, res| res.body = req.remote_ip }
http = Net::HTTP.new(config('host'), config('port'))
@@ -640,6 +641,7 @@ class TestNetHTTPLocalBind < Test::Unit::TestCase
end
def test_bind_to_local_port
+ skip "cannot cross between network interfaces on Windows, so skip this test until we find better test." if /mswin|mingw/ =~ RUBY_PLATFORM
@server.mount_proc('/show_port') { |req, res| res.body = req.peeraddr[1].to_s }
http = Net::HTTP.new(config('host'), config('port'))