1843eeb16b
This module was created to compare type resolve in K1 and K2. But overall, these tests contain a lot of bugs, and it is quite hard to use it.
34 lines
1.1 KiB
Kotlin
34 lines
1.1 KiB
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlinStdlib())
|
|
|
|
testApi(platform(libs.junit.bom))
|
|
testImplementation(libs.junit.jupiter.api)
|
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
|
testImplementation(projectTests(":compiler:tests-common"))
|
|
testImplementation(projectTests(":compiler:test-infrastructure"))
|
|
testImplementation(projectTests(":compiler:tests-common-new"))
|
|
testImplementation(projectTests(":compiler"))
|
|
testImplementation(projectTests(":compiler:fir:raw-fir:psi2fir"))
|
|
testImplementation(projectTests(":compiler:fir:raw-fir:light-tree2fir"))
|
|
testImplementation(projectTests(":compiler:fir:fir2ir"))
|
|
testImplementation(projectTests(":compiler:fir:analysis-tests:legacy-fir-tests"))
|
|
testImplementation(projectTests(":js:js.tests"))
|
|
testImplementation(projectTests(":generators:test-generator"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {}
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
val generateTests by generator("org.jetbrains.kotlin.test.generators.GenerateCompilerTestsKt") {
|
|
dependsOn(":compiler:generateTestData")
|
|
}
|
|
|
|
testsJar()
|