Workers draft (#655)

This commit is contained in:
Nikolay Igotti
2017-06-21 11:26:09 +03:00
committed by GitHub
parent 919ea4e8f7
commit 1ad50bc33f
16 changed files with 1052 additions and 48 deletions
+15
View File
@@ -425,6 +425,21 @@ task empty_substring(type: RunKonanTest) {
source = "runtime/basic/empty_substring.kt"
}
task worker0(type: RunKonanTest) {
goldValue = "Got Input processed\nOK\n"
source = "runtime/workers/worker0.kt"
}
task worker1(type: RunKonanTest) {
goldValue = "OK\n"
source = "runtime/workers/worker1.kt"
}
task worker2(type: RunKonanTest) {
goldValue = "OK\n"
source = "runtime/workers/worker2.kt"
}
task superFunCall(type: RunKonanTest) {
goldValue = "<fun:C><fun:C1>\n<fun:C><fun:C3>\n"
source = "codegen/basics/superFunCall.kt"