Compare commits
No commits in common. "91624a30b82b43b7fe8e69183af66d5008e2a87a" and "104fd6b517a81bf9190dd4e0c2fc0e94249f5379" have entirely different histories.
91624a30b8
...
104fd6b517
@ -851,6 +851,7 @@ class ScriptTest {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testWhileBlockIsolation1() = runTest {
|
fun testWhileBlockIsolation1() = runTest {
|
||||||
eval(
|
eval(
|
||||||
@ -867,6 +868,7 @@ class ScriptTest {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testWhileBlockIsolation2() = runTest {
|
fun testWhileBlockIsolation2() = runTest {
|
||||||
assertFails {
|
assertFails {
|
||||||
@ -883,6 +885,7 @@ class ScriptTest {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testWhileBlockIsolation3() = runTest {
|
fun testWhileBlockIsolation3() = runTest {
|
||||||
eval(
|
eval(
|
||||||
@ -908,6 +911,7 @@ class ScriptTest {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun whileNonLocalBreakTest() = runTest {
|
fun whileNonLocalBreakTest() = runTest {
|
||||||
assertEquals(
|
assertEquals(
|
||||||
@ -2274,6 +2278,7 @@ class ScriptTest {
|
|||||||
assertEquals("111", r.toString())
|
assertEquals("111", r.toString())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun doWhileValuesTest() = runTest {
|
fun doWhileValuesTest() = runTest {
|
||||||
eval(
|
eval(
|
||||||
@ -2318,6 +2323,7 @@ class ScriptTest {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun doWhileValuesLabelTest() = runTest {
|
fun doWhileValuesLabelTest() = runTest {
|
||||||
withTimeout(5.seconds) {
|
withTimeout(5.seconds) {
|
||||||
@ -2455,6 +2461,7 @@ class ScriptTest {
|
|||||||
assertEquals("$~", l[0].value)
|
assertEquals("$~", l[0].value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testMatchOperator() = runTest {
|
fun testMatchOperator() = runTest {
|
||||||
eval(
|
eval(
|
||||||
@ -2474,6 +2481,7 @@ class ScriptTest {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testMatchingOperator2() = runTest {
|
fun testMatchingOperator2() = runTest {
|
||||||
eval(
|
eval(
|
||||||
@ -3858,6 +3866,7 @@ class ScriptTest {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun binarySearchTest2() = runTest {
|
fun binarySearchTest2() = runTest {
|
||||||
eval(
|
eval(
|
||||||
@ -3992,6 +4001,7 @@ class ScriptTest {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testIterableMinMax() = runTest {
|
fun testIterableMinMax() = runTest {
|
||||||
eval(
|
eval(
|
||||||
@ -4367,6 +4377,7 @@ class ScriptTest {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testHangOnPrintlnInMethods() = runTest {
|
fun testHangOnPrintlnInMethods() = runTest {
|
||||||
eval(
|
eval(
|
||||||
@ -4724,6 +4735,7 @@ class ScriptTest {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testUserClassExceptions() = runTest {
|
fun testUserClassExceptions() = runTest {
|
||||||
eval(
|
eval(
|
||||||
@ -4797,6 +4809,7 @@ class ScriptTest {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testExceptionToString() = runTest {
|
fun testExceptionToString() = runTest {
|
||||||
eval(
|
eval(
|
||||||
@ -4835,6 +4848,7 @@ class ScriptTest {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testRaiseAsError() = runTest {
|
fun testRaiseAsError() = runTest {
|
||||||
var x = evalNamed(
|
var x = evalNamed(
|
||||||
@ -4870,6 +4884,7 @@ class ScriptTest {
|
|||||||
assertContains(x1.message!!, "tc2")
|
assertContains(x1.message!!, "tc2")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testFilterStackTrace() = runTest {
|
fun testFilterStackTrace() = runTest {
|
||||||
var x = try {
|
var x = try {
|
||||||
@ -4895,6 +4910,7 @@ class ScriptTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Ignore("Bytecode: unsupported or incorrect behavior")
|
||||||
@Test
|
@Test
|
||||||
fun testLyngToKotlinExceptionHelpers() = runTest {
|
fun testLyngToKotlinExceptionHelpers() = runTest {
|
||||||
var x = evalNamed(
|
var x = evalNamed(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user