tests: Support custom konan.home for platform lib tests

* Move testLibrary tasks from klib into backend.native/tests
 * Support konan.home property in them
This commit is contained in:
Ilya Matveev
2017-10-31 19:32:05 +03:00
committed by ilmat192
parent dd1f795ebb
commit d7795bb207
3 changed files with 32 additions and 31 deletions
@@ -0,0 +1,9 @@
package test.konan.platform
fun produceMessage() {
println("""This is a side effect of a test library linked into the binary.
You should not be seeing this.
""")
}
val x: Unit = produceMessage()