summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-15 11:12:20 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-15 11:12:20 +0000
commit408df9fc63dd3fc00422145c414fde91563d45f1 (patch)
tree4282ac83f1eee47ba43006bde23685ce5af5e7ed /test
parent83ed1455ac29f3c5aeeec37470fcbdca33fd3130 (diff)
downloadruby-408df9fc63dd3fc00422145c414fde91563d45f1.tar.gz
ruby-408df9fc63dd3fc00422145c414fde91563d45f1.tar.xz
ruby-408df9fc63dd3fc00422145c414fde91563d45f1.zip
catch EOFError in a thread.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14240 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/net/http/test_https_proxy.rb12
1 files changed, 5 insertions, 7 deletions
diff --git a/test/net/http/test_https_proxy.rb b/test/net/http/test_https_proxy.rb
index 7f4e96e63..4f2634233 100644
--- a/test/net/http/test_https_proxy.rb
+++ b/test/net/http/test_https_proxy.rb
@@ -14,7 +14,10 @@ class HTTPSProxyTest < Test::Unit::TestCase
http = proxy.new("foo.example.org", 8000)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
- http.start
+ begin
+ http.start
+ rescue EOFError
+ end
}
sock = serv.accept
proxy_request = sock.gets("\r\n\r\n")
@@ -28,12 +31,7 @@ class HTTPSProxyTest < Test::Unit::TestCase
sock.close
}
ensure
- if t
- begin
- t.join
- rescue EOFError
- end
- end
+ t.join if t
end
end if defined?(OpenSSL)