From c1d803ccd6b41443afd8c57286b437ae9613e9bd Mon Sep 17 00:00:00 2001 From: Adam Semenenko <152864218+adam-enko@users.noreply.github.com> Date: Thu, 21 Nov 2024 18:50:59 +0100 Subject: [PATCH] disable KmpCommonSourceSharedWithDependentsTest, because of https://github.com/Kotlin/dokka/issues/3382 --- .../kotlin/KmpCommonSourceSharedWithDependentsTest.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dokka-runners/dokka-gradle-plugin/src/testFunctional/kotlin/KmpCommonSourceSharedWithDependentsTest.kt b/dokka-runners/dokka-gradle-plugin/src/testFunctional/kotlin/KmpCommonSourceSharedWithDependentsTest.kt index d79156b292..bf9e51923f 100644 --- a/dokka-runners/dokka-gradle-plugin/src/testFunctional/kotlin/KmpCommonSourceSharedWithDependentsTest.kt +++ b/dokka-runners/dokka-gradle-plugin/src/testFunctional/kotlin/KmpCommonSourceSharedWithDependentsTest.kt @@ -4,6 +4,7 @@ package org.jetbrains.dokka.gradle import io.kotest.assertions.withClue +import io.kotest.core.annotation.Ignored import io.kotest.core.spec.style.FunSpec import io.kotest.matchers.sequences.shouldBeEmpty import org.gradle.testkit.runner.TaskOutcome.* @@ -13,6 +14,7 @@ import kotlin.io.path.isRegularFile import kotlin.io.path.useLines import kotlin.io.path.walk +@Ignored("KMP: References is not linked if they are in shared code and there is an intermediate level between them https://github.com/Kotlin/dokka/issues/3382") class KmpCommonSourceSharedWithDependentsTest : FunSpec({ context("common source set is propagated to dependents") { val project = initProject()