| Index: test/cctest/wasm/wasm-run-utils.h | 
| diff --git a/test/cctest/wasm/wasm-run-utils.h b/test/cctest/wasm/wasm-run-utils.h | 
| index 3222483c9f69bd7756b05c03d4d602e1eda92fa2..efc7aefbfce8768bee22e246ef105459e1cafcf4 100644 | 
| --- a/test/cctest/wasm/wasm-run-utils.h | 
| +++ b/test/cctest/wasm/wasm-run-utils.h | 
| @@ -827,9 +827,9 @@ | 
| void RunWasm_##name(WasmExecutionMode execution_mode);                   \ | 
| TEST(RunWasmCompiled_##name) { RunWasm_##name(kExecuteCompiled); }       \ | 
| void RunWasm_##name(WasmExecutionMode execution_mode);                   \ | 
| -  TEST(RunWasmCompiledWithoutTrapIf_##name) {                              \ | 
| +  TEST(RunWasmCompiledWithTrapIf_##name) {                                 \ | 
| bool trap_if = FLAG_wasm_trap_if;                                      \ | 
| -    FLAG_wasm_trap_if = false;                                             \ | 
| +    FLAG_wasm_trap_if = true;                                              \ | 
| RunWasm_##name(kExecuteCompiled);                                      \ | 
| FLAG_wasm_trap_if = trap_if;                                           \ | 
| }                                                                        \ | 
|  |