[FIR-TEST] Add build tasks for running all fir tests

- `:firCompilerTest` run all compiler fir tests
- `:idea:firTest` run all IDE fir tests
- `:firAllTest` run all fir tests
This commit is contained in:
Dmitriy Novozhilov
2020-02-19 12:36:22 +03:00
parent 82c960d40d
commit 22a5bc4144
3 changed files with 29 additions and 1 deletions
+8
View File
@@ -118,3 +118,11 @@ projectTest(parallel = true) {
val generateTests by generator("org.jetbrains.kotlin.generators.tests.GenerateCompilerTestsKt")
testsJar()
projectTest("firBlackBoxTest", parallel = true) {
dependsOn(":dist")
workingDir = rootDir
filter {
includeTestsMatching("org.jetbrains.kotlin.codegen.ir.FirBlackBoxCodegenTestGenerated")
}
}