Move Java 8 tests generator to tests-java8, run it in "Generate Compiler Tests"

This commit is contained in:
Alexander Udalov
2017-11-02 12:16:23 +01:00
parent f52ba44e90
commit b43b470b8f
4 changed files with 100 additions and 60 deletions
+2
View File
@@ -20,6 +20,7 @@ dependencies {
testCompile(projectDist(":kotlin-reflect"))
testCompile(projectTests(":compiler"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":generators:test-generator"))
testRuntime(projectRuntimeJar(":kotlin-preloader"))
testRuntime(preloadedDeps("dx", subdir = "android-5.0/lib"))
testRuntime(ideaSdkCoreDeps("*.jar"))
@@ -46,3 +47,4 @@ projectTest {
systemProperty("kotlin.test.script.classpath", the<JavaPluginConvention>().sourceSets.getByName("test").output.classesDirs.joinToString(File.pathSeparator))
}
val generateTests by generator("org.jetbrains.kotlin.generators.tests.GenerateJava8TestsKt")