Increase amount of memory for Gradle Importing Tests

We have OOM in recent tests executions
This commit is contained in:
Nikolay Krasko
2021-03-08 23:50:51 +03:00
committed by TeamCityServer
parent 1a3515dbab
commit 9e5bf7e05c
@@ -125,7 +125,7 @@ abstract class GradleImportingTestCase : ExternalSystemImportingTestCase() {
"-Xmx256m -XX:MaxPermSize=64m"
else ->
// 128M should be enough for gradle 5.0+ (leak is fixed), and <4.0 (amount of tests is less)
"-Xms128M -Xmx192m -XX:MaxPermSize=64m"
"-Xms128M -Xmx256m -XX:MaxPermSize=64m"
}
override fun setUp() {