Ignore test for 'primitive Char == object' in JS (KT-19081)

This commit is contained in:
Dmitry Petrov
2017-07-18 11:56:43 +03:00
parent 709a7e201f
commit b4d8337ca5
3 changed files with 11 additions and 3 deletions
@@ -14079,7 +14079,13 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
@TestMetadata("primitiveEqObjectChar.kt")
public void testPrimitiveEqObjectChar() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/primitiveTypes/equalityWithObject/generated/primitiveEqObjectChar.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("primitiveEqObjectInt.kt")