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