Include tests-compiler-utils into kotlin-compiler-tests-for-ide artifact
It fixes: ``` java.lang.NoClassDefFoundError: org/jetbrains/kotlin/fir/FirCfgConsistencyChecker at org.jetbrains.kotlin.test.frontend.fir.handlers.FirCfgConsistencyHandler.processModule(FirCfgConsistencyHandler.kt:15) at org.jetbrains.kotlin.test.frontend.fir.handlers.FirCfgConsistencyHandler.processModule(FirCfgConsistencyHandler.kt:13) at org.jetbrains.kotlin.test.TestRunnerKt.processModule(TestRunner.kt:236) at org.jetbrains.kotlin.test.TestRunnerKt.hackyProcess(TestRunner.kt:231) at org.jetbrains.kotlin.test.TestRunnerKt.access$hackyProcess(TestRunner.kt:1) ``` while running `DiagnosisCompilerTestFE10TestdataTestGenerated.Tests#testBinaryCallsOnNullableValues` (and probably other tests) in new infrastructure
This commit is contained in:
@@ -2,4 +2,11 @@ plugins {
|
|||||||
kotlin("jvm")
|
kotlin("jvm")
|
||||||
}
|
}
|
||||||
|
|
||||||
publishTestJarsForIde(listOf(":compiler:test-infrastructure", ":compiler:tests-common-new", ":compiler:test-infrastructure-utils"))
|
publishTestJarsForIde(
|
||||||
|
listOf(
|
||||||
|
":compiler:test-infrastructure",
|
||||||
|
":compiler:tests-common-new",
|
||||||
|
":compiler:test-infrastructure-utils",
|
||||||
|
":compiler:tests-compiler-utils"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user