diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/JsCodegenBoxTestGenerated.java b/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/JsCodegenBoxTestGenerated.java index 3c0b8a9b665..184c6d24a3e 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/JsCodegenBoxTestGenerated.java +++ b/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/JsCodegenBoxTestGenerated.java @@ -13104,10 +13104,15 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest { @TestMetadata("javaObjectType.kt") public void testJavaObjectType() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/intrinsics/javaObjectType.kt"); + if (KotlinTestUtils.RUN_IGNORED_TESTS_AS_REGULAR) { + doTest(fileName); + return; + } try { doTest(fileName); } catch (Throwable ignore) { + ignore.printStackTrace(); return; } throw new AssertionError("Looks like this test can be unmuted. Remove IGNORE_BACKEND directive or add it to whitelist for that."); @@ -13116,10 +13121,15 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest { @TestMetadata("javaPrimitiveType.kt") public void testJavaPrimitiveType() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/intrinsics/javaPrimitiveType.kt"); + if (KotlinTestUtils.RUN_IGNORED_TESTS_AS_REGULAR) { + doTest(fileName); + return; + } try { doTest(fileName); } catch (Throwable ignore) { + ignore.printStackTrace(); return; } throw new AssertionError("Looks like this test can be unmuted. Remove IGNORE_BACKEND directive or add it to whitelist for that.");