summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-27 02:01:41 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-27 02:01:41 +0000
commitb3a9fd0d1f64680cc95bf6f26285e399306c3f1f (patch)
treeadeed5593841a3a292ac01f791941c8f28580cc9 /test
parent9f5a468cf95779493ba6277083e59aa0c028c449 (diff)
apply timeout scale
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58914 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 a9ab8f328f..ddebb657bf 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(5) {
+ Timeout.timeout(EnvUtil.apply_timeout_scale(5)) {
pid = fork {}
Process.wait pid
pid = nil