diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/IrBoxJsTestGenerated.java b/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/IrBoxJsTestGenerated.java index acfd7ce6a2f..a37df5e196e 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/IrBoxJsTestGenerated.java +++ b/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/IrBoxJsTestGenerated.java @@ -18105,6 +18105,23 @@ public class IrBoxJsTestGenerated extends AbstractIrBoxJsTest { throw new AssertionError("Looks like this test can be unmuted. Remove IGNORE_BACKEND directive or add it to whitelist for that."); } + @TestMetadata("constantPropagation.kt") + public void testConstantPropagation() throws Exception { + String fileName = KotlinTestUtils.navigationMetadata("js/js.translator/testData/box/number/constantPropagation.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."); + } + @TestMetadata("conversionsWithTruncation.kt") public void testConversionsWithTruncation() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("js/js.translator/testData/box/number/conversionsWithTruncation.kt"); 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 05c32fb9f05..5ff1f3cb8e8 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 @@ -7986,13 +7986,18 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest { @TestMetadata("crossinline.kt") public void testCrossinline() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/tailCallOptimizations/crossinline.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 for that."); + throw new AssertionError("Looks like this test can be unmuted. Remove IGNORE_BACKEND directive or add it to whitelist for that."); } @TestMetadata("inlineWithStateMachine.kt")