| Index: test/cctest/wasm/test-run-wasm.cc | 
| diff --git a/test/cctest/wasm/test-run-wasm.cc b/test/cctest/wasm/test-run-wasm.cc | 
| index cf6519e6e8a32cd6f7f496db370bfdce1d905ee1..0ce80275399cf56847562ca6aa8e0790f15b1896 100644 | 
| --- a/test/cctest/wasm/test-run-wasm.cc | 
| +++ b/test/cctest/wasm/test-run-wasm.cc | 
| @@ -1714,7 +1714,7 @@ TEST(Run_Wasm_Infinite_Loop_not_taken2_brif) { | 
| static void TestBuildGraphForSimpleExpression(WasmOpcode opcode) { | 
| if (!WasmOpcodes::IsSupported(opcode)) return; | 
|  | 
| -  Zone zone; | 
| +  ZoneForTesting zone; | 
| Isolate* isolate = CcTest::InitIsolateOnce(); | 
| HandleScope scope(isolate); | 
| // Enable all optional operators. | 
| @@ -2141,7 +2141,7 @@ static void Run_WasmMixedCall_N(int start) { | 
|  | 
| int num_params = static_cast<int>(arraysize(mixed)) - start; | 
| for (int which = 0; which < num_params; which++) { | 
| -    Zone zone; | 
| +    ZoneForTesting zone; | 
| TestingModule module; | 
| module.AddMemory(1024); | 
| MachineType* memtypes = &mixed[start]; | 
| @@ -2784,7 +2784,7 @@ void CompileCallIndirectMany(LocalType param) { | 
| // with many many parameters. | 
| TestSignatures sigs; | 
| for (byte num_params = 0; num_params < 40; num_params++) { | 
| -    Zone zone; | 
| +    ZoneForTesting zone; | 
| HandleScope scope(CcTest::InitIsolateOnce()); | 
| TestingModule module; | 
| FunctionSig* sig = sigs.many(&zone, kAstStmt, param, num_params); | 
|  |