diff options
author | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-12-12 00:38:49 +0000 |
---|---|---|
committer | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-12-12 00:38:49 +0000 |
commit | 03bf85f28d636220ffec83f9ee7d1ba78503bdc1 (patch) | |
tree | b34461451b3599ab02ea4a6e22929c8a1c17f4a6 /bootstraptest/runner.rb | |
parent | e4922abde34167da6d97f826100dbd8128a2433a (diff) |
bootstraptest/runner.rb: increase timeout for --jit-wait
because test_io.rb:33 randomly fails
http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/1519055
checking MJIT.enabled? on driver might not make sense for target, but as
long as the CI is -DMJIT_FORCE_ENABLE, I believe it works for now.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66344 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest/runner.rb')
-rwxr-xr-x | bootstraptest/runner.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb index feb8ada5c1..58619fae7e 100755 --- a/bootstraptest/runner.rb +++ b/bootstraptest/runner.rb @@ -367,6 +367,7 @@ def assert_normal_exit(testsrc, *rest, timeout: nil, **opt) end def assert_finish(timeout_seconds, testsrc, message = '') + timeout_seconds *= 3 if RubyVM::MJIT.enabled? # for --jit-wait newtest show_progress(message) { faildesc = nil |