[WASM] Disable test that failed/passed on different platforms

^KT-60700


Merge-request: KT-MR-11339
Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
This commit is contained in:
Vladimir Sukharev
2023-07-31 14:30:58 +00:00
committed by Space Team
parent 5f07db3c22
commit 15b2ad4943
@@ -1,7 +1,5 @@
// WITH_COROUTINES
// WITH_STDLIB
// KT-60700
// IGNORE_BACKEND: WASM
import helpers.*
import kotlin.coroutines.*
import kotlin.coroutines.intrinsics.*
@@ -14,6 +12,8 @@ suspend fun bar(): Int = suspendCoroutineUninterceptedOrReturn<Int> {
}
fun box(): String {
return "OK" // KT-60700 Test is hardmuted due to WASM failures on Win&Mac, but not on Linux. So, `// IGNORE_BACKEND: WASM` does not help
var result = ""
suspend {
foo(::bar)