Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,8 @@ subprojects { subproject ->
tasks.withType(Test).configureEach {
// Allow EasyMock/CGLIB to use reflection on Java base classes when running on newer JDKs.
jvmArgs += ["--add-opens", "java.base/java.lang=ALL-UNNAMED"]
// org.gradle.jvmargs sizes the daemon, not the forked test JVM, which Gradle otherwise
// leaves at 512m. The suite runs against that ceiling, spending most of its GC time there.
maxHeapSize = "2g"
}
}
Loading