From b412143fcea84a8ba925650750a63699ec3de4e8 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Thu, 2 Aug 2018 22:31:08 +0300 Subject: [PATCH] Aggregate coroutines tests under 'check' task instead of 'test' Otherwise --tests "pattern" gradle option has problem as it's applied to both 'test' and `coroutinesTest` tasks and fails to match tests in one of them --- libraries/stdlib/jvm/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/stdlib/jvm/build.gradle b/libraries/stdlib/jvm/build.gradle index 50a04500616..cbcc79f32dd 100644 --- a/libraries/stdlib/jvm/build.gradle +++ b/libraries/stdlib/jvm/build.gradle @@ -239,7 +239,7 @@ task coroutinesTest(type: Test, dependsOn: coroutinesTestClasses) { classpath = sourceSets.coroutinesTest.runtimeClasspath } -test.dependsOn coroutinesTest +check.dependsOn(coroutinesTest) compileUnsignedKotlin { kotlinOptions {