Add gradle task to print spec tests statistic by spec sections

This commit is contained in:
victor.petukhov
2018-08-10 18:11:49 +03:00
parent 93874de89b
commit e01e832acd
3 changed files with 124 additions and 0 deletions
+5
View File
@@ -17,3 +17,8 @@ projectTest {
}
val generateTests by generator("org.jetbrains.kotlin.generators.tests.GenerateCompilerSpecTestsKt")
val printSpecTestsStatistic by smartJavaExec {
classpath = javaPluginConvention().sourceSets.getByName("test").runtimeClasspath
main = "org.jetbrains.kotlin.spec.tasks.PrintSpecTestsStatisticKt"
}