Test turning incremental compilation on/off

This commit is contained in:
Alexey Tsvetkov
2015-11-16 16:03:07 +03:00
parent a8b551e518
commit e90dc047bd
39 changed files with 315 additions and 0 deletions
@@ -0,0 +1,3 @@
package foo
inline fun a(): Int = 0
@@ -0,0 +1,3 @@
package foo
inline fun a(): Int = 1
@@ -0,0 +1,3 @@
package foo
inline fun a(): Int = 2
@@ -0,0 +1,3 @@
package foo
fun b(): Int = a()
@@ -0,0 +1,20 @@
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/foo/AKt.class
End of files
Compiling files:
src/a.kt
src/b.kt
src/c.kt
End of files
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/foo/AKt.class
End of files
Compiling files:
src/a.kt
src/b.kt
src/c.kt
End of files
@@ -0,0 +1,3 @@
package foo
fun c(): Int = b()
@@ -0,0 +1,3 @@
kotlin-data-container
Module 'module' production
Module 'module' tests