ruby-changes:24409
From: usa <ko1@a...>
Date: Thu, 19 Jul 2012 13:29:24 +0900 (JST)
Subject: [ruby-changes:24409] usa:r36460 (trunk): * test/net/http/test_http.rb (TestNetHTTPLocalBind#test_bind_to_local*):
usa 2012-07-19 13:29:14 +0900 (Thu, 19 Jul 2012) New Revision: 36460 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=36460 Log: * test/net/http/test_http.rb (TestNetHTTPLocalBind#test_bind_to_local*): re-enable the tests because now it's OK on windows. Modified files: trunk/ChangeLog trunk/test/net/http/test_http.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 36459) +++ ChangeLog (revision 36460) @@ -1,3 +1,8 @@ +Thu Jul 19 13:28:03 2012 NAKAMURA Usaku <usa@r...> + + * test/net/http/test_http.rb (TestNetHTTPLocalBind#test_bind_to_local*): + re-enable the tests because now it's OK on windows. + Thu Jul 19 13:26:25 2012 NAKAMURA Usaku <usa@r...> * ext/socket/extconf.rb: now enable IPv6 by default on mswin. Index: test/net/http/test_http.rb =================================================================== --- test/net/http/test_http.rb (revision 36459) +++ test/net/http/test_http.rb (revision 36460) @@ -628,7 +628,6 @@ 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')) @@ -641,7 +640,6 @@ 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')) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/