From 1c5361dacd78cbba59be32898ae9f325a6e44b8a Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Fri, 9 Jul 2021 22:30:50 +0700 Subject: [PATCH] [K/N] disable throwThroughBridge test for wasm32 --- kotlin-native/backend.native/tests/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/kotlin-native/backend.native/tests/build.gradle b/kotlin-native/backend.native/tests/build.gradle index 5df7a82dfe9..37b6021cd89 100644 --- a/kotlin-native/backend.native/tests/build.gradle +++ b/kotlin-native/backend.native/tests/build.gradle @@ -4758,6 +4758,7 @@ dynamicTest("interop_memory_leaks") { } dynamicTest("interop_exceptions_throwThroughBridge") { + disabled = (project.testTarget == 'wasm32') // Uses exceptions + dynamic is unsupported for wasm. source = "interop/exceptions/throwThroughBridge.kt" cSource = "$projectDir/interop/exceptions/throwThroughBridge.cpp" clangTool = "clang++"