* 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/trunk@6650 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
449ca256cc
commit
97094af3ca
@ -50,12 +50,6 @@ tcps = TCPServer.new("0.0.0.0", port)
|
||||
ssls = OpenSSL::SSL::SSLServer.new(tcps, ctx)
|
||||
ssls.start_immediately = start_immediately
|
||||
|
||||
Thread.start{
|
||||
while true
|
||||
$stdin.gets || exit
|
||||
end
|
||||
}
|
||||
|
||||
$stdout.sync = true
|
||||
$stdout.puts Process.pid
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user