Skip to content

Commit ebfc3e4

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

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
@@ -22,9 +22,8 @@ dependencies {
2222
}
2323

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

90-
task withGuavaTest(type: Test) {
89+
task jvmCoreTest(type: Test) {
9190
environment "version", coroutines_version
92-
def sourceSet = sourceSets.withGuavaTest
91+
def sourceSet = sourceSets.jvmCoreTest
9392
testClassesDirs = sourceSet.output.classesDirs
9493
classpath = sourceSet.runtimeClasspath
9594
}
@@ -129,5 +128,5 @@ compileTestKotlin {
129128
}
130129

131130
check {
132-
dependsOn([withGuavaTest, debugDynamicAgentTest, mavenTest, debugAgentTest, coreAgentTest, 'smokeTest:build'])
131+
dependsOn([jvmCoreTest, debugDynamicAgentTest, mavenTest, debugAgentTest, coreAgentTest, 'smokeTest:build'])
133132
}

0 commit comments

Comments
 (0)