JS: enable coroutine tests that don't enter infinite loop anymore

This commit is contained in:
Alexey Andreev
2016-11-02 17:31:17 +03:00
parent d5a808dff6
commit e7f044be92
5 changed files with 0 additions and 26 deletions
@@ -1,5 +1,3 @@
// TARGET_BACKEND: JVM
class Controller {
var lastSuspension: Continuation<String>? = null
var result = "fail"
@@ -1,5 +1,3 @@
// TARGET_BACKEND: JVM
class Controller {
var lastSuspension: Continuation<String>? = null
var result = "fail"
@@ -1,5 +1,3 @@
// TARGET_BACKEND: JVM
class Controller {
var lastSuspension: Continuation<String>? = null
var result = "fail"
@@ -1,5 +1,3 @@
// TARGET_BACKEND: JVM
class Controller {
var lastSuspension: Continuation<String>? = null
var result = "fail"
@@ -5672,12 +5672,6 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
doTest(fileName);
}
@TestMetadata("illegalState.kt")
public void testIllegalState() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/illegalState.kt");
doTest(fileName);
}
@TestMetadata("inlineSuspendFunction.kt")
public void testInlineSuspendFunction() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/inlineSuspendFunction.kt");
@@ -5932,24 +5926,12 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
doTest(fileName);
}
@TestMetadata("usedInArrayStore.kt")
public void testUsedInArrayStore() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/intLikeVarSpilling/usedInArrayStore.kt");
doTest(fileName);
}
@TestMetadata("usedInMethodCall.kt")
public void testUsedInMethodCall() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/intLikeVarSpilling/usedInMethodCall.kt");
doTest(fileName);
}
@TestMetadata("usedInPutfield.kt")
public void testUsedInPutfield() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/intLikeVarSpilling/usedInPutfield.kt");
doTest(fileName);
}
@TestMetadata("usedInVarStore.kt")
public void testUsedInVarStore() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/intLikeVarSpilling/usedInVarStore.kt");