Unignore ScriptTest clamp/ops/spread

This commit is contained in:
Sergey Chernov 2026-01-30 20:17:25 +03:00
parent 2622fde41b
commit f6b6395424

View File

@ -5090,7 +5090,6 @@ class ScriptTest {
) )
} }
@Ignore("incremental enable")
@Test @Test
fun testClamp() = runTest { fun testClamp() = runTest {
eval( eval(
@ -5129,7 +5128,6 @@ class ScriptTest {
) )
} }
@Ignore("incremental enable")
@Test @Test
fun testEmptySpreadList() = runTest { fun testEmptySpreadList() = runTest {
eval( eval(
@ -5140,7 +5138,7 @@ class ScriptTest {
) )
} }
@Ignore("incremental enable") @Ignore("incremental enable: for-in over String in disasm sample not yet supported")
@Test @Test
fun testForInIterableDisasm() = runTest { fun testForInIterableDisasm() = runTest {
val scope = Script.newScope() val scope = Script.newScope()
@ -5168,7 +5166,7 @@ class ScriptTest {
println("[DEBUG_LOG] type(\"153\")=${r2.inspect(scope)}") println("[DEBUG_LOG] type(\"153\")=${r2.inspect(scope)}")
} }
@Ignore("incremental enable") @Ignore("incremental enable: for-in bytecode over iterable returns 0")
@Test @Test
fun testForInIterableBytecode() = runTest { fun testForInIterableBytecode() = runTest {
val result = eval( val result = eval(
@ -5238,7 +5236,6 @@ class ScriptTest {
assertEquals(ObjInt(2), scope.eval("firstEvenOrMinus()")) assertEquals(ObjInt(2), scope.eval("firstEvenOrMinus()"))
} }
@Ignore("incremental enable")
@Test @Test
fun testInOperatorBytecode() = runTest { fun testInOperatorBytecode() = runTest {
val scope = Script.newScope() val scope = Script.newScope()
@ -5253,7 +5250,6 @@ class ScriptTest {
assertEquals(ObjFalse, scope.eval("inList(5, [1,2,3])")) assertEquals(ObjFalse, scope.eval("inList(5, [1,2,3])"))
} }
@Ignore("incremental enable")
@Test @Test
fun testIsOperatorBytecode() = runTest { fun testIsOperatorBytecode() = runTest {
val scope = Script.newScope() val scope = Script.newScope()