* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@20442 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
df5e7b9dbe
commit
a01e1cfb5b
@ -7,7 +7,6 @@ end
|
|||||||
|
|
||||||
class TestTCPSocket < Test::Unit::TestCase
|
class TestTCPSocket < Test::Unit::TestCase
|
||||||
def test_recvfrom
|
def test_recvfrom
|
||||||
assert false, "TODO: doesn't work on mswin32/64" if /mswin/ =~ RUBY_PLATFORM
|
|
||||||
svr = TCPServer.new("localhost", 0)
|
svr = TCPServer.new("localhost", 0)
|
||||||
th = Thread.new {
|
th = Thread.new {
|
||||||
c = svr.accept
|
c = svr.accept
|
||||||
@ -15,7 +14,7 @@ assert false, "TODO: doesn't work on mswin32/64" if /mswin/ =~ RUBY_PLATFORM
|
|||||||
c.close
|
c.close
|
||||||
}
|
}
|
||||||
addr = svr.addr
|
addr = svr.addr
|
||||||
sock = TCPSocket.open(addr[2], addr[1])
|
sock = TCPSocket.open(addr[3], addr[1])
|
||||||
assert_equal(["foo", nil], sock.recvfrom(0x10000))
|
assert_equal(["foo", nil], sock.recvfrom(0x10000))
|
||||||
ensure
|
ensure
|
||||||
th.kill if th
|
th.kill if th
|
||||||
@ -30,7 +29,7 @@ assert false, "TODO: doesn't work on mswin32/64" if /mswin/ =~ RUBY_PLATFORM
|
|||||||
c.close
|
c.close
|
||||||
}
|
}
|
||||||
addr = svr.addr
|
addr = svr.addr
|
||||||
sock = TCPSocket.open(addr[2], addr[1])
|
sock = TCPSocket.open(addr[3], addr[1])
|
||||||
assert_equal(true, sock.binmode?)
|
assert_equal(true, sock.binmode?)
|
||||||
s = sock.gets
|
s = sock.gets
|
||||||
assert_equal("foo\r\n", s)
|
assert_equal("foo\r\n", s)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user