mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
catch EOFError in a thread.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14240 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
49f00d5d2d
commit
0884b1d8b1
1 changed files with 5 additions and 7 deletions
|
@ -14,7 +14,10 @@ class HTTPSProxyTest < Test::Unit::TestCase
|
||||||
http = proxy.new("foo.example.org", 8000)
|
http = proxy.new("foo.example.org", 8000)
|
||||||
http.use_ssl = true
|
http.use_ssl = true
|
||||||
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
||||||
|
begin
|
||||||
http.start
|
http.start
|
||||||
|
rescue EOFError
|
||||||
|
end
|
||||||
}
|
}
|
||||||
sock = serv.accept
|
sock = serv.accept
|
||||||
proxy_request = sock.gets("\r\n\r\n")
|
proxy_request = sock.gets("\r\n\r\n")
|
||||||
|
@ -28,12 +31,7 @@ class HTTPSProxyTest < Test::Unit::TestCase
|
||||||
sock.close
|
sock.close
|
||||||
}
|
}
|
||||||
ensure
|
ensure
|
||||||
if t
|
t.join if t
|
||||||
begin
|
|
||||||
t.join
|
|
||||||
rescue EOFError
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end if defined?(OpenSSL)
|
end if defined?(OpenSSL)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue