Index: test/cctest/wasm/test-wasm-stack.cc |
diff --git a/test/cctest/wasm/test-wasm-stack.cc b/test/cctest/wasm/test-wasm-stack.cc |
index adbf2135eefc0b272c9e43add32f84c435d20752..357a4e487e35bdef6c6bee3a946216f48d71ad70 100644 |
--- a/test/cctest/wasm/test-wasm-stack.cc |
+++ b/test/cctest/wasm/test-wasm-stack.cc |
@@ -104,7 +104,8 @@ TEST(CollectDetailedWasmStack_ExplicitThrowFromJs) { |
MaybeHandle<Object> maybe_exc; |
Handle<Object> args[] = {js_wasm_wrapper}; |
MaybeHandle<Object> returnObjMaybe = |
- Execution::TryCall(isolate, js_trampoline, global, 1, args, &maybe_exc); |
+ Execution::TryCall(isolate, js_trampoline, global, 1, args, |
+ Execution::MessageHandling::kReport, &maybe_exc); |
CHECK(returnObjMaybe.is_null()); |
// Line and column are 1-based, so add 1 for the expected wasm output. |
@@ -145,7 +146,8 @@ TEST(CollectDetailedWasmStack_WasmError) { |
MaybeHandle<Object> maybe_exc; |
Handle<Object> args[] = {js_wasm_wrapper}; |
MaybeHandle<Object> maybe_return_obj = |
- Execution::TryCall(isolate, js_trampoline, global, 1, args, &maybe_exc); |
+ Execution::TryCall(isolate, js_trampoline, global, 1, args, |
+ Execution::MessageHandling::kReport, &maybe_exc); |
CHECK(maybe_return_obj.is_null()); |
// Line and column are 1-based, so add 1 for the expected wasm output. |