8282690: runtime/CommandLine/VMDeprecatedOptions.java fails after JDK-8281181
Reviewed-by: dholmes, dcubed
This commit is contained in:
parent
50eb915a74
commit
cde923dd47
@ -102,7 +102,6 @@ runtime/os/TestTracePageSizes.java#compiler-options 8267460 linux-aarch64
|
||||
runtime/os/TestTracePageSizes.java#G1 8267460 linux-aarch64
|
||||
runtime/os/TestTracePageSizes.java#Parallel 8267460 linux-aarch64
|
||||
runtime/os/TestTracePageSizes.java#Serial 8267460 linux-aarch64
|
||||
runtime/CommandLine/VMDeprecatedOptions.java 8282690 generic-all
|
||||
runtime/ErrorHandling/CreateCoredumpOnCrash.java 8267433 macosx-x64
|
||||
|
||||
applications/jcstress/copy.java 8229852 linux-all
|
||||
|
@ -45,6 +45,8 @@ public class VMDeprecatedOptions {
|
||||
*/
|
||||
public static final String[][] DEPRECATED_OPTIONS;
|
||||
static {
|
||||
// Use an ArrayList so platform-specific flags can be
|
||||
// optionally added.
|
||||
ArrayList<String[]> deprecated = new ArrayList(
|
||||
Arrays.asList(new String[][] {
|
||||
// deprecated non-alias flags:
|
||||
@ -54,14 +56,16 @@ public class VMDeprecatedOptions {
|
||||
{"InitialRAMFraction", "64"},
|
||||
{"TLABStats", "false"},
|
||||
{"AllowRedefinitionToAddDeleteMethods", "true"},
|
||||
{"UseContainerCpuShares", "false"},
|
||||
{"PreferContainerQuotaForCPUCount", "true"},
|
||||
|
||||
// deprecated alias flags (see also aliased_jvm_flags):
|
||||
{"DefaultMaxRAMFraction", "4"},
|
||||
{"CreateMinidumpOnCrash", "false"}
|
||||
}
|
||||
));
|
||||
if (Platform.isLinux()) {
|
||||
deprecated.add(new String[] {"UseContainerCpuShares", "false"});
|
||||
deprecated.add(new String[] {"PreferContainerQuotaForCPUCount", "true"});
|
||||
}
|
||||
DEPRECATED_OPTIONS = deprecated.toArray(new String[][]{});
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user