< prev index next >

test/lib/jdk/test/lib/Platform.java

Print this page

        

*** 348,357 **** --- 348,370 ---- } else { return "so"; } } + public static boolean isDefaultCDSArchiveSupported() { + return (is64bit() && + isServer() && + (isLinux() || + isOSX() || + isSolaris() || + isWindows()) && + !isZero() && + !isMinimal() && + !isAArch64() && + !isARM()); + } + /* * This should match the #if condition in ClassListParser::load_class_from_source(). */ public static boolean areCustomLoadersSupportedForCDS() { boolean isLinux = Platform.isLinux();
< prev index next >