Commit 39d08198 authored by mlippautz's avatar mlippautz Committed by Commit bot

[heap] Fix PromotionQueue test for smaller page size

R=hpayer@chromium.org
BUG=

Review-Url: https://codereview.chromium.org/2009793002
Cr-Commit-Position: refs/heads/master@{#36496}
parent b5704bc1
...@@ -5591,7 +5591,7 @@ TEST(Regress507979) { ...@@ -5591,7 +5591,7 @@ TEST(Regress507979) {
UNINITIALIZED_TEST(PromotionQueue) { UNINITIALIZED_TEST(PromotionQueue) {
i::FLAG_expose_gc = true; i::FLAG_expose_gc = true;
i::FLAG_max_semi_space_size = 2 * (Page::kPageSize / MB); i::FLAG_max_semi_space_size = 2 * Page::kPageSize / MB;
i::FLAG_min_semi_space_size = i::FLAG_max_semi_space_size; i::FLAG_min_semi_space_size = i::FLAG_max_semi_space_size;
v8::Isolate::CreateParams create_params; v8::Isolate::CreateParams create_params;
create_params.array_buffer_allocator = CcTest::array_buffer_allocator(); create_params.array_buffer_allocator = CcTest::array_buffer_allocator();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment