chore(build): 테스트 JVM 메모리 설정을 조정한다

This commit is contained in:
2026-07-10 16:45:22 +09:00
parent 924d4abbe2
commit 85f3c6f646

View File

@@ -102,13 +102,12 @@ tasks.withType<KotlinCompile> {
tasks.withType<Test> {
useJUnitPlatform()
val springContextCacheMaxSize = "1"
maxHeapSize = "1024m"
val springContextCacheMaxSize = (project.findProperty("test.springContextCacheMaxSize") as String?) ?: "1"
maxHeapSize = (project.findProperty("testMaxHeap") as String?) ?: "1536m"
maxParallelForks = 1
jvmArgs(
"-Dfile.encoding=UTF-8",
"-XX:+HeapDumpOnOutOfMemoryError",
"-Dspring.test.context.cache.maxSize=$springContextCacheMaxSize"
)
}