mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
127 lines
2.9 KiB
Kotlin
Vendored
127 lines
2.9 KiB
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
// KOTLIN_CONFIGURATION_FLAGS: ASSERTIONS_MODE=jvm
|
|
// WITH_RUNTIME
|
|
|
|
package localFunction
|
|
|
|
interface Checker {
|
|
fun checkTrue(): Boolean
|
|
fun checkFalse(): Boolean
|
|
fun checkTrueWithMessage(): Boolean
|
|
fun checkFalseWithMessage(): Boolean
|
|
}
|
|
|
|
class ShouldBeDisabled : Checker {
|
|
override fun checkTrue(): Boolean {
|
|
var hit = false
|
|
val l = { hit = true; true }
|
|
fun local() {
|
|
assert(l())
|
|
}
|
|
local()
|
|
return hit
|
|
}
|
|
|
|
override fun checkFalse(): Boolean {
|
|
var hit = false
|
|
val l = { hit = true; false }
|
|
fun local() {
|
|
assert(l())
|
|
}
|
|
local()
|
|
return hit
|
|
}
|
|
|
|
override fun checkTrueWithMessage(): Boolean {
|
|
var hit = false
|
|
val l = { hit = true; true }
|
|
fun local() {
|
|
assert(l()) { "BOOYA" }
|
|
}
|
|
local()
|
|
return hit
|
|
}
|
|
|
|
override fun checkFalseWithMessage(): Boolean {
|
|
var hit = false
|
|
val l = { hit = true; false }
|
|
fun local() {
|
|
assert(l()) { "BOOYA" }
|
|
}
|
|
local()
|
|
return hit
|
|
}
|
|
}
|
|
|
|
class ShouldBeEnabled : Checker {
|
|
override fun checkTrue(): Boolean {
|
|
var hit = false
|
|
val l = { hit = true; true }
|
|
fun local() {
|
|
assert(l())
|
|
}
|
|
local()
|
|
return hit
|
|
}
|
|
|
|
override fun checkFalse(): Boolean {
|
|
var hit = false
|
|
val l = { hit = true; false }
|
|
fun local() {
|
|
assert(l())
|
|
}
|
|
local()
|
|
return hit
|
|
}
|
|
|
|
override fun checkTrueWithMessage(): Boolean {
|
|
var hit = false
|
|
val l = { hit = true; true }
|
|
fun local() {
|
|
assert(l()) { "BOOYA" }
|
|
}
|
|
local()
|
|
return hit
|
|
}
|
|
|
|
override fun checkFalseWithMessage(): Boolean {
|
|
var hit = false
|
|
val l = { hit = true; false }
|
|
fun local() {
|
|
assert(l()) { "BOOYA" }
|
|
}
|
|
local()
|
|
return hit
|
|
}
|
|
}
|
|
|
|
fun setDesiredAssertionStatus(v: Boolean): Checker {
|
|
val loader = Checker::class.java.classLoader
|
|
loader.setPackageAssertionStatus("localFunction", v)
|
|
val c = loader.loadClass(if (v) "localFunction.ShouldBeEnabled" else "localFunction.ShouldBeDisabled")
|
|
return c.newInstance() as Checker
|
|
}
|
|
|
|
fun box(): String {
|
|
var c = setDesiredAssertionStatus(false)
|
|
if (c.checkTrue()) return "FAIL 0"
|
|
if (c.checkTrueWithMessage()) return "FAIL 1"
|
|
if (c.checkFalse()) return "FAIL 2"
|
|
if (c.checkFalseWithMessage()) return "FAIL 3"
|
|
c = setDesiredAssertionStatus(true)
|
|
if (!c.checkTrue()) return "FAIL 4"
|
|
if (!c.checkTrueWithMessage()) return "FAIL 5"
|
|
try {
|
|
c.checkFalse()
|
|
return "FAIL 6"
|
|
} catch (ignore: AssertionError) {
|
|
}
|
|
try {
|
|
c.checkFalseWithMessage()
|
|
return "FAIL 7"
|
|
} catch (ignore: AssertionError) {
|
|
}
|
|
|
|
return "OK"
|
|
} |