From 8407dbe8809965dd0f7ce9e6af6640dbecb4f71e Mon Sep 17 00:00:00 2001 From: sergeych Date: Thu, 29 Jan 2026 03:28:08 +0300 Subject: [PATCH] Re-enable ScriptTest inc/dec cases --- lynglib/src/commonTest/kotlin/ScriptTest.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lynglib/src/commonTest/kotlin/ScriptTest.kt b/lynglib/src/commonTest/kotlin/ScriptTest.kt index c939480..b9e29a2 100644 --- a/lynglib/src/commonTest/kotlin/ScriptTest.kt +++ b/lynglib/src/commonTest/kotlin/ScriptTest.kt @@ -960,7 +960,6 @@ class ScriptTest { ) } - @Ignore("Bytecode: unsupported or incorrect behavior") @Test fun testIncr() = runTest { val c = Scope() @@ -973,7 +972,6 @@ class ScriptTest { assertEquals(12, c.eval("x").toInt()) } - @Ignore("Bytecode: unsupported or incorrect behavior") @Test fun testDecr() = runTest { val c = Scope() @@ -985,7 +983,6 @@ class ScriptTest { assertEquals(5, c.eval("x").toInt()) } - @Ignore("Bytecode: unsupported or incorrect behavior") @Test fun testDecrIncr() = runTest { val c = Scope() @@ -1000,7 +997,6 @@ class ScriptTest { assertEquals(7, c.eval("x + 0").toInt()) } - @Ignore("Bytecode: unsupported or incorrect behavior") @Test fun testDecrIncr2() = runTest { val c = Scope()