test #433

Merged
klaus merged 41 commits from test into main 2026-07-10 07:20:07 +00:00
Showing only changes of commit 924d4abbe2 - Show all commits

View File

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