@@ -40,7 +40,8 @@ public class CDSTestUtils {
40
40
"UseSharedSpaces: Unable to allocate region, range is not within java heap." ;
41
41
public static final String MSG_RANGE_ALREADT_IN_USE =
42
42
"Unable to allocate region, java heap range is already in use." ;
43
-
43
+ public static final String MSG_DYNAMIC_NOT_SUPPORTED =
44
+ "DynamicDumpSharedSpaces is unsupported when base CDS archive is not loaded" ;
44
45
public static final boolean DYNAMIC_DUMP = Boolean .getBoolean ("test.dynamic.cds.archive" );
45
46
46
47
public interface Checker {
@@ -352,17 +353,8 @@ public static void checkCommonExecExceptions(OutputAnalyzer output) throws Excep
352
353
// could also improve usability in the field.
353
354
public static boolean isUnableToMap (OutputAnalyzer output ) {
354
355
String outStr = output .getOutput ();
355
- if ((output .getExitValue () == 1 ) && (
356
- outStr .contains ("Unable to reserve shared space at required address" ) ||
357
- outStr .contains ("Unable to map ReadOnly shared space at required address" ) ||
358
- outStr .contains ("Unable to map ReadWrite shared space at required address" ) ||
359
- outStr .contains ("Unable to map MiscData shared space at required address" ) ||
360
- outStr .contains ("Unable to map MiscCode shared space at required address" ) ||
361
- outStr .contains ("Unable to map OptionalData shared space at required address" ) ||
362
- outStr .contains ("Could not allocate metaspace at a compatible address" ) ||
363
- outStr .contains ("UseSharedSpaces: Unable to allocate region, range is not within java heap" ) ||
364
- outStr .contains ("DynamicDumpSharedSpaces is unsupported when base CDS archive is not loaded" ) ))
365
- {
356
+ if ((output .getExitValue () == 1 ) &&
357
+ (outStr .contains (MSG_RANGE_NOT_WITHIN_HEAP ) || outStr .contains (MSG_DYNAMIC_NOT_SUPPORTED ))) {
366
358
return true ;
367
359
}
368
360
0 commit comments