< prev index next >

test/runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java

Print this page

        

@@ -49,10 +49,18 @@
         /*
          * Remove CICompilerCount from testing because currently it can hang system
          */
         allOptionsAsMap.remove("CICompilerCount");
 
+        /*
+         * Exclude below options as the maximum value of them would consume too much momory.
+         * And this would affect to other tests that running in parallel.
+         */
+        allOptionsAsMap.remove("G1ConcRefinementThreads");
+        allOptionsAsMap.remove("G1RSetRegionEntries");
+        allOptionsAsMap.remove("G1RSetSparseRegionEntries");
+
         allOptions = new ArrayList<>(allOptionsAsMap.values());
 
         Asserts.assertGT(allOptions.size(), 0, "Options with ranges not found!");
 
         System.out.println("Parsed " + allOptions.size() + " options with ranges. Start test!");
< prev index next >