< prev index next >

test/hotspot/jtreg/runtime/cds/SpaceUtilizationCheck.java

Print this page

*** 74,83 **** --- 74,86 ---- if (matcher.find()) { String name = matcher.group(1); if (name.equals("s0") || name.equals("s1")) { // String regions are listed at the end and they may not be fully occupied. break; + } else if (name.equals("bm")) { + // Bitmap space does not have a requested address. + break; } else { System.out.println("Checking " + name + " in : " + line); checked.put(name, name); } long used = Long.parseLong(matcher.group(2));
< prev index next >