summaryrefslogtreecommitdiff
path: root/test/ripper
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-15 18:56:34 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-15 18:56:34 +0000
commit309042d8c12a8bc31367160ea1d985fb59845b96 (patch)
tree7742858c8edf018b49cd71bdfb84e82c4ed94265 /test/ripper
parent3d3ff9f324e507e1c4e2ffab60e1ea5698f62ff8 (diff)
test/ripper/test_parser_events.rb (test_block_variables): bump RLIMIT_AS again
I still seem to need more memory for parallel tests with MJIT... git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64381 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ripper')
-rw-r--r--test/ripper/test_parser_events.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ripper/test_parser_events.rb b/test/ripper/test_parser_events.rb
index 215ec1cfc1..a420bfbf81 100644
--- a/test/ripper/test_parser_events.rb
+++ b/test/ripper/test_parser_events.rb
@@ -1458,7 +1458,7 @@ class TestRipper::ParserEvents < Test::Unit::TestCase
assert_equal("[fcall(proc,[],&block([],[void()]))]", parse("proc{|;y|}"))
if defined?(Process::RLIMIT_AS)
dir = File.dirname(__FILE__)
- as = (RubyVM::MJIT.enabled? ? 111 : 100) * 1024 * 1024
+ as = (RubyVM::MJIT.enabled? ? 150 : 100) * 1024 * 1024
assert_in_out_err(%W(-I#{dir} -rdummyparser),
"Process.setrlimit(Process::RLIMIT_AS,#{as}); "\
"puts DummyParser.new('proc{|;y|!y}').parse",