Re-enable more ScriptTest cases

This commit is contained in:
Sergey Chernov 2026-01-30 16:32:35 +03:00
parent 4c966eb63e
commit 3210205061

View File

@ -1917,7 +1917,6 @@ class ScriptTest {
) )
} }
@Ignore("incremental enable")
@Test @Test
fun testAccessShortcuts() { fun testAccessShortcuts() {
assertTrue(Visibility.Public.isPublic) assertTrue(Visibility.Public.isPublic)
@ -1925,7 +1924,6 @@ class ScriptTest {
assertFalse(Visibility.Protected.isPublic) assertFalse(Visibility.Protected.isPublic)
} }
@Ignore("incremental enable")
@Test @Test
fun segfault1Test() = runTest { fun segfault1Test() = runTest {
eval( eval(
@ -1955,7 +1953,6 @@ class ScriptTest {
) )
} }
@Ignore("incremental enable")
@Test @Test
fun testIntExponentRealForm() = runTest { fun testIntExponentRealForm() = runTest {
when (val x = eval("1e-6").toString()) { when (val x = eval("1e-6").toString()) {
@ -1965,7 +1962,6 @@ class ScriptTest {
// assertEquals("1.0E-6", eval("1e-6").toString()) // assertEquals("1.0E-6", eval("1e-6").toString())
} }
@Ignore("incremental enable")
@Test @Test
fun testCallLastBlockAfterDetault() = runTest { fun testCallLastBlockAfterDetault() = runTest {
eval( eval(
@ -1980,7 +1976,6 @@ class ScriptTest {
} }
@Ignore("incremental enable")
@Test @Test
fun testCallLastBlockWithEllipsis() = runTest { fun testCallLastBlockWithEllipsis() = runTest {
eval( eval(
@ -1996,7 +1991,6 @@ class ScriptTest {
} }
@Ignore("incremental enable")
@Test @Test
fun testMethodCallLastBlockAfterDefault() = runTest { fun testMethodCallLastBlockAfterDefault() = runTest {
eval( eval(