JVM_IR: resolve inline fake overrides before codegen

See KT-33054 and KT-29242.
This commit is contained in:
pyos
2019-11-11 16:24:25 +01:00
committed by max-kammerer
parent 1b2091d536
commit 29a14e2330
8 changed files with 119 additions and 5 deletions
@@ -14446,6 +14446,16 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public static class Jvm8 extends AbstractLightAnalysisModeTest {
@TestMetadata("kt29242.kt")
public void ignoreKt29242() throws Exception {
runTest("compiler/testData/codegen/box/jvm8/kt29242.kt");
}
@TestMetadata("kt33054.kt")
public void ignoreKt33054() throws Exception {
runTest("compiler/testData/codegen/box/jvm8/kt33054.kt");
}
private void runTest(String testDataFilePath) throws Exception {
KotlinTestUtils.runTest(this::doTest, TargetBackend.JVM, testDataFilePath);
}