Add dummy files to fix gradle incremental tests

Gradle won't call kotlin task if source directory is empty

KT-8487
This commit is contained in:
Alexey Tsvetkov
2016-02-17 18:27:52 +03:00
parent be44db7bd3
commit 402436f3eb
9 changed files with 99 additions and 1 deletions
@@ -6,6 +6,15 @@ End of files
Compiling files:
src/TheClass.kt
End of files
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/other/OtherKt.class
End of files
Compiling files:
src/other.kt
End of files
Exit code: OK
------------------------------------------
@@ -16,5 +25,14 @@ Cleaning output files:
End of files
Compiling files:
End of files
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/other/OtherKt.class
End of files
Compiling files:
src/other.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,20 @@
================ Step #1 =================
Cleaning output files:
out/production/module/TheClass.class
End of files
Compiling files:
src/TheClass.kt
End of files
Exit code: OK
------------------------------------------
================ Step #2 =================
Cleaning output files:
out/production/module/TheClass.class
End of files
Compiling files:
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,3 @@
package other
fun other() {}