diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-15 11:04:30 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-15 11:04:30 +0000 |
commit | 49f00d5d2dcc70fffa2501f639a8ef3ce1763d81 (patch) | |
tree | eadc277453d5571fb6b55e199ddf08bb32c0a4d1 /test/net/http/test_https_proxy.rb | |
parent | f2bd108d8df6def3ff39674337eb4d40cfb25e3b (diff) |
close socket.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/net/http/test_https_proxy.rb')
-rw-r--r-- | test/net/http/test_https_proxy.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/net/http/test_https_proxy.rb b/test/net/http/test_https_proxy.rb index 66ca3ddd9b..7f4e96e63c 100644 --- a/test/net/http/test_https_proxy.rb +++ b/test/net/http/test_https_proxy.rb @@ -25,9 +25,15 @@ class HTTPSProxyTest < Test::Unit::TestCase "\r\n", proxy_request, "[ruby-dev:25673]") + sock.close } ensure - t.join if t + if t + begin + t.join + rescue EOFError + end + end end end if defined?(OpenSSL) |