From 447407796317622cf62ea365c2bd49caa61af515 Mon Sep 17 00:00:00 2001 From: Yunir Salimzyanov Date: Wed, 17 Jun 2020 15:51:53 +0300 Subject: [PATCH] Create separate module for muting tests logic --- compiler/tests-common/build.gradle.kts | 1 + compiler/tests-mutes/build.gradle.kts | 15 +++++++++++++++ settings.gradle | 1 + 3 files changed, 17 insertions(+) create mode 100644 compiler/tests-mutes/build.gradle.kts diff --git a/compiler/tests-common/build.gradle.kts b/compiler/tests-common/build.gradle.kts index 36dd23be2c5..5f0fda4a8df 100644 --- a/compiler/tests-common/build.gradle.kts +++ b/compiler/tests-common/build.gradle.kts @@ -10,6 +10,7 @@ dependencies { testCompile(project(":core:descriptors.jvm")) testCompile(project(":core:deserialization")) testCompile(project(":compiler:util")) + testCompile(project(":compiler:tests-mutes")) testCompile(project(":compiler:backend")) testCompile(project(":compiler:fir:tree")) testCompile(project(":compiler:fir:raw-fir:psi2fir")) diff --git a/compiler/tests-mutes/build.gradle.kts b/compiler/tests-mutes/build.gradle.kts new file mode 100644 index 00000000000..efd3a7e2c40 --- /dev/null +++ b/compiler/tests-mutes/build.gradle.kts @@ -0,0 +1,15 @@ +plugins { + kotlin("jvm") + id("jps-compatible") +} + +dependencies { + api(kotlinStdlib()) +} + +sourceSets { + "main" { + projectDefault() + } + "test" {} +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 9acc2706d8a..c97ec9fa898 100644 --- a/settings.gradle +++ b/settings.gradle @@ -127,6 +127,7 @@ include ":benchmarks", ":compiler:incremental-compilation-impl", ":compiler:android-tests", ":compiler:tests-common", + ":compiler:tests-mutes", ":compiler:tests-common-jvm6", ":compiler:tests-against-klib", ":dukat",