summaryrefslogtreecommitdiffstats
path: root/test/socket
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-04 05:19:26 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-04 05:19:26 +0000
commit3c755555bf1b17dc90bc647e127b75fe5ad80493 (patch)
treef1d88c2bbb4d714124d783920b0180ec6de33aba /test/socket
parent802c31d0f64ee7315c38c82ed10f6269a593979d (diff)
downloadruby-3c755555bf1b17dc90bc647e127b75fe5ad80493.tar.gz
ruby-3c755555bf1b17dc90bc647e127b75fe5ad80493.tar.xz
ruby-3c755555bf1b17dc90bc647e127b75fe5ad80493.zip
merges r20442 from trunk into ruby_1_9_1.
* test/socket/test_tcp.rb (test_recvfrom): already can run on mswin32. * test/socket/test_tcp.rb (test_recvfrom, test_encoding): use IP address instead of host name. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20485 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/socket')
-rw-r--r--test/socket/test_tcp.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/socket/test_tcp.rb b/test/socket/test_tcp.rb
index cc744709a..7404bc370 100644
--- a/test/socket/test_tcp.rb
+++ b/test/socket/test_tcp.rb
@@ -7,7 +7,6 @@ end
class TestTCPSocket < Test::Unit::TestCase
def test_recvfrom
-assert false, "TODO: doesn't work on mswin32/64" if /mswin/ =~ RUBY_PLATFORM
svr = TCPServer.new("localhost", 0)
th = Thread.new {
c = svr.accept
@@ -15,7 +14,7 @@ assert false, "TODO: doesn't work on mswin32/64" if /mswin/ =~ RUBY_PLATFORM
c.close
}
addr = svr.addr
- sock = TCPSocket.open(addr[2], addr[1])
+ sock = TCPSocket.open(addr[3], addr[1])
assert_equal(["foo", nil], sock.recvfrom(0x10000))
ensure
th.kill if th
@@ -30,7 +29,7 @@ assert false, "TODO: doesn't work on mswin32/64" if /mswin/ =~ RUBY_PLATFORM
c.close
}
addr = svr.addr
- sock = TCPSocket.open(addr[2], addr[1])
+ sock = TCPSocket.open(addr[3], addr[1])
assert_equal(true, sock.binmode?)
s = sock.gets
assert_equal("foo\r\n", s)