tests: Allow setting konan.jvmArgs in gradle plugin tests

This commit is contained in:
Ilya Matveev
2017-12-21 13:40:08 +07:00
committed by ilmat192
parent 68e54c5bb7
commit c26c7f10e3
2 changed files with 12 additions and 5 deletions
@@ -79,6 +79,9 @@ test {
dependsOn ':dist'
systemProperty("konan.home", distDir.absolutePath)
}
if (project.hasProperty("konan.jvmArgs")) {
systemProperty("konan.jvmArgs", project.property("konan.jvmArgs"))
}
// Uncomment for debugging.
//testLogging.showStandardStreams = true
if (project.hasProperty("maxParallelForks")) {