Extract GenerateCompilerTests out of GenerateTests

Rename the run configuration "Generate Tests" -> "Generate All Tests"
This commit is contained in:
Alexander Udalov
2017-10-19 19:02:42 +02:00
parent d0274c3c53
commit 8695c6a1e4
9 changed files with 409 additions and 350 deletions
+3
View File
@@ -44,6 +44,7 @@ dependencies {
testCompileOnly(projectDist(":kotlin-test:kotlin-test-junit"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":compiler:tests-common-jvm6"))
testCompile(projectTests(":generators:test-generator"))
testCompile(project(":compiler:ir.ir2cfg"))
testCompile(project(":compiler:ir.tree")) // used for deepCopyWithSymbols call that is removed by proguard from the compiler TODO: make it more straightforward
testCompileOnly(project(":kotlin-daemon-client"))
@@ -168,3 +169,5 @@ codegenTest(target = 9, jvm = 9) {
systemProperty("kotlin.test.default.jvm.target", "1.8")
systemProperty("kotlin.test.substitute.bytecode.1.8.to.1.9", "true")
}
val generateTests by generator("org.jetbrains.kotlin.generators.tests.GenerateCompilerTestsKt")