test/runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/test/runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java	Thu Nov 12 12:02:31 2015
--- new/test/runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java	Thu Nov 12 12:02:31 2015

*** 57,66 **** --- 57,85 ---- * (for default OS size) but other platforms insist it must be greater than 0 */ allOptionsAsMap.remove("ThreadStackSize"); /* + * JDK-8141650 + * Temporarily exclude SharedMiscDataSize as it will exit the VM with exit code 2 and + * "The shared miscellaneous data space is not large enough to preload requested classes." + * message at min value. + */ + allOptionsAsMap.remove("SharedMiscDataSize"); + + /* + * JDK-8142874 + * Temporarily exclude Shared* flagse as they will exit the VM with exit code 2 and + * "The shared miscellaneous data space is not large enough to preload requested classes." + * message at max values. + */ + allOptionsAsMap.remove("SharedReadWriteSize"); + allOptionsAsMap.remove("SharedReadOnlySize"); + allOptionsAsMap.remove("SharedMiscDataSize"); + allOptionsAsMap.remove("SharedMiscCodeSize"); + + /* * Exclude MallocMaxTestWords as it is expected to exit VM at small values (>=0) */ allOptionsAsMap.remove("MallocMaxTestWords"); /*

test/runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File