diff -r e0d59f0c2b7d -r 22ee476cc664 test/hotspot/jtreg/runtime/cds/SpaceUtilizationCheck.java --- a/test/hotspot/jtreg/runtime/cds/SpaceUtilizationCheck.java Thu Nov 14 10:02:52 2019 +0800 +++ b/test/hotspot/jtreg/runtime/cds/SpaceUtilizationCheck.java Wed Nov 13 16:36:54 2019 -0800 @@ -73,8 +73,8 @@ Matcher matcher = pattern.matcher(line); 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. + if (name.equals("bm")) { + // Bitmap space does not have a requested address. break; } else { System.out.println("Checking " + name + " in : " + line);