Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update atomicfu to 0.23.0 #3942

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ kotlin_version=1.9.20
# Dependencies
junit_version=4.12
junit5_version=5.7.0
atomicfu_version=0.22.0
atomicfu_version=0.23.0
knit_version=0.4.0
html_version=0.7.2
lincheck_version=2.18.1
Expand Down Expand Up @@ -43,6 +43,7 @@ org.gradle.jvmargs=-Xmx3g

kotlin.mpp.stability.nowarn=true
kotlinx.atomicfu.enableJvmIrTransformation=true
kotlinx.atomicfu.enableNativeIrTransformation=true
# When the flag below is set to `true`, AtomicFU cannot process
# usages of `moveForward` in `ConcurrentLinkedList.kt` correctly.
kotlinx.atomicfu.enableJsIrTransformation=false
4 changes: 2 additions & 2 deletions kotlinx-coroutines-core/native/test/TestBase.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public actual typealias TestResult = Unit

public actual open class TestBase actual constructor() {
public actual val isBoundByJsTestTimeout = false
private var actionIndex = atomic(0)
private var finished = atomic(false)
private val actionIndex = atomic(0)
private val finished = atomic(false)
private var error: Throwable? = null

/**
Expand Down