diff options
| author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-12-12 06:56:08 +0000 |
|---|---|---|
| committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-12-12 06:56:08 +0000 |
| commit | 5ece805bc0efd7bebc45aca136aab1fc218822f0 (patch) | |
| tree | 44f54db7adccd9e528678be9ff238f985a7b0fa8 | |
| parent | 014623db85535502613ace031857000b06543e90 (diff) | |
| download | ruby-5ece805bc0efd7bebc45aca136aab1fc218822f0.tar.gz ruby-5ece805bc0efd7bebc45aca136aab1fc218822f0.tar.xz ruby-5ece805bc0efd7bebc45aca136aab1fc218822f0.zip | |
* test/openssl/test_ssl.rb (test_parallel): call GC.start to close
unused files. [ruby-dev:27981]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9680 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | test/openssl/test_ssl.rb | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Mon Dec 12 15:54:56 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * test/openssl/test_ssl.rb (test_parallel): call GC.start to close + unused files. [ruby-dev:27981] + Mon Dec 12 00:33:56 2005 Yukihiro Matsumoto <matz@ruby-lang.org> * ext/digest/digest.c (rb_digest_base_s_digest): add volatile to diff --git a/test/openssl/test_ssl.rb b/test/openssl/test_ssl.rb index e80f32f23..ec1bf6b8c 100644 --- a/test/openssl/test_ssl.rb +++ b/test/openssl/test_ssl.rb @@ -212,6 +212,7 @@ class OpenSSL::TestSSL < Test::Unit::TestCase end def test_parallel + GC.start start_server(PORT, OpenSSL::SSL::VERIFY_NONE, true){|s, p| ssls = [] 10.times{ |
