[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_LEAKED_INTERNAL_TYPES: KT-54517
// IGNORE_BACKEND_K2: JS_IR, NATIVE // IGNORE_BACKEND_K2: JS_IR
// KT-58553
// IGNORE_BACKEND_K2: NATIVE
// MODULE: lib // MODULE: lib
// FILE: l1.kt // FILE: l1.kt
package ann 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 //test [], get and iterator calls
fun test(createIntNotLong: Boolean): String { 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 { fun test(b: Boolean): String {
val a = if (b) IntArray(5) else LongArray(5) val a = if (b) IntArray(5) else LongArray(5)
@@ -1,5 +1,6 @@
// !LANGUAGE: -ForbidUsingExtensionPropertyTypeParameterInDelegate // !LANGUAGE: -ForbidUsingExtensionPropertyTypeParameterInDelegate
//For KT-6020 //For KT-6020
// KT-58555
// IGNORE_BACKEND_K2: NATIVE // IGNORE_BACKEND_K2: NATIVE
import kotlin.reflect.KProperty1 import kotlin.reflect.KProperty1
-2
View File
@@ -1,7 +1,5 @@
// WITH_STDLIB // WITH_STDLIB
// WITH_COROUTINES // 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 helpers.*
import kotlin.coroutines.intrinsics.COROUTINE_SUSPENDED import kotlin.coroutines.intrinsics.COROUTINE_SUSPENDED
@@ -1,4 +1,4 @@
// IGNORE_BACKEND_K2: JS_IR, NATIVE // IGNORE_BACKEND_K2: JS_IR
// KT-40686 // KT-40686
@@ -4,6 +4,7 @@
// SKIP_MANGLE_VERIFICATION // SKIP_MANGLE_VERIFICATION
//For KT-6020 //For KT-6020
// KT-24643: language version in K2 is >= 1.8 // KT-24643: language version in K2 is >= 1.8
// KT-58555
// IGNORE_BACKEND_K2: NATIVE // IGNORE_BACKEND_K2: NATIVE
// MODULE: lib // MODULE: lib
@@ -1,6 +1,7 @@
// !LANGUAGE: -ForbidUsingExtensionPropertyTypeParameterInDelegate // !LANGUAGE: -ForbidUsingExtensionPropertyTypeParameterInDelegate
//For KT-6020 //For KT-6020
// KT-24643: language version in K2 is >= 1.8 // KT-24643: language version in K2 is >= 1.8
// KT-58555
// IGNORE_BACKEND_K2: NATIVE // IGNORE_BACKEND_K2: NATIVE
// MODULE: lib // MODULE: lib
@@ -4690,8 +4690,7 @@ interopTest("interop_concurrentTerminate") {
} }
interopTest("interop_incompleteTypes") { interopTest("interop_incompleteTypes") {
disabled = (project.testTarget == 'wasm32') || // No interop for wasm yet. disabled = (project.testTarget == 'wasm32') // No interop for wasm yet.
isK2(project) // KT-56027
source = "interop/incomplete_types/main.kt" source = "interop/incomplete_types/main.kt"
interop = 'incomplete_types' interop = 'incomplete_types'
} }