Add "firCompilerTest" configuration & include it into compiler tests

This commit is contained in:
Mikhail Glukhikh
2019-02-25 10:58:35 +03:00
parent bc1e836f01
commit 1cefcc1438
+6
View File
@@ -472,6 +472,11 @@ tasks {
dependsOn(":js:js.tests:runMocha")
}
create("firCompilerTest") {
dependsOn(":compiler:fir:psi2fir:test")
dependsOn(":compiler:fir:resolve:test")
}
create("scriptingTest") {
dependsOn("dist")
dependsOn(":kotlin-script-util:test")
@@ -481,6 +486,7 @@ tasks {
create("compilerTest") {
dependsOn("jvmCompilerTest")
dependsOn("jsCompilerTest")
dependsOn("firCompilerTest")
dependsOn("scriptingTest")
dependsOn(":kotlin-build-common:test")