JVM_IR: add test for signatures of flexible types

This commit is contained in:
Georgy Bronnikov
2021-07-15 14:48:25 +03:00
committed by TeamCityServer
parent 1d2d1f9e8d
commit 54957ead5c
12 changed files with 165 additions and 0 deletions
@@ -4089,6 +4089,22 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
}
}
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/signatureMangling")
@TestDataPath("$PROJECT_ROOT")
public class SignatureMangling {
@Test
public void testAllFilesPresentInSignatureMangling() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/boxInline/signatureMangling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
}
@Test
@TestMetadata("flexibleType.kt")
public void testFlexibleType() throws Exception {
runTest("compiler/testData/codegen/boxInline/signatureMangling/flexibleType.kt");
}
}
@Nested
@TestMetadata("compiler/testData/codegen/boxInline/simple")
@TestDataPath("$PROJECT_ROOT")