| Index: Source/platform/heap/HeapTest.cpp
|
| diff --git a/Source/platform/heap/HeapTest.cpp b/Source/platform/heap/HeapTest.cpp
|
| index 9f184f033630030adb87f113f89df52e25256e6d..44ac177f41089446db60d72e57a7662847ddaaf5 100644
|
| --- a/Source/platform/heap/HeapTest.cpp
|
| +++ b/Source/platform/heap/HeapTest.cpp
|
| @@ -239,6 +239,7 @@ public:
|
| : Visitor(Visitor::GenericVisitorType)
|
| , m_count(0)
|
| {
|
| + configureEagerTraceLimit();
|
| }
|
|
|
| virtual void mark(const void* object, TraceCallback) override
|
| @@ -5472,7 +5473,7 @@ TEST(HeapTest, TraceDeepEagerly)
|
| {
|
| #if !ENABLE(ASSERT)
|
| DeepEagerly* obj = nullptr;
|
| - for (int i = 0; i < 2000; i++)
|
| + for (int i = 0; i < 10000; i++)
|
| obj = new DeepEagerly(obj);
|
|
|
| Persistent<DeepEagerly> persistent(obj);
|
|
|