29f3445721
Starting with 1.7.20 freezing is deprecated. See https://github.com/JetBrains/kotlin/blob/master/kotlin-native/NEW_MM.md#freezing-deprecation for details. Merge-request: KT-MR-6399 Merged-by: Alexander Shabalin <Alexander.Shabalin@jetbrains.com>
94 lines
2.1 KiB
Kotlin
94 lines
2.1 KiB
Kotlin
/*
|
|
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
|
|
* that can be found in the LICENSE file.
|
|
*/
|
|
|
|
@file:OptIn(FreezingIsDeprecated::class)
|
|
package runtime.workers.worker9
|
|
|
|
import kotlin.test.*
|
|
|
|
import kotlin.native.concurrent.*
|
|
|
|
@Test fun runTest1() {
|
|
withLock { println("zzz") }
|
|
val worker = Worker.start()
|
|
val future = worker.execute(TransferMode.SAFE, {}) {
|
|
withLock {
|
|
println("42")
|
|
}
|
|
}
|
|
future.result
|
|
worker.requestTermination().result
|
|
println("OK")
|
|
}
|
|
|
|
fun withLock(op: () -> Unit) {
|
|
op()
|
|
}
|
|
|
|
@Test fun runTest2() {
|
|
val worker = Worker.start()
|
|
val future = worker.execute(TransferMode.SAFE, {}) {
|
|
val me = Worker.current
|
|
var x = 1
|
|
me.executeAfter (20000) {
|
|
println("second ${++x}")
|
|
}
|
|
me.executeAfter(10000) {
|
|
println("first ${++x}")
|
|
}
|
|
}
|
|
worker.requestTermination().result
|
|
}
|
|
|
|
@Test fun runTest3() {
|
|
val worker = Worker.start()
|
|
if (Platform.memoryModel == MemoryModel.EXPERIMENTAL) {
|
|
worker.executeAfter {
|
|
println("unfrozen OK")
|
|
}
|
|
} else {
|
|
assertFailsWith<IllegalStateException> {
|
|
val message = "shall not happen"
|
|
worker.executeAfter {
|
|
println(message)
|
|
}
|
|
}
|
|
}
|
|
assertFailsWith<IllegalArgumentException> {
|
|
val message = "shall not happen"
|
|
worker.executeAfter(-1, {
|
|
println(message)
|
|
}.freeze())
|
|
}
|
|
|
|
worker.executeAfter(0, {
|
|
println("frozen OK")
|
|
}.freeze())
|
|
|
|
worker.requestTermination().result
|
|
}
|
|
|
|
class Node(var node: Node?, var outher: Node?)
|
|
|
|
fun makeCyclic(): Node {
|
|
val inner = Node(null, null)
|
|
inner.node = inner
|
|
val outer = Node(null, null)
|
|
inner.outher = outer
|
|
return outer
|
|
}
|
|
|
|
@Test fun runTest4() {
|
|
val worker = Worker.start()
|
|
|
|
val future = worker.execute(TransferMode.SAFE, { }) {
|
|
makeCyclic().also {
|
|
kotlin.native.internal.GC.collect()
|
|
}
|
|
}
|
|
assert(future.result != null)
|
|
worker.requestTermination().result
|
|
}
|