aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_process.rb
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-05 22:26:36 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-05 22:26:36 +0000
commit482aef5135a539cd9ff3e912c904ec892681859e (patch)
treea0e49a60d13e0663117f4837429e56316402eddd /test/ruby/test_process.rb
parent27a21c0d4162a5bf614a591da6d2d01f7bbf57dc (diff)
downloadruby-482aef5135a539cd9ff3e912c904ec892681859e.tar.gz
test/ruby/test_process.rb (test_many_args): increase timeout
Some machines take a while to run this test, apparently. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51494 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_process.rb')
-rw-r--r--test/ruby/test_process.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 2a5a586353..49cfed8381 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -2175,7 +2175,7 @@ EOS
def test_many_args
bug11418 = '[ruby-core:70251] [Bug #11418]'
- assert_in_out_err([], <<-"end;", ["x"]*256, [], bug11418)
+ assert_in_out_err([], <<-"end;", ["x"]*256, [], bug11418, timeout: 60)
bin = "#{EnvUtil.rubybin}"
args = Array.new(256) {"x"}
GC.stress = true