From ad579de32841c181112ce7d25b06fd95192e7bd2 Mon Sep 17 00:00:00 2001 From: Mikhael Bogdanov Date: Mon, 30 Nov 2020 11:50:56 +0100 Subject: [PATCH] Don't run KaptPathsTest.testSymbolicLinks test on Windows --- plugins/kapt3/kapt3-base/test/KaptPathsTest.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/kapt3/kapt3-base/test/KaptPathsTest.kt b/plugins/kapt3/kapt3-base/test/KaptPathsTest.kt index 28489019b05..29a3c7bbb29 100644 --- a/plugins/kapt3/kapt3-base/test/KaptPathsTest.kt +++ b/plugins/kapt3/kapt3-base/test/KaptPathsTest.kt @@ -15,6 +15,7 @@ import java.nio.file.Files class KaptPathsTest : TestCase() { @Test fun testSymbolicLinks() { + if (System.getProperty("os.name").toLowerCase().contains("win")) return val tempDir = Files.createTempDirectory("kapt-test").toFile() try { fun File.writeJavaClass() = apply { -- GitLab