--- old/test/lib/jdk/test/lib/cds/CDSTestUtils.java 2020-01-24 15:11:55.734375999 -0800 +++ new/test/lib/jdk/test/lib/cds/CDSTestUtils.java 2020-01-24 15:11:55.410369546 -0800 @@ -36,6 +36,11 @@ // This class contains common test utilities for testing CDS public class CDSTestUtils { + public static final String MSG_RANGE_NOT_WITHIN_HEAP = + "UseSharedSpaces: Unable to allocate region, range is not within java heap."; + public static final String MSG_RANGE_ALREADT_IN_USE = + "Unable to allocate region, java heap range is already in use."; + public interface Checker { public void check(OutputAnalyzer output) throws Exception; }