Skip to content

Commit b703e0a

Browse files
committedApr 19, 2021
8264569: Remove obsolete error messages from CDSTestUtils.java
Reviewed-by: iklam
1 parent 235daea commit b703e0a

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed
 

‎test/lib/jdk/test/lib/cds/CDSTestUtils.java

+4-12
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ public class CDSTestUtils {
4040
"UseSharedSpaces: Unable to allocate region, range is not within java heap.";
4141
public static final String MSG_RANGE_ALREADT_IN_USE =
4242
"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";
4445
public static final boolean DYNAMIC_DUMP = Boolean.getBoolean("test.dynamic.cds.archive");
4546

4647
public interface Checker {
@@ -352,17 +353,8 @@ public static void checkCommonExecExceptions(OutputAnalyzer output) throws Excep
352353
// could also improve usability in the field.
353354
public static boolean isUnableToMap(OutputAnalyzer output) {
354355
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))) {
366358
return true;
367359
}
368360

0 commit comments

Comments
 (0)
Please sign in to comment.