testsuite updated to reflect recent changes in codegen: branch support

This commit is contained in:
Konstantin Anisimov
2016-10-28 16:43:37 +03:00
committed by vvlevchenko
parent 76ee79adc0
commit 3c68ee4ce5
14 changed files with 149 additions and 4 deletions
+28 -4
View File
@@ -174,7 +174,31 @@ task hello2(type: RunKonanTest) {
source = "runtime/basic/hello2.kt"
} */
// TODO: waiting for boolean to be implemented
//task bool_yes(type: KonanTest) {
// source = "codegen/function/boolean.kt"
//}
task if_else(type: UnitKonanTest) {
source = "codegen/branching/if_else.kt"
}
task when2(type: UnitKonanTest) {
source = "codegen/branching/when2.kt"
}
task when5(type: UnitKonanTest) {
source = "codegen/branching/when5.kt"
}
task when_through(type: UnitKonanTest) {
source = "codegen/branching/when_through.kt"
}
task advanced_when2(type: UnitKonanTest) {
source = "codegen/branching/advanced_when2.kt"
}
task advanced_when5(type: UnitKonanTest) {
source = "codegen/branching/advanced_when5.kt"
}
task bool_yes(type: UnitKonanTest) {
source = "codegen/function/boolean.kt"
}