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,14 @@
Cleaning output files:
out/production/module/test/Trait$$TImpl.class
out/production/module/test/Trait$object.class
out/production/module/test/Trait.class
End of files
Compiling files:
src/const.kt
End of files
Cleaning output files:
out/production/module/test/Usage.class
End of files
Compiling files:
src/usage.kt
End of files
@@ -0,0 +1,8 @@
package test
trait Trait {
class object {
// Old and new constant values are different, but their hashes are the same
val CONST = "BF"
}
}
@@ -0,0 +1,8 @@
package test
trait Trait {
class object {
// Old and new constant values are different, but their hashes are the same
val CONST = "Ae"
}
}
@@ -0,0 +1,4 @@
package test
deprecated(Trait.CONST + Trait.CONST)
class Usage