1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/net/ftp/test_ftp.rb (create_ftp_server): Don't ignore

exceptions on server thread.
  Delete read_timeout method call to fix NoMethodError.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2014-11-10 14:40:00 +00:00
parent 0d70c707ae
commit 9bf5457481
2 changed files with 15 additions and 13 deletions

View file

@ -1,3 +1,9 @@
Mon Nov 10 23:34:13 2014 Tanaka Akira <akr@fsij.org>
* test/net/ftp/test_ftp.rb (create_ftp_server): Don't ignore
exceptions on server thread.
Delete read_timeout method call to fix NoMethodError.
Mon Nov 10 20:20:53 2014 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (rb_w32_read): retry with reduced length if cannot to

View file

@ -773,7 +773,6 @@ class FTPTest < Test::Unit::TestCase
def create_ftp_server(sleep_time = nil)
server = TCPServer.new(SERVER_ADDR, 0)
@thread = Thread.start do
begin
if sleep_time
sleep(sleep_time)
end
@ -781,13 +780,10 @@ class FTPTest < Test::Unit::TestCase
begin
yield(sock)
sock.shutdown(Socket::SHUT_WR)
sock.read_timeout = 1
sock.read unless sock.eof?
ensure
sock.close
end
rescue
end
end
def server.port
addr[1]