diff -r 66622fc2e247 -r 11b6d69215ec test/hotspot/jtreg/testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java --- a/test/hotspot/jtreg/testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java Thu Nov 30 14:58:41 2017 +0530 +++ b/test/hotspot/jtreg/testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java Thu Nov 30 15:05:03 2017 +0100 @@ -51,7 +51,7 @@ 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 methodNames; @@ -106,7 +106,7 @@ && 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()); } } }