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