From 1cefcc14380d640806bf256cddf2b93983098c26 Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Mon, 25 Feb 2019 10:58:35 +0300 Subject: [PATCH] Add "firCompilerTest" configuration & include it into compiler tests --- build.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 94d96b32cea..db0f76d32d5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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")