1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/socket/test_tcp.rb
mame a0895f84b0 * test/socket/test_tcp.rb (test_recvfrom): replace an irrelevant test
for old behavior.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18191 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-07-23 14:25:32 +00:00

24 lines
518 B
Ruby

begin
require "socket"
require "test/unit"
rescue LoadError
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
c.write "foo"
c.close
}
addr = svr.addr
sock = TCPSocket.open(addr[2], addr[1])
assert_equal(["foo", nil], sock.recvfrom(0x10000))
ensure
th.kill
th.join
end
end if defined?(TCPSocket)