[K/N] Unmute some actually passing tests

This commit is contained in:
Pavel Kunyavskiy
2023-05-08 15:21:22 +02:00
committed by Space Team
parent d78e30a5f5
commit 2f3947d8e5
9 changed files with 14 additions and 8 deletions
@@ -1,5 +1,7 @@
// IGNORE_LEAKED_INTERNAL_TYPES: KT-54517
// IGNORE_BACKEND_K2: JS_IR, NATIVE
// IGNORE_BACKEND_K2: JS_IR
// KT-58553
// IGNORE_BACKEND_K2: NATIVE
// MODULE: lib
// FILE: l1.kt
package ann
+3 -1
View File
@@ -1,4 +1,6 @@
// IGNORE_BACKEND_K2: JS_IR, NATIVE
// IGNORE_BACKEND_K2: JS_IR
// KT-55457
// IGNORE_BACKEND_K2: NATIVE
//test [], get and iterator calls
fun test(createIntNotLong: Boolean): String {
+3 -1
View File
@@ -1,4 +1,6 @@
// IGNORE_BACKEND_K2: JS_IR, NATIVE
// IGNORE_BACKEND_K2: JS_IR
// KT-55457
// IGNORE_BACKEND_K2: NATIVE
fun test(b: Boolean): String {
val a = if (b) IntArray(5) else LongArray(5)
@@ -1,5 +1,6 @@
// !LANGUAGE: -ForbidUsingExtensionPropertyTypeParameterInDelegate
//For KT-6020
// KT-58555
// IGNORE_BACKEND_K2: NATIVE
import kotlin.reflect.KProperty1
-2
View File
@@ -1,7 +1,5 @@
// WITH_STDLIB
// WITH_COROUTINES
// https://youtrack.jetbrains.com/issue/KT-56747/K2-N-Wrong-return-type-for-lambda-Any-Any-which-returns-Unit
// IGNORE_BACKEND_K2: NATIVE
import helpers.*
import kotlin.coroutines.intrinsics.COROUTINE_SUSPENDED
@@ -1,4 +1,4 @@
// IGNORE_BACKEND_K2: JS_IR, NATIVE
// IGNORE_BACKEND_K2: JS_IR
// KT-40686
@@ -4,6 +4,7 @@
// SKIP_MANGLE_VERIFICATION
//For KT-6020
// KT-24643: language version in K2 is >= 1.8
// KT-58555
// IGNORE_BACKEND_K2: NATIVE
// MODULE: lib
@@ -1,6 +1,7 @@
// !LANGUAGE: -ForbidUsingExtensionPropertyTypeParameterInDelegate
//For KT-6020
// KT-24643: language version in K2 is >= 1.8
// KT-58555
// IGNORE_BACKEND_K2: NATIVE
// MODULE: lib
@@ -4690,8 +4690,7 @@ interopTest("interop_concurrentTerminate") {
}
interopTest("interop_incompleteTypes") {
disabled = (project.testTarget == 'wasm32') || // No interop for wasm yet.
isK2(project) // KT-56027
disabled = (project.testTarget == 'wasm32') // No interop for wasm yet.
source = "interop/incomplete_types/main.kt"
interop = 'incomplete_types'
}