Expanded incremental compilation tests with cache version change.

This commit is contained in:
Evgeny Gerashchenko
2015-03-17 19:34:09 +03:00
parent 2f001ca696
commit 2aeccc7011
11 changed files with 57 additions and 4 deletions
@@ -1,4 +1,5 @@
package test
fun f() {
other.other()
}
@@ -1,4 +1,5 @@
package test
fun g() {
other.other()
}
@@ -1,4 +1,5 @@
package test
fun g() {
other.other()
}
@@ -3,9 +3,12 @@ out/production/module/test/TestPackage$b$*.class
out/production/module/test/TestPackage.class
End of files
Cleaning output files:
out/production/module/other/OtherPackage$other$*.class
out/production/module/other/OtherPackage.class
out/production/module/test/TestPackage$a$*.class
End of files
Compiling files:
src/a.kt
src/b.kt
src/other.kt
End of files
@@ -0,0 +1,4 @@
package other
fun other() {
}