mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/openssl/test_ssl.rb: add workaround for Cygwin.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6674 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5f06ad0e20
commit
a061fdf407
1 changed files with 5 additions and 1 deletions
|
@ -70,7 +70,7 @@ class OpenSSL::TestSSL < Test::Unit::TestCase
|
||||||
block.call(server)
|
block.call(server)
|
||||||
ensure
|
ensure
|
||||||
if server
|
if server
|
||||||
Process.kill(:KILL, pid)
|
Process.kill(:KILL, pid) if pid > 0
|
||||||
server.close
|
server.close
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -78,6 +78,10 @@ class OpenSSL::TestSSL < Test::Unit::TestCase
|
||||||
|
|
||||||
def starttls(ssl)
|
def starttls(ssl)
|
||||||
ssl.puts("STARTTLS")
|
ssl.puts("STARTTLS")
|
||||||
|
|
||||||
|
sleep 1 # When this line is eliminated, process on Cygwin blocks
|
||||||
|
# forever at ssl.connect. But I don't know why it does.
|
||||||
|
|
||||||
ssl.connect
|
ssl.connect
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue