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'] }