File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
core/commonTest/src/stress Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ evaluationDependsOn(":kotlinx-collections-immutable")
1212val JDK_6 : String by project
1313
1414repositories {
15+ maven(url = " https://dl.bintray.com/kotlin/kotlin-dev" )
1516 maven(url = " https://dl.bintray.com/kotlin/kotlinx" )
1617}
1718
Original file line number Diff line number Diff line change 11buildscript {
22 repositories {
33 mavenCentral()
4+ maven(url = " https://dl.bintray.com/kotlin/kotlin-dev" )
45 maven(url = " https://dl.bintray.com/kotlin/kotlin-eap" )
56 }
67 dependencies {
7- classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.71 " )
8+ classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.0 " )
89 }
910}
1011
@@ -43,6 +44,7 @@ val JDK_6 by ext(System.getenv("JDK_6") ?: findProperty("JDK_6") as String? ?: e
4344allprojects {
4445 repositories {
4546 mavenCentral()
47+ maven(url = " https://dl.bintray.com/kotlin/kotlin-dev" )
4648 maven(url = " https://dl.bintray.com/kotlin/kotlin-eap" )
4749 }
4850}
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ import kotlin.time.*
1111
1212@UseExperimental(ExperimentalTime ::class )
1313abstract class ExecutionTimeMeasuringTest {
14- private var clockMark: ClockMark ? = null
14+ private var clockMark: TimeMark ? = null
1515
1616 private fun markExecutionStart () {
17- clockMark = MonoClock .markNow()
17+ clockMark = TimeSource . Monotonic .markNow()
1818 }
1919
2020 private fun printExecutionTime () {
You can’t perform that action at this time.
0 commit comments