From 3a35dd2947052202766ef91c669bd0334b8a57e3 Mon Sep 17 00:00:00 2001 From: Alexander Shabalin Date: Mon, 31 Oct 2022 11:09:50 +0000 Subject: [PATCH] [K/N] Mute stress_gc_allocations on mingw_x64 ^KT-54727 Merge-request: KT-MR-7528 Merged-by: Alexander Shabalin --- 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 621c7600304..7659b38c3ea 100644 --- a/kotlin-native/backend.native/tests/build.gradle +++ b/kotlin-native/backend.native/tests/build.gradle @@ -3435,7 +3435,8 @@ standaloneTest("stress_gc_allocations") { (project.testTarget != "watchos_x64") && (project.testTarget != "watchos_simulator_arm64") && !isNoopGC && - !isAggressiveGC // TODO: Investigate why too slow + !isAggressiveGC && // TODO: Investigate why too slow + (project.testTarget != "mingw_x64") // TODO: Fix on mingw. source = "runtime/memory/stress_gc_allocations.kt" flags = ['-tr', '-opt-in=kotlin.native.internal.InternalForKotlinNative'] }