Exclude tests from JS backend due to a bug into it
This commit is contained in:
committed by
Dmitry Petrov
parent
be07a348ea
commit
3c2f137fd5
+1
@@ -1,3 +1,4 @@
|
||||
// IGNORE_BACKEND: JS
|
||||
// WITH_RUNTIME
|
||||
|
||||
fun checkByteArray(): Boolean {
|
||||
|
||||
+7
-1
@@ -5720,7 +5720,13 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
||||
@TestMetadata("forInArraySpecializedToUntil.kt")
|
||||
public void testForInArraySpecializedToUntil() throws Exception {
|
||||
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/controlStructures/forInArray/forInArraySpecializedToUntil.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("forInArrayWithArrayPropertyUpdatedInLoopBody.kt")
|
||||
|
||||
Reference in New Issue
Block a user