Pack kotlin-test common tests into stdlib tests zip for native

This commit is contained in:
Ilya Gorbunov
2020-03-26 00:09:45 +03:00
parent ff104f4037
commit d2ff98fcb1

View File

@@ -766,6 +766,7 @@ val zipStdlibTests by task<Zip> {
archiveFileName.set("kotlin-stdlib-tests.zip")
from("libraries/stdlib/common/test") { into("common") }
from("libraries/stdlib/test") { into("test") }
from("libraries/kotlin.test/common/src/test/kotlin") { into("kotlin-test") }
doLast {
logger.lifecycle("Stdlib tests are packed to ${archiveFile.get()}")
}