Commit 91c562ee authored by Dominik Inführ's avatar Dominik Inführ Committed by Commit Bot

[heap] Use ManualGCScope for test

Ensures that there is no concurrent allocation happening.

Bug: v8:10315
Change-Id: Ief40cbde9d859e3a2eea66d6e4437d7f0e3840e8
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2418951Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
Commit-Queue: Dominik Inführ <dinfuehr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#69998}
parent a07be284
...@@ -6517,7 +6517,7 @@ TEST(RememberedSetRemoveRange) { ...@@ -6517,7 +6517,7 @@ TEST(RememberedSetRemoveRange) {
HEAP_TEST(Regress670675) { HEAP_TEST(Regress670675) {
if (!FLAG_incremental_marking) return; if (!FLAG_incremental_marking) return;
FLAG_stress_incremental_marking = false; ManualGCScope manual_gc_scope;
CcTest::InitializeVM(); CcTest::InitializeVM();
v8::HandleScope scope(CcTest::isolate()); v8::HandleScope scope(CcTest::isolate());
Heap* heap = CcTest::heap(); Heap* heap = CcTest::heap();
......
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