Add incremental compilation tests with lookup cache enabled

This commit is contained in:
Alexey Tsvetkov
2015-11-05 19:16:09 +03:00
parent a3aa91551c
commit ce7d1eb8e2
6 changed files with 137 additions and 17 deletions
@@ -39,4 +39,14 @@ public class IncrementalCompilation {
public static void enableIncrementalCompilation() {
System.setProperty(INCREMENTAL_COMPILATION_PROPERTY, "true");
}
@TestOnly
public static void disableExperimental() {
System.setProperty(IS_EXPERIMENTAL_PROPERTY, "false");
}
@TestOnly
public static void enableExperimental() {
System.setProperty(IS_EXPERIMENTAL_PROPERTY, "true");
}
}