summaryrefslogtreecommitdiff
path: root/test/ruby/test_signal.rb
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-13 03:15:04 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-13 03:15:04 +0000
commit83b737d8b2e02447d558d5262ec110f2cb129d32 (patch)
treea7bf49a4d862053e87834263ec1ee3bbf3d0108a /test/ruby/test_signal.rb
parent20d3e1c8cf0f5ad76a7a21e99850930394258a45 (diff)
test/ruby/test_signal.rb (test_sigchld_ignore): increase timeout
I suspect CI test machine was overloaded at the time, or swapping at the time due to parallel build with mjit. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_signal.rb')
-rw-r--r--test/ruby/test_signal.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_signal.rb b/test/ruby/test_signal.rb
index 549424a344..b8a20d945c 100644
--- a/test/ruby/test_signal.rb
+++ b/test/ruby/test_signal.rb
@@ -350,7 +350,7 @@ class TestSignal < Test::Unit::TestCase
zombies = pids.dup
assert_nil r.read(1), 'children dead'
- Timeout.timeout(3) do
+ Timeout.timeout(10) do
zombies.delete_if do |pid|
begin
Process.kill(0, pid)