From 950c2baa34b40e966fb3c2e797ffe2b6f36a9fc7 Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Thu, 9 Mar 2023 10:19:24 +0100 Subject: [PATCH] [K2/N] ignore library_ir_provider_mismatch test because of ^KT-56855 K2 doesn't support one-stage compilation mode for Native yet. --- kotlin-native/backend.native/tests/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kotlin-native/backend.native/tests/build.gradle b/kotlin-native/backend.native/tests/build.gradle index cc2ae06728a..38fd397a4d2 100644 --- a/kotlin-native/backend.native/tests/build.gradle +++ b/kotlin-native/backend.native/tests/build.gradle @@ -5544,7 +5544,8 @@ interopTest("interop_exceptions_cCallback") { } tasks.register("library_ir_provider_mismatch", KonanDriverTest) { - disabled = isAggressiveGC // No need to test with different GC schedulers + disabled = isAggressiveGC || // No need to test with different GC schedulers + isK2(project) // KT-56855 def dir = buildDir.absolutePath def lib = "$projectDir/link/ir_providers/library/empty.kt"