We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb1b5db commit 20ad25fCopy full SHA for 20ad25f
kotlinx-coroutines-core/build.gradle
@@ -177,7 +177,9 @@ jvmTest {
177
minHeapSize = '1g'
178
maxHeapSize = '1g'
179
enableAssertions = true
180
- systemProperty 'java.security.manager', 'kotlinx.coroutines.TestSecurityManager'
+ if (!Idea.active) { // Workaround for KT-42671
181
+ systemProperty 'java.security.manager', 'kotlinx.coroutines.TestSecurityManager'
182
+ }
183
// 'stress' is required to be able to run all subpackage tests like ":jvmTests --tests "*channels*" -Pstress=true"
184
if (!Idea.active && rootProject.properties['stress'] == null) {
185
exclude '**/*StressTest.*'
0 commit comments