8192807: testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java fail due to new method in Platform.java

Reviewed-by: tschatzl, jwilhelm
This commit is contained in:
Stefan Johansson 2017-11-30 15:05:03 +01:00
parent f684b1a856
commit 937799a84c

@ -51,7 +51,7 @@ public class TestMutuallyExclusivePlatformPredicates {
VM_TYPE("isClient", "isServer", "isGraal", "isMinimal", "isZero", "isEmbedded"),
MODE("isInt", "isMixed", "isComp"),
IGNORED("isEmulatedClient", "isDebugBuild", "isFastDebugBuild", "isSlowDebugBuild",
"shouldSAAttach", "isTieredSupported");
"shouldSAAttach", "isTieredSupported", "areCustomLoadersSupportedForCDS");
public final List<String> methodNames;
@ -106,7 +106,7 @@ public class TestMutuallyExclusivePlatformPredicates {
&& m.getReturnType() == boolean.class) {
Asserts.assertTrue(allMethods.contains(m.getName()),
"All Platform's methods with signature '():Z' should "
+ "be tested ");
+ "be tested. Missing: " + m.getName());
}
}
}