Skip to content

Commit 2705712

Browse files
committed
~rename test sourceset [NB: wait for TC to build, I'm unable to check it locally]
1 parent fab8c17 commit 2705712

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

integration-testing/build.gradle

+5-6
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ dependencies {
2121
}
2222

2323
sourceSets {
24-
// Test that relies on Guava to reflectively check all Throwable subclasses in coroutines
25-
// Also other non-specific tests piggyback on that one
26-
withGuavaTest {
24+
// An assortment of tests for behavior of the core coroutines module on JVM
25+
jvmCoreTest {
2726
kotlin
2827
compileClasspath += sourceSets.test.runtimeClasspath
2928
runtimeClasspath += sourceSets.test.runtimeClasspath
@@ -86,9 +85,9 @@ compileDebugAgentTestKotlin {
8685
}
8786
}
8887

89-
task withGuavaTest(type: Test) {
88+
task jvmCoreTest(type: Test) {
9089
environment "version", coroutines_version
91-
def sourceSet = sourceSets.withGuavaTest
90+
def sourceSet = sourceSets.jvmCoreTest
9291
testClassesDirs = sourceSet.output.classesDirs
9392
classpath = sourceSet.runtimeClasspath
9493
}
@@ -128,5 +127,5 @@ compileTestKotlin {
128127
}
129128

130129
check {
131-
dependsOn([withGuavaTest, debugDynamicAgentTest, mavenTest, debugAgentTest, coreAgentTest, 'smokeTest:build'])
130+
dependsOn([jvmCoreTest, debugDynamicAgentTest, mavenTest, debugAgentTest, coreAgentTest, 'smokeTest:build'])
132131
}

0 commit comments

Comments
 (0)