[K/N][tests] Migrate various runtime/ tests ^KT-61259

This commit is contained in:
Alexander Shabalin
2024-03-11 22:48:50 +01:00
committed by Space Team
parent 7ad4e58a7a
commit d88092aa94
99 changed files with 2102 additions and 1905 deletions
@@ -0,0 +1,38 @@
/*
* Copyright 2010-2024 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package test.native.concurrent
import kotlin.native.concurrent.*
import kotlin.test.*
private class A(var x: Int)
@OptIn(FreezingIsDeprecated::class)
class FreezingTest {
@Test
fun freezeIsNoopForObjects() {
val a = A(1)
a.freeze()
a.x = 2
assertEquals(2, a.x)
}
@Test
fun freezeIsNoopForArrays() {
val a = arrayOf(1, 2, 3)
a.freeze()
a[0] = 4
assertContentEquals(arrayOf(4, 2, 3), a)
}
@Test
fun freezeIsNoopForPrimitiveArrays() {
val a = intArrayOf(1, 2, 3)
a.freeze()
a[0] = 4
assertContentEquals(intArrayOf(4, 2, 3), a)
}
}