Commit 47e1c276 authored by yangguo's avatar yangguo Committed by Commit bot

Run test-heap/NoWeakHashTableLeakWithIncrementalMarking with a clean slate.

R=jkummerow@chromium.org

Review URL: https://codereview.chromium.org/1132493002

Cr-Commit-Position: refs/heads/master@{#28286}
parent 36f5f400
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
#include "src/v8.h" #include "src/v8.h"
#include "src/compilation-cache.h" #include "src/compilation-cache.h"
#include "src/deoptimizer.h"
#include "src/execution.h" #include "src/execution.h"
#include "src/factory.h" #include "src/factory.h"
#include "src/global-handles.h" #include "src/global-handles.h"
...@@ -4342,6 +4343,10 @@ TEST(NoWeakHashTableLeakWithIncrementalMarking) { ...@@ -4342,6 +4343,10 @@ TEST(NoWeakHashTableLeakWithIncrementalMarking) {
Isolate* isolate = CcTest::i_isolate(); Isolate* isolate = CcTest::i_isolate();
v8::internal::Heap* heap = CcTest::heap(); v8::internal::Heap* heap = CcTest::heap();
// Get a clean slate regarding optimized functions on the heap.
i::Deoptimizer::DeoptimizeAll(isolate);
heap->CollectAllGarbage();
if (!isolate->use_crankshaft()) return; if (!isolate->use_crankshaft()) return;
HandleScope outer_scope(heap->isolate()); HandleScope outer_scope(heap->isolate());
for (int i = 0; i < 3; i++) { for (int i = 0; i < 3; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment