aboutsummaryrefslogtreecommitdiffstats
path: root/test/racc/test_racc_command.rb
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2019-06-19 23:10:40 +0900
committerYusuke Endoh <mame@ruby-lang.org>2019-06-19 23:10:40 +0900
commit65944e96d39a8ae3602751f49cb337335b2c6c45 (patch)
tree4431f5cd1ed96fbbf04d3c928240de663fc3ac6b /test/racc/test_racc_command.rb
parent2abe548f356756788db7f893b221938a5f775ccd (diff)
downloadruby-65944e96d39a8ae3602751f49cb337335b2c6c45.tar.gz
test/racc/test_racc_command.rb: Extend the timeout
test_opal, test_ruby18, and test_ruby22 are slow tests. https://rubyci.org/logs/rubyci.s3.amazonaws.com/scw-ad7f67/ruby-master/log/20190619T105405Z.fail.html.gz
Diffstat (limited to 'test/racc/test_racc_command.rb')
-rw-r--r--test/racc/test_racc_command.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/racc/test_racc_command.rb b/test/racc/test_racc_command.rb
index 22915385ba..fcbe8471e7 100644
--- a/test/racc/test_racc_command.rb
+++ b/test/racc/test_racc_command.rb
@@ -164,13 +164,13 @@ module Racc
# .y files from `parser` gem
def test_ruby18
- assert_compile 'ruby18.y'
+ assert_compile 'ruby18.y', [], timeout: 60
assert_debugfile 'ruby18.y', []
# assert_output_unchanged 'ruby18.y'
end
def test_ruby22
- assert_compile 'ruby22.y'
+ assert_compile 'ruby22.y', [], timeout: 60
assert_debugfile 'ruby22.y', []
# assert_output_unchanged 'ruby22.y'
end
@@ -186,7 +186,7 @@ module Racc
# .y file from opal gem
def test_opal
- assert_compile 'opal.y'
+ assert_compile 'opal.y', [], timeout: 60
assert_debugfile 'opal.y', []
# assert_output_unchanged 'opal.y'
end