[Native][tests] Lower memory requirements for Gradle test tasks

This commit is contained in:
Dmitriy Dolovov
2022-05-24 14:24:51 +03:00
parent ae493e04c0
commit 992ef3db44
+1 -1
View File
@@ -72,7 +72,7 @@ enum class TestProperty(shortName: String) {
fun nativeTest(taskName: String, vararg tags: String) = projectTest(
taskName,
jUnitMode = JUnitMode.JUnit5,
maxHeapSizeMb = 6 * 1024 // Extra heap space for Kotlin/Native compiler.
maxHeapSizeMb = 3072 // Extra heap space for Kotlin/Native compiler.
) {
group = "verification"