[Gradle][Native] Mute BuildCacheRelocationIT.testRelocation on MinGW

This commit is contained in:
Dmitriy Dolovov
2021-08-17 10:57:13 +03:00
parent da72f26d94
commit 4049cf94b1
@@ -19,7 +19,9 @@ package org.jetbrains.kotlin.gradle
import org.jetbrains.kotlin.gradle.util.AGPVersion import org.jetbrains.kotlin.gradle.util.AGPVersion
import org.jetbrains.kotlin.gradle.util.createTempDir import org.jetbrains.kotlin.gradle.util.createTempDir
import org.jetbrains.kotlin.gradle.util.modify import org.jetbrains.kotlin.gradle.util.modify
import org.jetbrains.kotlin.konan.target.HostManager
import org.jetbrains.kotlin.test.util.KtTestUtil import org.jetbrains.kotlin.test.util.KtTestUtil
import org.junit.Assume.assumeFalse
import org.junit.Test import org.junit.Test
import org.junit.runner.RunWith import org.junit.runner.RunWith
import org.junit.runners.Parameterized import org.junit.runners.Parameterized
@@ -42,6 +44,8 @@ class BuildCacheRelocationIT : BaseGradleIT() {
@Test @Test
fun testRelocation() = with(testCase) { fun testRelocation() = with(testCase) {
assumeFalse(HostManager.hostIsMingw) // remove after fix of KT-48283
val localBuildCacheDirectory = createTempDir("buildCache$projectName") val localBuildCacheDirectory = createTempDir("buildCache$projectName")
val originalWorkingDir = workingDir val originalWorkingDir = workingDir