summaryrefslogtreecommitdiff
path: root/test/openssl/test_ssl.rb
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-16 05:56:44 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-16 05:56:44 +0000
commit5fb266b5c0a75d542b462eba1883d4908b7cea58 (patch)
treec68b4426fd5b43f99dd057d7a146180581a9c912 /test/openssl/test_ssl.rb
parentcc01e4ee921887bae0a92f00baf38fc550681ecd (diff)
* test/openssl/ssl_server.rb, test/openssl/test_ssl.rb: workaround to
terminate child process. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6650 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/openssl/test_ssl.rb')
-rw-r--r--test/openssl/test_ssl.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/openssl/test_ssl.rb b/test/openssl/test_ssl.rb
index 55f7920313..e13ccbfb14 100644
--- a/test/openssl/test_ssl.rb
+++ b/test/openssl/test_ssl.rb
@@ -70,9 +70,8 @@ class OpenSSL::TestSSL < Test::Unit::TestCase
block.call(server)
ensure
if server
- server.close_write
- Process.kill(:TERM, pid) rescue nil
- Process.waitpid(pid)
+ Process.kill(:KILL, pid)
+ server.close
end
end
end