| Index: test/cctest/test-unboxed-doubles.cc
 | 
| diff --git a/test/cctest/test-unboxed-doubles.cc b/test/cctest/test-unboxed-doubles.cc
 | 
| index 75e7d5ae8394d23c3e1dd20073270793549f7133..89f58a62e436a5514c2cb4c3fe8b0b763419a134 100644
 | 
| --- a/test/cctest/test-unboxed-doubles.cc
 | 
| +++ b/test/cctest/test-unboxed-doubles.cc
 | 
| @@ -909,7 +909,7 @@ TEST(Regress436816) {
 | 
|    CHECK(object->map()->HasFastPointerLayout());
 | 
|  
 | 
|    // Trigger GCs and heap verification.
 | 
| -  CcTest::heap()->CollectAllGarbage(i::Heap::kNoGCFlags);
 | 
| +  CcTest::heap()->CollectAllGarbage();
 | 
|  }
 | 
|  
 | 
|  
 | 
| @@ -966,7 +966,7 @@ TEST(DescriptorArrayTrimming) {
 | 
|  
 | 
|    // Call GC that should trim both |map|'s descriptor array and layout
 | 
|    // descriptor.
 | 
| -  CcTest::heap()->CollectAllGarbage(Heap::kNoGCFlags);
 | 
| +  CcTest::heap()->CollectAllGarbage();
 | 
|  
 | 
|    // The unused tail of the layout descriptor is now "clean" again.
 | 
|    CHECK(map->layout_descriptor()->IsConsistentWithMap(*map, true));
 | 
| @@ -1390,7 +1390,7 @@ TEST(StoreBufferScanOnScavenge) {
 | 
|    chunk->set_scan_on_scavenge(true);
 | 
|  
 | 
|    // Trigger GCs and force evacuation. Should not crash there.
 | 
| -  CcTest::heap()->CollectAllGarbage(i::Heap::kNoGCFlags);
 | 
| +  CcTest::heap()->CollectAllGarbage();
 | 
|  
 | 
|    CHECK_EQ(boom_value, GetDoubleFieldValue(*obj, field_index));
 | 
|  }
 | 
| 
 |