Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2666)

Unified Diff: Source/platform/heap/HeapTest.cpp

Issue 818253005: Oilpan: Query stack frame register instead of manual bookkeeping (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: move preGC Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/heap/Heap.cpp ('k') | Source/platform/heap/InlinedGlobalMarkingVisitor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/platform/heap/Heap.cpp ('k') | Source/platform/heap/InlinedGlobalMarkingVisitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698