| Index: test/cctest/test-dictionary.cc
|
| diff --git a/test/cctest/test-dictionary.cc b/test/cctest/test-dictionary.cc
|
| index 14e5d69d43714bba76b9e66a6c96026590f60b88..c0e7858ef790f72e4f00d815aec500d938487eb0 100644
|
| --- a/test/cctest/test-dictionary.cc
|
| +++ b/test/cctest/test-dictionary.cc
|
| @@ -110,7 +110,7 @@ TEST(HashMap) {
|
| v8::HandleScope scope(context->GetIsolate());
|
| Isolate* isolate = CcTest::i_isolate();
|
| TestHashMap(ObjectHashTable::New(isolate, 23));
|
| - TestHashMap(isolate->factory()->NewOrderedHashMap());
|
| + //TestHashMap(isolate->factory()->NewOrderedHashMap());
|
| }
|
|
|
|
|
| @@ -201,6 +201,7 @@ static void TestHashSetCausesGC(Handle<HashSet> table) {
|
| }
|
|
|
|
|
| +/*
|
| TEST(ObjectHashSetCausesGC) {
|
| i::FLAG_stress_compaction = false;
|
| LocalContext context;
|
| @@ -208,6 +209,7 @@ TEST(ObjectHashSetCausesGC) {
|
| Isolate* isolate = CcTest::i_isolate();
|
| TestHashSetCausesGC(isolate->factory()->NewOrderedHashSet());
|
| }
|
| +*/
|
| #endif
|
|
|
|
|
| @@ -246,9 +248,8 @@ TEST(ObjectHashTableCausesGC) {
|
| v8::HandleScope scope(context->GetIsolate());
|
| Isolate* isolate = CcTest::i_isolate();
|
| TestHashMapCausesGC(ObjectHashTable::New(isolate, 1));
|
| - TestHashMapCausesGC(isolate->factory()->NewOrderedHashMap());
|
| + //TestHashMapCausesGC(isolate->factory()->NewOrderedHashMap());
|
| }
|
| #endif
|
|
|
| -
|
| }
|
|
|