summaryrefslogtreecommitdiff
path: root/trunk/test/socket/test_tcp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/test/socket/test_tcp.rb')
-rw-r--r--trunk/test/socket/test_tcp.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/trunk/test/socket/test_tcp.rb b/trunk/test/socket/test_tcp.rb
deleted file mode 100644
index 3aa7be82c3..0000000000
--- a/trunk/test/socket/test_tcp.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-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)