mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/openssl/test_ssl.rb (OpenSSL::TestSSL#test_verify_result):
shouldn't use same server for respective tests, because the 1st test sometimes kills the server main loop silently. [Bug #9881] [ruby-dev:48266] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46325 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
25e8bfce58
commit
5d9eae4abb
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
Tue Jun 3 09:45:13 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* test/openssl/test_ssl.rb (OpenSSL::TestSSL#test_verify_result):
|
||||
shouldn't use same server for respective tests, because the 1st
|
||||
test sometimes kills the server main loop silently.
|
||||
[Bug #9881] [ruby-dev:48266]
|
||||
|
||||
Tue Jun 3 01:34:59 2014 Zachary Scott <e@zzak.io>
|
||||
|
||||
* README.EXT: [DOC] Add rb_call_super when subclassing from @robin850
|
||||
|
|
|
@ -251,7 +251,9 @@ class OpenSSL::TestSSL < OpenSSL::SSLTestCase
|
|||
ensure
|
||||
ssl.close
|
||||
end
|
||||
}
|
||||
|
||||
start_server(PORT, OpenSSL::SSL::VERIFY_NONE, true){|server, port|
|
||||
sock = TCPSocket.new("127.0.0.1", port)
|
||||
ctx = OpenSSL::SSL::SSLContext.new
|
||||
ctx.set_params(
|
||||
|
@ -268,7 +270,9 @@ class OpenSSL::TestSSL < OpenSSL::SSLTestCase
|
|||
ensure
|
||||
ssl.close
|
||||
end
|
||||
}
|
||||
|
||||
start_server(PORT, OpenSSL::SSL::VERIFY_NONE, true){|server, port|
|
||||
sock = TCPSocket.new("127.0.0.1", port)
|
||||
ctx = OpenSSL::SSL::SSLContext.new
|
||||
ctx.set_params(
|
||||
|
|
Loading…
Reference in a new issue