aboutsummaryrefslogtreecommitdiff
path: root/kotlinx-coroutines-core
diff options
context:
space:
mode:
authorRoman Elizarov <elizarov@gmail.com>2019-09-03 11:07:11 +0300
committerRoman Elizarov <elizarov@gmail.com>2019-09-04 15:36:11 +0300
commit0b16abf56351c8f9d35ac67909c5ef1855b551bd (patch)
treefd64e567f79d8380275fe56ff2acd1d2ed9c9616 /kotlinx-coroutines-core
parent5fb56f4281740cf65e81beb819f1dc14c5ed8e6d (diff)
downloadkotlinx.coroutines-0b16abf56351c8f9d35ac67909c5ef1855b551bd.tar.gz
Fix propagation for stressTest property for nightly stress tests
Also enable assertions and test output while running (long) LFStressTest
Diffstat (limited to 'kotlinx-coroutines-core')
-rw-r--r--kotlinx-coroutines-core/build.gradle2
1 files changed, 2 insertions, 0 deletions
diff --git a/kotlinx-coroutines-core/build.gradle b/kotlinx-coroutines-core/build.gradle
index 461b8350..4e15b639 100644
--- a/kotlinx-coroutines-core/build.gradle
+++ b/kotlinx-coroutines-core/build.gradle
@@ -80,6 +80,8 @@ task lockFreedomTest(type: Test, dependsOn: compileTestKotlinJvm) {
classpath = files { jvmTest.classpath }
testClassesDirs = files { jvmTest.testClassesDirs }
include '**/*LFStressTest.*'
+ enableAssertions = true
+ testLogging.showStandardStreams = true
}
task jdk16Test(type: Test, dependsOn: [compileTestKotlinJvm, checkJdk16]) {