summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-29 04:48:23 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-29 04:48:23 +0000
commit63aaee923bdaab7b85fbbafa199b767e15523646 (patch)
treecd480d5c20677f0d79a0d5ce245736e8d6023bcc /test
parent952b218ffe78b7319c5e02887e7dd30d46dbc40e (diff)
test_notimp.rb: loosen timeout
to prevent random failures like https://rubyci.org/logs/rubyci.s3.amazonaws.com/debian8/ruby-trunk/log/20181229T033003Z.fail.html.gz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66628 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_notimp.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_notimp.rb b/test/ruby/test_notimp.rb
index ddebb657bf..1f36030991 100644
--- a/test/ruby/test_notimp.rb
+++ b/test/ruby/test_notimp.rb
@@ -36,7 +36,7 @@ class TestNotImplement < Test::Unit::TestCase
proc {`ps -l #{pid}`}
end
assert_nothing_raised(Timeout::Error, ps) do
- Timeout.timeout(EnvUtil.apply_timeout_scale(5)) {
+ Timeout.timeout(EnvUtil.apply_timeout_scale(20)) {
pid = fork {}
Process.wait pid
pid = nil