| Index: test/cctest/test-dictionary.cc
|
| diff --git a/test/cctest/test-dictionary.cc b/test/cctest/test-dictionary.cc
|
| index cc4a7533d8c9c8a6386757df4f5053b6bc89b082..13f81a6d84e35e65b032f0c931e53f432de0bb5b 100644
|
| --- a/test/cctest/test-dictionary.cc
|
| +++ b/test/cctest/test-dictionary.cc
|
| @@ -35,7 +35,7 @@
|
| #include "src/global-handles.h"
|
| #include "src/macro-assembler.h"
|
| #include "src/objects.h"
|
| -#include "test/cctest/heap/utils-inl.h"
|
| +#include "test/cctest/heap/heap-utils.h"
|
|
|
| using namespace v8::internal;
|
|
|
| @@ -175,8 +175,8 @@ static void TestHashSetCausesGC(Handle<HashSet> table) {
|
|
|
| // Simulate a full heap so that generating an identity hash code
|
| // in subsequent calls will request GC.
|
| - SimulateFullSpace(CcTest::heap()->new_space());
|
| - SimulateFullSpace(CcTest::heap()->old_space());
|
| + heap::SimulateFullSpace(CcTest::heap()->new_space());
|
| + heap::SimulateFullSpace(CcTest::heap()->old_space());
|
|
|
| // Calling Contains() should not cause GC ever.
|
| int gc_count = isolate->heap()->gc_count();
|
| @@ -206,8 +206,8 @@ static void TestHashMapCausesGC(Handle<HashMap> table) {
|
|
|
| // Simulate a full heap so that generating an identity hash code
|
| // in subsequent calls will request GC.
|
| - SimulateFullSpace(CcTest::heap()->new_space());
|
| - SimulateFullSpace(CcTest::heap()->old_space());
|
| + heap::SimulateFullSpace(CcTest::heap()->new_space());
|
| + heap::SimulateFullSpace(CcTest::heap()->old_space());
|
|
|
| // Calling Lookup() should not cause GC ever.
|
| CHECK(table->Lookup(key)->IsTheHole());
|
|
|