fix KT-9843 Bug in incremental compilation: module is not recompiled when optional parameter added

and KT-8434 Removing parameter with default value from function in different module breaks incremental compilation

#KT-9843 Fixed

#KT-8434 Fixed
This commit is contained in:
Michael Nedzelsky
2015-11-05 20:48:33 +03:00
parent 3dbb117598
commit 981d471ebe
26 changed files with 194 additions and 1 deletions
@@ -516,6 +516,33 @@ public class WriteFlagsTestGenerated extends AbstractWriteFlagsTest {
doTest(fileName);
}
}
@TestMetadata("compiler/testData/writeFlags/function/withDefaultArguments")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public static class WithDefaultArguments extends AbstractWriteFlagsTest {
public void testAllFilesPresentInWithDefaultArguments() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("compiler/testData/writeFlags/function/withDefaultArguments"), Pattern.compile("^(.+)\\.kt$"), true);
}
@TestMetadata("funInClass.kt")
public void testFunInClass() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/writeFlags/function/withDefaultArguments/funInClass.kt");
doTest(fileName);
}
@TestMetadata("funInClassObject.kt")
public void testFunInClassObject() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/writeFlags/function/withDefaultArguments/funInClassObject.kt");
doTest(fileName);
}
@TestMetadata("topLevelFun.kt")
public void testTopLevelFun() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/writeFlags/function/withDefaultArguments/topLevelFun.kt");
doTest(fileName);
}
}
}
@TestMetadata("compiler/testData/writeFlags/hidden")