Minor. Ignore test is JS_IR.

This commit is contained in:
Ilmir Usmanov
2018-06-15 15:43:56 +03:00
parent 9bf2d129ee
commit 192f311128
2 changed files with 8 additions and 2 deletions
@@ -1,4 +1,4 @@
// IGNORE_BACKEND: NATIVE, JS
// IGNORE_BACKEND: NATIVE, JS, JS_IR
// WITH_COROUTINES
// COMMON_COROUTINES_TEST
// MODULE: lib
@@ -6841,7 +6841,13 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
@TestMetadata("inlineWithJava.kt")
public void testInlineWithJava_1_2() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/multiModule/inlineWithJava.kt");
doTestWithCoroutinesPackageReplacement(fileName, "kotlin.coroutines.experimental");
try {
doTestWithCoroutinesPackageReplacement(fileName, "kotlin.coroutines.experimental");
}
catch (Throwable ignore) {
return;
}
throw new AssertionError("Looks like this test can be unmuted. Remove IGNORE_BACKEND directive for that.");
}
@TestMetadata("simple.kt")