summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-29 01:53:10 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-29 01:53:10 +0000
commitf9dc0fb649e66cc0791d1b9c265644ed0fea82fa (patch)
treeeefd74f592d0622ce8ed1030910d0989aa58271a /test
parentbfd1980db2f482670430577e04f0add5960313ee (diff)
test_iseq_load.rb: increase timeout for stressful roundtrip
Even 60s is short for our CI environments: https://rubyci.org/logs/rubyci.s3.amazonaws.com/amazon/ruby-trunk/log/20181228T153002Z.fail.html.gz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66626 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/-ext-/iseq_load/test_iseq_load.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/-ext-/iseq_load/test_iseq_load.rb b/test/-ext-/iseq_load/test_iseq_load.rb
index 45bb742c2a..cf60fd9ddd 100644
--- a/test/-ext-/iseq_load/test_iseq_load.rb
+++ b/test/-ext-/iseq_load/test_iseq_load.rb
@@ -17,7 +17,7 @@ class TestIseqLoad < Test::Unit::TestCase
end
def test_stressful_roundtrip
- assert_separately(%w[-r-test-/iseq_load], "#{<<~"begin;"}\n#{<<~'end;;'}", timeout: 60)
+ assert_separately(%w[-r-test-/iseq_load], "#{<<~"begin;"}\n#{<<~'end;;'}", timeout: 120)
begin;
ISeq = RubyVM::InstructionSequence
def assert_iseq_roundtrip(src, line=caller_locations(1,1)[0].lineno+1)