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
@@ -0,0 +1,15 @@
Cleaning output files:
out/production/module1/a/A.class
out/production/module1/a/APackage$module1_a$*.class
out/production/module1/a/APackage.class
End of files
Compiling files:
module1/src/module1_a.kt
End of files
Cleaning output files:
out/production/module2/b/BPackage$module2_b$*.class
out/production/module2/b/BPackage.class
End of files
Compiling files:
module2/src/module2_b.kt
End of files
@@ -0,0 +1,2 @@
module1->
module2->module1
@@ -0,0 +1,6 @@
package a
class A
fun a() {
}
@@ -0,0 +1,5 @@
package b
fun b(param: a.A) {
a.a()
}
@@ -0,0 +1,5 @@
package b
fun b(param: a.A) {
a.a()
}