CLI tests: add LauncherScriptTest instead of generated 'kotlinc' script tests

The compiler behavior on test data in compiler/testData/cli is already tested
with CliTestGenerated, which is 4x faster and does not require to rebuild the
compiler jar with 'ant dist'. Leave only several simple tests to check that
'kotlinc', 'kotlinc-jvm' and 'kotlinc-js' scripts work
This commit is contained in:
Alexander Udalov
2016-02-09 10:19:41 +05:30
committed by Alexander Udalov
parent 04ccca8adc
commit 35a4aeeeba
8 changed files with 101 additions and 491 deletions
+4
View File
@@ -0,0 +1,4 @@
package test
fun main(args: Array<String>) {
}
+5
View File
@@ -0,0 +1,5 @@
package test
fun main(args: Array<String>) {
println("Hello!")
}