From 37fed8bbc9fee4215bab98b67ce57c32ff3eb70c Mon Sep 17 00:00:00 2001 From: Ilya Chernikov Date: Wed, 2 Oct 2019 11:10:47 +0200 Subject: [PATCH] Add jvmCompilerIntegrationTest task as a subtask of compilerTest: add embeddable compiler and client tests to it --- build.gradle.kts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 2ef25a0bc3b..24932a1a038 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -502,6 +502,13 @@ tasks { dependsOn(":plugins:jvm-abi-gen:test") } + register("jvmCompilerIntegrationTest") { + dependsOn( + ":kotlin-compiler-embeddable:test", + ":kotlin-compiler-client-embeddable:test" + ) + } + register("jsCompilerTest") { dependsOn(":js:js.tests:test") dependsOn(":js:js.tests:runMocha") @@ -544,6 +551,8 @@ tasks { dependsOn(":kotlin-build-common:test") dependsOn(":compiler:incremental-compilation-impl:test") dependsOn(":core:descriptors.runtime:test") + + dependsOn("jvmCompilerIntegrationTest") } register("toolsTest") {