[IR] Add test describes case from KT-48912

It actually doesn't check behaviour because we don't have proper infra
for that but explains a bit a problem for further investigations.
This commit is contained in:
Roman Artemev
2021-09-30 12:33:29 +03:00
committed by TeamCityServer
parent 8496729597
commit 1d39b37c90
9 changed files with 102 additions and 0 deletions
@@ -16382,6 +16382,11 @@ public class IrJsCodegenBoxES6TestGenerated extends AbstractIrJsCodegenBoxES6Tes
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ir/serializationRegressions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR_ES6, true);
}
@TestMetadata("anonFakeOverride.kt")
public void testAnonFakeOverride() throws Exception {
runTest("compiler/testData/codegen/box/ir/serializationRegressions/anonFakeOverride.kt");
}
@TestMetadata("deepGenericDelegatedProperty.kt")
public void testDeepGenericDelegatedProperty() throws Exception {
runTest("compiler/testData/codegen/box/ir/serializationRegressions/deepGenericDelegatedProperty.kt");
@@ -15788,6 +15788,11 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ir/serializationRegressions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
}
@TestMetadata("anonFakeOverride.kt")
public void testAnonFakeOverride() throws Exception {
runTest("compiler/testData/codegen/box/ir/serializationRegressions/anonFakeOverride.kt");
}
@TestMetadata("deepGenericDelegatedProperty.kt")
public void testDeepGenericDelegatedProperty() throws Exception {
runTest("compiler/testData/codegen/box/ir/serializationRegressions/deepGenericDelegatedProperty.kt");
@@ -15818,6 +15818,11 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ir/serializationRegressions"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS, true);
}
@TestMetadata("anonFakeOverride.kt")
public void testAnonFakeOverride() throws Exception {
runTest("compiler/testData/codegen/box/ir/serializationRegressions/anonFakeOverride.kt");
}
@TestMetadata("deepGenericDelegatedProperty.kt")
public void testDeepGenericDelegatedProperty() throws Exception {
runTest("compiler/testData/codegen/box/ir/serializationRegressions/deepGenericDelegatedProperty.kt");
@@ -12567,6 +12567,11 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ir/serializationRegressions"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true);
}
@TestMetadata("anonFakeOverride.kt")
public void testAnonFakeOverride() throws Exception {
runTest("compiler/testData/codegen/box/ir/serializationRegressions/anonFakeOverride.kt");
}
@TestMetadata("deepGenericDelegatedProperty.kt")
public void testDeepGenericDelegatedProperty() throws Exception {
runTest("compiler/testData/codegen/box/ir/serializationRegressions/deepGenericDelegatedProperty.kt");