Skip to content

Commit 216828a

Browse files
committed
Rename stressTest task to jvmStressTest to avoid conflict with prop
1 parent 1b0eca9 commit 216828a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kotlinx-coroutines-core/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jvmTest {
8080
systemProperty 'kotlinx.coroutines.scheduler.keep.alive.sec', '100000' // any unpark problem hangs test
8181
}
8282

83-
task stressTest(type: Test, dependsOn: compileTestKotlinJvm) {
83+
task jvmStressTest(type: Test, dependsOn: compileTestKotlinJvm) {
8484
classpath = files { jvmTest.classpath }
8585
testClassesDirs = files { jvmTest.testClassesDirs }
8686
minHeapSize = '1g'
@@ -105,7 +105,7 @@ task jdk16Test(type: Test, dependsOn: [compileTestKotlinJvm, checkJdk16]) {
105105
jdk16Test.onlyIf { project.properties['stressTest'] != null }
106106

107107
// Always run those tests
108-
task moreTest(dependsOn: [stressTest, jdk16Test])
108+
task moreTest(dependsOn: [jvmStressTest, jdk16Test])
109109
build.dependsOn moreTest
110110

111111
task testsJar(type: Jar, dependsOn: jvmTestClasses) {

0 commit comments

Comments
 (0)