| 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 efc7aefbfce8768bee22e246ef105459e1cafcf4..3222483c9f69bd7756b05c03d4d602e1eda92fa2 100644
|
| --- a/test/cctest/wasm/wasm-run-utils.h
|
| +++ b/test/cctest/wasm/wasm-run-utils.h
|
| @@ -827,9 +827,9 @@ jmp_buf WasmRunnerBase::jump_buffer;
|
| void RunWasm_##name(WasmExecutionMode execution_mode); \
|
| TEST(RunWasmCompiled_##name) { RunWasm_##name(kExecuteCompiled); } \
|
| void RunWasm_##name(WasmExecutionMode execution_mode); \
|
| - TEST(RunWasmCompiledWithTrapIf_##name) { \
|
| + TEST(RunWasmCompiledWithoutTrapIf_##name) { \
|
| bool trap_if = FLAG_wasm_trap_if; \
|
| - FLAG_wasm_trap_if = true; \
|
| + FLAG_wasm_trap_if = false; \
|
| RunWasm_##name(kExecuteCompiled); \
|
| FLAG_wasm_trap_if = trap_if; \
|
| } \
|
|
|