Ignore testSuspendInTheMiddleOfObjectConstructionEvaluationOrder in JS
This commit is contained in:
Vendored
+1
@@ -1,5 +1,6 @@
|
|||||||
// WITH_RUNTIME
|
// WITH_RUNTIME
|
||||||
// WITH_COROUTINES
|
// WITH_COROUTINES
|
||||||
|
// IGNORE_BACKEND: JS
|
||||||
import helpers.*
|
import helpers.*
|
||||||
import kotlin.coroutines.experimental.*
|
import kotlin.coroutines.experimental.*
|
||||||
import kotlin.coroutines.experimental.intrinsics.*
|
import kotlin.coroutines.experimental.intrinsics.*
|
||||||
|
|||||||
+7
-1
@@ -6149,7 +6149,13 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
|||||||
@TestMetadata("suspendInTheMiddleOfObjectConstructionEvaluationOrder.kt")
|
@TestMetadata("suspendInTheMiddleOfObjectConstructionEvaluationOrder.kt")
|
||||||
public void testSuspendInTheMiddleOfObjectConstructionEvaluationOrder() throws Exception {
|
public void testSuspendInTheMiddleOfObjectConstructionEvaluationOrder() throws Exception {
|
||||||
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/suspendInTheMiddleOfObjectConstructionEvaluationOrder.kt");
|
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/suspendInTheMiddleOfObjectConstructionEvaluationOrder.kt");
|
||||||
doTest(fileName);
|
try {
|
||||||
|
doTest(fileName);
|
||||||
|
}
|
||||||
|
catch (Throwable ignore) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
throw new AssertionError("Looks like this test can be unmuted. Remove IGNORE_BACKEND directive for that.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("suspendInTheMiddleOfObjectConstructionWithJumpOut.kt")
|
@TestMetadata("suspendInTheMiddleOfObjectConstructionWithJumpOut.kt")
|
||||||
|
|||||||
Reference in New Issue
Block a user