Skip to content

Commit

Permalink
Comment out PlainArray test as it leads to compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-bannykh committed Jan 22, 2025
1 parent f422e80 commit 9fbc2bf
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@ package org.jetbrains.litmuskt
import org.jetbrains.litmuskt.autooutcomes.LitmusIOutcome
import org.jetbrains.litmuskt.autooutcomes.accept
import org.jetbrains.litmuskt.autooutcomes.forbid
import org.jetbrains.litmuskt.autooutcomes.interesting
import java.util.concurrent.atomic.AtomicIntegerArray

@LitmusTestContainer
object UnsafePublicationJvm {
val PlainArray = litmusTest({

// TODO: adding new tests or test classes leads to compilation errors
/* val PlainArray = litmusTest({
object : LitmusIOutcome() {
var arr: Array<Int>? = null
}
Expand All @@ -30,7 +33,7 @@ object UnsafePublicationJvm {
arr = null
}
}

*/
val PlainAtomicIntegerArray = litmusTest({
object : LitmusIOutcome() {
var arr: AtomicIntegerArray? = null
Expand Down

0 comments on commit 9fbc2bf

Please sign in to comment.