Re-enable ScriptTest inc/dec cases

This commit is contained in:
Sergey Chernov 2026-01-29 03:28:08 +03:00
parent 79de950fcc
commit 8407dbe880

View File

@ -960,7 +960,6 @@ class ScriptTest {
) )
} }
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test @Test
fun testIncr() = runTest { fun testIncr() = runTest {
val c = Scope() val c = Scope()
@ -973,7 +972,6 @@ class ScriptTest {
assertEquals(12, c.eval("x").toInt()) assertEquals(12, c.eval("x").toInt())
} }
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test @Test
fun testDecr() = runTest { fun testDecr() = runTest {
val c = Scope() val c = Scope()
@ -985,7 +983,6 @@ class ScriptTest {
assertEquals(5, c.eval("x").toInt()) assertEquals(5, c.eval("x").toInt())
} }
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test @Test
fun testDecrIncr() = runTest { fun testDecrIncr() = runTest {
val c = Scope() val c = Scope()
@ -1000,7 +997,6 @@ class ScriptTest {
assertEquals(7, c.eval("x + 0").toInt()) assertEquals(7, c.eval("x + 0").toInt())
} }
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test @Test
fun testDecrIncr2() = runTest { fun testDecrIncr2() = runTest {
val c = Scope() val c = Scope()