summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2014-02-17 20:06:50 -0700
committerDan Allen <dan.j.allen@gmail.com>2014-02-17 20:07:04 -0700
commitd100d34e200ed0540ad108d79ecb19962ae607b0 (patch)
tree4ad60b8f5a59727f99c41aa9a7419a91b2133c7a /Rakefile
parentd6c70cbb1985be9f8bd4e0bd293e725e4b174f27 (diff)
bump GC memory a few notches
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 2b5dde47..9eb4e64c 100644
--- a/Rakefile
+++ b/Rakefile
@@ -6,12 +6,12 @@ def prepare_test_env
ENV['RUBY_GC_MALLOC_LIMIT'] = 128_000_000.to_s
ENV['RUBY_GC_OLDMALLOC_LIMIT'] = 128_000_000.to_s
if RUBY_VERSION >= '2.1'
- ENV['RUBY_GC_HEAP_INIT_SLOTS'] = 750_000.to_s
- ENV['RUBY_GC_HEAP_FREE_SLOTS'] = 750_000.to_s
+ ENV['RUBY_GC_HEAP_INIT_SLOTS'] = 800_000.to_s
+ ENV['RUBY_GC_HEAP_FREE_SLOTS'] = 800_000.to_s
ENV['RUBY_GC_HEAP_GROWTH_MAX_SLOTS'] = 250_000.to_s
ENV['RUBY_GC_HEAP_GROWTH_FACTOR'] = 1.25.to_s
else
- ENV['RUBY_FREE_MIN'] = 750_000.to_s
+ ENV['RUBY_FREE_MIN'] = 800_000.to_s
end
end