Actions
Bug #464
closed`Errno::ENOTCONN: Socket is not connected' in test/openssl/test_ssl.rb
Description
=begin
test/openssl/test_ssl.rbでも同様にErrno::ENOTCONNになります。
- Error:
test_client_auth(OpenSSL::TestSSL):
Errno::ENOTCONN: Socket is not connected
/Users/chkbuild/chkbuild/tmp/build/ruby-trunk/20080821T033314/ruby/test/openssl/test_ssl.rb:132:inshutdown' /Users/chkbuild/chkbuild/tmp/build/ruby-trunk/20080821T033314/ruby/test/openssl/test_ssl.rb:132:in
start_server'
/Users/chkbuild/chkbuild/tmp/build/ruby-trunk/20080821T033314/ruby/test/openssl/test_ssl.rb:231:in `test_client_auth'
以下パッチです。
Index: test/openssl/test_ssl.rb¶
--- test/openssl/test_ssl.rb (revision 18748)
+++ test/openssl/test_ssl.rb (working copy)
@@ -129,7 +129,14 @@
block.call(server, port.to_i)
ensure
begin
-
tcps.shutdown if (tcps)
-
begin
-
tcps.shutdown
-
rescue Errno::ENOTCONN
-
# when `Errno::ENOTCONN: Socket is not connected' on some platforms,
-
# call #close instead of #shutdown.
-
tcps.close
-
tcps = nil
-
end if (tcps) if (server) server.join(5) if server.alive?
=end
Updated by znz (Kazuhiro NISHIYAMA) about 16 years ago
- Status changed from Open to Closed
=begin
r18777
=end
Actions
Like0
Like0