Index: test/cctest/test-heap.cc |
diff --git a/test/cctest/test-heap.cc b/test/cctest/test-heap.cc |
index d9d2a861ebf30d4644d91f71ee49ceaf10627f47..2db0c89f0a4986b0027a04b64d680590c42f5d01 100644 |
--- a/test/cctest/test-heap.cc |
+++ b/test/cctest/test-heap.cc |
@@ -896,9 +896,8 @@ TEST(Iteration) { |
// Allocate a JS array to OLD_SPACE and NEW_SPACE |
objs[next_objs_index++] = factory->NewJSArray(10); |
- objs[next_objs_index++] = factory->NewJSArray(10, |
- FAST_HOLEY_ELEMENTS, |
- TENURED); |
+ objs[next_objs_index++] = factory->NewJSArray(10, FAST_HOLEY_ELEMENTS, |
+ WEAK, TENURED); |
// Allocate a small string to OLD_DATA_SPACE and NEW_SPACE |
objs[next_objs_index++] = factory->NewStringFromStaticChars("abcdefghij"); |
@@ -2211,7 +2210,8 @@ TEST(PrototypeTransitionClearing) { |
{ |
AlwaysAllocateScope always_allocate(isolate); |
SimulateFullSpace(space); |
- prototype = factory->NewJSArray(32 * KB, FAST_HOLEY_ELEMENTS, TENURED); |
+ prototype = |
+ factory->NewJSArray(32 * KB, FAST_HOLEY_ELEMENTS, WEAK, TENURED); |
} |
// Add a prototype on an evacuation candidate and verify that transition |