aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-03 00:48:29 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-03 00:48:29 +0000
commit5d9eae4abbbefd10cf78e181f9dc0839bf9b1b4d (patch)
treee8361fe6d6bf320539116910012f62a02e8e84ec /ChangeLog
parent25e8bfce581b375614ecb1ee57e1839bcff6ae96 (diff)
downloadruby-5d9eae4abbbefd10cf78e181f9dc0839bf9b1b4d.tar.gz
* 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
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3ba7cd6ec9..5ffca2b7d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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