module compilation integration tests + changed test data layout

This commit is contained in:
Leonid Shalupov
2012-05-07 17:25:13 +04:00
parent cf1caa2b66
commit c404396cef
10 changed files with 38 additions and 9 deletions
@@ -0,0 +1 @@
Return code: 0
@@ -0,0 +1,5 @@
package Smoke
fun main(args: Array<String>) {
print("${args[0]}|${args[1]}|${args[2]}")
}
@@ -0,0 +1,7 @@
import kotlin.modules.*
fun project() {
module("smoke") {
sources += "Smoke.kt"
}
}
@@ -0,0 +1,2 @@
OUT 1|2|3
Return code: 0