Index: test/cctest/test-mark-compact.cc |
diff --git a/test/cctest/test-mark-compact.cc b/test/cctest/test-mark-compact.cc |
index 1a95ae172b68584d8ab935716b705e5639a9ce42..5c154e16387bbd43f5e652a8949c636892cd3a7d 100644 |
--- a/test/cctest/test-mark-compact.cc |
+++ b/test/cctest/test-mark-compact.cc |
@@ -76,7 +76,7 @@ TEST(MarkingDeque) { |
TEST(Promotion) { |
CcTest::InitializeVM(); |
Heap* heap = CcTest::heap(); |
- heap->ConfigureHeap(2*256*KB, 1*MB, 1*MB); |
+ heap->ConfigureHeap(2*256*KB, 1*MB, 1*MB, i::kIs64BitArch ? 512 * i::MB : 0); |
Michael Starzinger
2014/04/09 12:03:04
nit: Shouldn't passing "0" here do the trick now?
jochen (gone - plz use gerrit)
2014/04/09 12:44:56
Done.
|
v8::HandleScope sc(CcTest::isolate()); |
@@ -101,7 +101,7 @@ TEST(Promotion) { |
TEST(NoPromotion) { |
CcTest::InitializeVM(); |
Heap* heap = CcTest::heap(); |
- heap->ConfigureHeap(2*256*KB, 1*MB, 1*MB); |
+ heap->ConfigureHeap(2*256*KB, 1*MB, 1*MB, i::kIs64BitArch ? 512 * i::MB : 0); |
Michael Starzinger
2014/04/09 12:03:04
nit: Likewise.
|
v8::HandleScope sc(CcTest::isolate()); |