unit-tests: Create a simple test runner implementation

This commit is contained in:
Vasily Levchenko
2017-05-03 07:52:07 +03:00
committed by ilmat192
parent 77195e8e90
commit f26e5b5f02
18 changed files with 550 additions and 3 deletions
+6
View File
@@ -1950,6 +1950,11 @@ task deserialized_members(type: LinkKonanTest) {
source = "serialization/deserialize_members.kt"
}
task testing_smoke(type: RunKonanTest) {
source = "testing/smoke.kt"
flags = [] // TODO: Add flag to generate test-runner
}
// Just check that the driver is able to produce runnable binaries.
task driver0(type: RunDriverKonanTest) {
goldValue = "Hello, world!\n"
@@ -2121,3 +2126,4 @@ if (isMac()) {
}
}
}