Compare commits

..

4 Commits

View File

@ -851,7 +851,6 @@ class ScriptTest {
}
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testWhileBlockIsolation1() = runTest {
eval(
@ -868,7 +867,6 @@ class ScriptTest {
)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testWhileBlockIsolation2() = runTest {
assertFails {
@ -885,7 +883,6 @@ class ScriptTest {
}
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testWhileBlockIsolation3() = runTest {
eval(
@ -911,7 +908,6 @@ class ScriptTest {
)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun whileNonLocalBreakTest() = runTest {
assertEquals(
@ -2278,7 +2274,6 @@ class ScriptTest {
assertEquals("111", r.toString())
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun doWhileValuesTest() = runTest {
eval(
@ -2323,7 +2318,6 @@ class ScriptTest {
)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun doWhileValuesLabelTest() = runTest {
withTimeout(5.seconds) {
@ -2461,7 +2455,6 @@ class ScriptTest {
assertEquals("$~", l[0].value)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testMatchOperator() = runTest {
eval(
@ -2481,7 +2474,6 @@ class ScriptTest {
)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testMatchingOperator2() = runTest {
eval(
@ -3866,7 +3858,6 @@ class ScriptTest {
)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun binarySearchTest2() = runTest {
eval(
@ -4001,7 +3992,6 @@ class ScriptTest {
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testIterableMinMax() = runTest {
eval(
@ -4377,7 +4367,6 @@ class ScriptTest {
)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testHangOnPrintlnInMethods() = runTest {
eval(
@ -4735,7 +4724,6 @@ class ScriptTest {
)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testUserClassExceptions() = runTest {
eval(
@ -4809,7 +4797,6 @@ class ScriptTest {
)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testExceptionToString() = runTest {
eval(
@ -4848,7 +4835,6 @@ class ScriptTest {
)
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testRaiseAsError() = runTest {
var x = evalNamed(
@ -4884,7 +4870,6 @@ class ScriptTest {
assertContains(x1.message!!, "tc2")
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testFilterStackTrace() = runTest {
var x = try {
@ -4910,7 +4895,6 @@ class ScriptTest {
}
@Ignore("Bytecode: unsupported or incorrect behavior")
@Test
fun testLyngToKotlinExceptionHelpers() = runTest {
var x = evalNamed(