Re-enable ScriptTest do/while and scoping cases

This commit is contained in:
Sergey Chernov 2026-01-29 04:00:31 +03:00
parent a8f9ddb60c
commit 55e06f04b2

View File

@ -851,7 +851,6 @@ class ScriptTest {
}
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testWhileBlockIsolation1() = runTest {
eval(
@ -868,7 +867,6 @@ class ScriptTest {
)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testWhileBlockIsolation2() = runTest {
assertFails {
@ -2278,7 +2276,6 @@ class ScriptTest {
assertEquals("111", r.toString())
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun doWhileValuesTest() = runTest {
eval(
@ -2323,7 +2320,6 @@ class ScriptTest {
)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun doWhileValuesLabelTest() = runTest {
withTimeout(5.seconds) {