Index: test/cctest/heap/test-heap.cc |
diff --git a/test/cctest/heap/test-heap.cc b/test/cctest/heap/test-heap.cc |
index afe143fc0e3f114a595295a0d8b1425f27e603f3..23321e3e0cd32fef42c9b2812574147c9bb55eae 100644 |
--- a/test/cctest/heap/test-heap.cc |
+++ b/test/cctest/heap/test-heap.cc |
@@ -7111,20 +7111,5 @@ TEST(RememberedSetRemoveRange) { |
}); |
} |
-TEST(EmptyIntermediateGeneration) { |
- CcTest::InitializeVM(); |
- Heap* heap = CcTest::heap(); |
- heap::GcAndSweep(heap, OLD_SPACE); |
- v8::HandleScope scope(CcTest::isolate()); |
- { |
- v8::HandleScope temp_scope(CcTest::isolate()); |
- heap::SimulateFullSpace(heap->new_space()); |
- } |
- heap::GcAndSweep(heap, OLD_SPACE); |
- for (Page* p : *heap->new_space()) { |
- CHECK(!p->InIntermediateGeneration()); |
- } |
-} |
- |
} // namespace internal |
} // namespace v8 |