From 48d4bb5261ceeaec2626b0871112de7d549a216a Mon Sep 17 00:00:00 2001 From: Zalim Bashorov Date: Thu, 14 Sep 2023 12:07:55 +0200 Subject: [PATCH] [Wasm] Temporarily disable running tests on SpiderMonkey #KT-59720 --- .../org/jetbrains/kotlin/wasm/test/handlers/WasmBoxRunner.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wasm/wasm.tests/test/org/jetbrains/kotlin/wasm/test/handlers/WasmBoxRunner.kt b/wasm/wasm.tests/test/org/jetbrains/kotlin/wasm/test/handlers/WasmBoxRunner.kt index 45e96de0840..11e45d5e25e 100644 --- a/wasm/wasm.tests/test/org/jetbrains/kotlin/wasm/test/handlers/WasmBoxRunner.kt +++ b/wasm/wasm.tests/test/org/jetbrains/kotlin/wasm/test/handlers/WasmBoxRunner.kt @@ -117,7 +117,8 @@ class WasmBoxRunner( val disableExceptions = DISABLE_WASM_EXCEPTION_HANDLING in testServices.moduleStructure.allDirectives - val exceptions = listOf(WasmVM.V8, WasmVM.SpiderMonkey).mapNotNull { vm -> + // TODO: KT-61958 Update SpiderMonkey and return its usage in tests when they switch to the final opcodes for GC and FTR proposals. + val exceptions = listOf(WasmVM.V8, /*WasmVM.SpiderMonkey*/).mapNotNull { vm -> vm.runWithCathedExceptions( debugMode = debugMode, disableExceptions = disableExceptions,