We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3762ec3 commit 777c20cCopy full SHA for 777c20c
test/hotspot/jtreg/compiler/codecache/CheckSegmentedCodeCache.java
@@ -179,7 +179,9 @@ public static void main(String[] args) throws Exception {
179
// Fails if code heap sizes do not add up
180
pb = ProcessTools.createLimitedTestJavaProcessBuilder("-XX:+SegmentedCodeCache",
181
"-XX:ReservedCodeCacheSize=10M",
182
- "-XX:NonNMethodCodeHeapSize=5M",
+ // After fixing a round_down issue with large page sizes (JDK-8334564),
183
+ // 5M is a bit too small for NonNMethodCodeHeap
184
+ "-XX:NonNMethodCodeHeapSize=6M",
185
"-XX:ProfiledCodeHeapSize=5M",
186
"-XX:NonProfiledCodeHeapSize=5M",
187
"-version");
0 commit comments