Moved current incremental compiler test data into subdirectory.

Tweaked test generator to avoid creating test methods for parent directory of tests.
This commit is contained in:
Evgeny Gerashchenko
2014-07-08 18:22:50 +04:00
parent 829c25bcf9
commit 479711e812
166 changed files with 224 additions and 181 deletions
@@ -0,0 +1,3 @@
package test
var a = "a"
@@ -0,0 +1,4 @@
// TODO add var
package test
var b = "b"
@@ -0,0 +1,3 @@
package test
var b = "b"
@@ -0,0 +1,9 @@
Cleaning output files:
out/production/module/test/TestPackage-b-*.class
out/production/module/test/TestPackage-usage-*.class
out/production/module/test/TestPackage.class
End of files
Compiling files:
src/b.kt
src/usage.kt
End of files
@@ -0,0 +1,3 @@
package other
var other = "other"
@@ -0,0 +1,8 @@
package test
fun main(args: Array<String>) {
val x = a + b + other.other
a = "aa"
b = "bb"
other.other = "other.other"
}
@@ -0,0 +1,8 @@
package test
fun main(args: Array<String>) {
val x = a + b + other.other
a = "aa"
b = "bb"
other.other = "other.other"
}