< prev index next >

test/runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java

Print this page
rev 9473 : [mq]: webrev.00

*** 27,37 **** * @library /testlibrary /runtime/CommandLine/OptionsValidation/common * @modules java.base/sun.misc * java.management * jdk.attach * jdk.management/sun.tools.attach ! * @run main/othervm/timeout=780 TestOptionsWithRanges */ import java.util.ArrayList; import java.util.List; import java.util.Map; --- 27,37 ---- * @library /testlibrary /runtime/CommandLine/OptionsValidation/common * @modules java.base/sun.misc * java.management * jdk.attach * jdk.management/sun.tools.attach ! * @run main/othervm/timeout=900 TestOptionsWithRanges */ import java.util.ArrayList; import java.util.List; import java.util.Map;
*** 107,121 **** --- 107,130 ---- /* * Exclude below options as their maximum value would consume too much memory * and would affect other tests that run in parallel. */ + allOptionsAsMap.remove("ConcGCThreads"); excludeTestMaxRange("G1ConcRefinementThreads"); excludeTestMaxRange("G1RSetRegionEntries"); excludeTestMaxRange("G1RSetSparseRegionEntries"); excludeTestMaxRange("G1UpdateBufferSize"); excludeTestMaxRange("InitialBootClassLoaderMetaspaceSize"); + allOptionsAsMap.remove("InitialHeapSize"); + allOptionsAsMap.remove("MaxHeapSize"); + allOptionsAsMap.remove("MaxRAM"); + allOptionsAsMap.remove("NewSize"); + allOptionsAsMap.remove("OldSize"); + allOptionsAsMap.remove("ParallelGCThreads"); + + allOptionsAsMap.remove("VMThreadStackSize"); /* * Remove parameters controlling the code cache. As these * parameters have implications on the physical memory * reserved by the VM, setting them to large values may hang
< prev index next >