From 7b155fc9d4c23653e08e8822db94877c88a792c8 Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Thu, 29 Mar 2018 23:43:58 +0200 Subject: [PATCH] Increase heap size for test --- idea/build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/idea/build.gradle.kts b/idea/build.gradle.kts index ac791d82b7b..47fc8b8a363 100644 --- a/idea/build.gradle.kts +++ b/idea/build.gradle.kts @@ -153,6 +153,10 @@ projectTest(taskName = "performanceTest") { classpath = performanceTest.runtimeClasspath workingDir = rootDir + jvmArgs.removeAll { it.startsWith("-Xmx") } + + maxHeapSize = "3g" + doFirst { systemProperty("idea.home.path", intellijRootDir().canonicalPath) }