A couple of konanc driver tests.

This commit is contained in:
Alexander Gorshenev
2017-03-31 03:38:16 +03:00
committed by alexander-gorshenev
parent 742934a1d8
commit 9fd555471a
2 changed files with 45 additions and 0 deletions
+13
View File
@@ -1554,11 +1554,24 @@ task deserialized_inline0(type: RunKonanTest) {
source = "serialization/deserialized_inline0.kt"
flags = ["--enable", "deserializer"]
}
task deserialized_listof0(type: RunKonanTest) {
source = "serialization/deserialized_listof0.kt"
flags = ["--enable", "deserializer"]
}
// Just check that the driver is able to produce runnable binaries.
task driver0(type: RunDriverKonanTest) {
goldValue = "Hello, world!\n"
source = "runtime/basic/hello0.kt"
}
task driver_opt(type: RunDriverKonanTest) {
goldValue = "Hello, world!\n"
source = "runtime/basic/hello0.kt"
flags = ["-opt"]
}
// Enable when deserialization for default arguments is fixed.
task inline_defaultArgs_linkTest(type: LinkKonanTest) {
disabled = true