| Index: Source/platform/heap/HeapTest.cpp | 
| diff --git a/Source/platform/heap/HeapTest.cpp b/Source/platform/heap/HeapTest.cpp | 
| index 9f7024173d5b9186e68b130471c593ebf210bea0..2f287fb40cb9da526b025dfc59dead91da80b588 100644 | 
| --- a/Source/platform/heap/HeapTest.cpp | 
| +++ b/Source/platform/heap/HeapTest.cpp | 
| @@ -1867,6 +1867,52 @@ TEST(HeapTest, LazySweepingLargeObjectPages) | 
| Heap::collectGarbage(ThreadState::NoHeapPointersOnStack, ThreadState::GCWithSweep, Heap::ForcedGC); | 
| EXPECT_EQ(22, LargeHeapObject::s_destructorCalls); | 
| } | 
| + | 
| +class SimpleFinalizedEagerObjectBase : public GarbageCollectedFinalized<SimpleFinalizedEagerObjectBase> { | 
| +public: | 
| +    virtual ~SimpleFinalizedEagerObjectBase() { } | 
| +    DEFINE_INLINE_TRACE() { } | 
| +protected: | 
| +    SimpleFinalizedEagerObjectBase() { } | 
| +}; | 
| + | 
| +class SimpleFinalizedEagerObject : public SimpleFinalizedEagerObjectBase { | 
| +public: | 
| +    static SimpleFinalizedEagerObject* create() | 
| +    { | 
| +        return new SimpleFinalizedEagerObject(); | 
| +    } | 
| + | 
| +    virtual ~SimpleFinalizedEagerObject() | 
| +    { | 
| +        ++s_destructorCalls; | 
| +    } | 
| + | 
| +    static int s_destructorCalls; | 
| +private: | 
| +    SimpleFinalizedEagerObject() { } | 
| +}; | 
| + | 
| +int SimpleFinalizedEagerObject::s_destructorCalls = 0; | 
| + | 
| +OILPAN_EAGERLY_SWEEP(SimpleFinalizedEagerObjectBase); | 
| + | 
| +TEST(HeapTest, EagerlySweepingPages) | 
| +{ | 
| +    clearOutOldGarbage(); | 
| + | 
| +    SimpleFinalizedObject::s_destructorCalls = 0; | 
| +    SimpleFinalizedEagerObject::s_destructorCalls = 0; | 
| +    EXPECT_EQ(0, SimpleFinalizedObject::s_destructorCalls); | 
| +    EXPECT_EQ(0, SimpleFinalizedEagerObject::s_destructorCalls); | 
| +    for (int i = 0; i < 1000; i++) | 
| +        SimpleFinalizedObject::create(); | 
| +    for (int i = 0; i < 100; i++) | 
| +        SimpleFinalizedEagerObject::create(); | 
| +    Heap::collectGarbage(ThreadState::NoHeapPointersOnStack, ThreadState::GCWithoutSweep, Heap::ForcedGC); | 
| +    EXPECT_EQ(0, SimpleFinalizedObject::s_destructorCalls); | 
| +    EXPECT_EQ(100, SimpleFinalizedEagerObject::s_destructorCalls); | 
| +} | 
| #endif | 
|  | 
| TEST(HeapTest, Finalization) | 
|  |