Pill: Add GenerateRuntimeDescriptorTests to the "Generate all tests" run configuration (KT-34494)

This commit is contained in:
Yan Zhulanow
2019-10-22 17:34:15 +09:00
parent 2cb055a3bd
commit 7fc25a9c04
3 changed files with 9 additions and 5 deletions
@@ -40,3 +40,5 @@ val generateTests by generator("org.jetbrains.kotlin.generators.tests.GenerateRu
projectTest(parallel = true) {
workingDir = rootDir
}
testsJar()
@@ -5,7 +5,11 @@ plugins {
}
val depenencyProjects = arrayOf(
":generators", ":compiler", ":js:js.tests", ":compiler:tests-java8"
":generators",
":compiler",
":js:js.tests",
":compiler:tests-java8",
":core:descriptors.runtime"
)
dependencies {
@@ -5,10 +5,7 @@
package org.jetbrains.kotlin.pill.generateAllTests;
import org.jetbrains.kotlin.generators.tests.GenerateCompilerTestsKt;
import org.jetbrains.kotlin.generators.tests.GenerateJava8TestsKt;
import org.jetbrains.kotlin.generators.tests.GenerateJsTestsKt;
import org.jetbrains.kotlin.generators.tests.GenerateTestsKt;
import org.jetbrains.kotlin.generators.tests.*;
public class Main {
public static void main(String[] args) {
@@ -16,5 +13,6 @@ public class Main {
GenerateTestsKt.main(args);
GenerateJsTestsKt.main(args);
GenerateJava8TestsKt.main(args);
GenerateRuntimeDescriptorTestsKt.main();
}
}