aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-10 23:32:32 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-10 23:32:32 +0000
commit886bed6eb875e7a825ff722989ef2cf108f329d3 (patch)
tree6f6c6999dfa886427c4f688888bc6365d03a1c83 /test
parent325fd389018897bd156837639675517ef3b7dea5 (diff)
downloadruby-886bed6eb875e7a825ff722989ef2cf108f329d3.tar.gz
test_iseq_load.rb: increase timeout
It's timed out on CI like this https://gist.github.com/ko1/33df53d78fbec9e4156c017eeae023bb. I'm not sure how long it would take (it finishes immediately on my machine), so I chose 600s because r64271 says it took 635s on mswinci. (probably it's improved by the commit, though.) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64278 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 86db04f16d..f4928894e7 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], <<-'end;;')
+ assert_separately(%w[-r-test-/iseq_load], <<-'end;;', timeout: 600)
ISeq = RubyVM::InstructionSequence
def assert_iseq_roundtrip(src, line=caller_locations(1,1)[0].lineno+1)
a = ISeq.compile(src, __FILE__, __FILE__, line).to_a