summaryrefslogtreecommitdiff
path: root/test/openssl/utils.rb
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2019-06-07 23:33:23 +0900
committerYusuke Endoh <mame@ruby-lang.org>2019-06-07 23:37:55 +0900
commit75751dca2b9f573db923cecd9767e9174fb69a98 (patch)
tree6e0364e834f04a4398abb48fc0b76db1c5dd0257 /test/openssl/utils.rb
parentb76630f73e8362d3072bfa7178471ddc5d21c235 (diff)
test/openssl/utils.rb: Extend the timeout for armv7l
https://rubyci.org/logs/rubyci.s3.amazonaws.com/scw-9d6766/ruby-master/log/20190607T051708Z.fail.html.gz
Diffstat (limited to 'test/openssl/utils.rb')
-rw-r--r--test/openssl/utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/openssl/utils.rb b/test/openssl/utils.rb
index f3f4bf3f56..bf19163052 100644
--- a/test/openssl/utils.rb
+++ b/test/openssl/utils.rb
@@ -266,7 +266,7 @@ class OpenSSL::SSLTestCase < OpenSSL::TestCase
pend = nil
threads.each { |th|
begin
- timeout = EnvUtil.apply_timeout_scale(10)
+ timeout = EnvUtil.apply_timeout_scale(30)
th.join(timeout) or
th.raise(RuntimeError, "[start_server] thread did not exit in #{ timeout } secs")
rescue (defined?(MiniTest::Skip) ? MiniTest::Skip : Test::Unit::PendedError)