From 49f00d5d2dcc70fffa2501f639a8ef3ce1763d81 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 15 Dec 2007 11:04:30 +0000 Subject: close socket. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/net/http/test_https_proxy.rb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'test/net/http/test_https_proxy.rb') 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) -- cgit v1.2.3