We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2a72a0 commit a64e4daCopy full SHA for a64e4da
kotlinx-coroutines-core/build.gradle
@@ -76,7 +76,10 @@ jvmTest {
76
maxHeapSize = '1g'
77
enableAssertions = true
78
systemProperty 'java.security.manager', 'kotlinx.coroutines.TestSecurityManager'
79
- exclude '**/*StressTest.*'
+ // 'stress' is required to be able to run all subpackage tests like ":jvmTests --tests "*channels*" -Pstress=true"
80
+ if (!project.ext.ideaActive && rootProject.properties['stress'] == null) {
81
+ exclude '**/*StressTest.*'
82
+ }
83
systemProperty 'kotlinx.coroutines.scheduler.keep.alive.sec', '100000' // any unpark problem hangs test
84
}
85
0 commit comments