Create separate module for muting tests logic

This commit is contained in:
Yunir Salimzyanov
2020-06-17 15:51:53 +03:00
parent 5e115c48b3
commit 4474077963
3 changed files with 17 additions and 0 deletions
+1
View File
@@ -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"))
+15
View File
@@ -0,0 +1,15 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(kotlinStdlib())
}
sourceSets {
"main" {
projectDefault()
}
"test" {}
}
+1
View File
@@ -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",