[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
+9
View File
@@ -183,6 +183,15 @@ projectTest(parallel = true) {
workingDir = rootDir
}
projectTest("firTest", parallel = true) {
dependsOn(":dist")
workingDir = rootDir
filter {
includeTestsMatching("org.jetbrains.kotlin.idea.fir.*")
includeTestsMatching("org.jetbrains.kotlin.idea.resolve.FirReferenceResolveTestGenerated")
}
}
configureFormInstrumentation()
testsJar()