< prev index next >

test/runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java

Print this page


   1 /*
   2  * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


  58             option.excludeTestMinRange();
  59         }
  60     }
  61 
  62     private static void excludeTestRange(String optionName) {
  63         allOptionsAsMap.remove(optionName);
  64     }
  65 
  66     private static void setAllowedExitCodes(String optionName, Integer... allowedExitCodes) {
  67         JVMOption option = allOptionsAsMap.get(optionName);
  68 
  69         if (option != null) {
  70             option.setAllowedExitCodes(allowedExitCodes);
  71         }
  72     }
  73 
  74     public static void main(String[] args) throws Exception {
  75         int failedTests;
  76         List<JVMOption> allOptions;
  77 
  78         allOptionsAsMap = JVMOptionsUtils.getOptionsWithRangeAsMap();
  79 
  80         /* Shared flags can cause JVM to exit with error code 2 */
  81         setAllowedExitCodes("SharedReadWriteSize", 2);
  82         setAllowedExitCodes("SharedReadOnlySize", 2);
  83         setAllowedExitCodes("SharedMiscDataSize", 2);
  84         setAllowedExitCodes("SharedMiscCodeSize", 2);
  85 
  86         /*
  87          * Remove CICompilerCount from testing because currently it can hang system
  88          */
  89         excludeTestMaxRange("CICompilerCount");
  90 
  91         /*
  92          * JDK-8136766
  93          * Temporarily remove ThreadStackSize from testing because Windows can set it to 0
  94          * (for default OS size) but other platforms insist it must be greater than 0
  95         */
  96         excludeTestRange("ThreadStackSize");
  97 
  98         /*


   1 /*
   2  * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


  58             option.excludeTestMinRange();
  59         }
  60     }
  61 
  62     private static void excludeTestRange(String optionName) {
  63         allOptionsAsMap.remove(optionName);
  64     }
  65 
  66     private static void setAllowedExitCodes(String optionName, Integer... allowedExitCodes) {
  67         JVMOption option = allOptionsAsMap.get(optionName);
  68 
  69         if (option != null) {
  70             option.setAllowedExitCodes(allowedExitCodes);
  71         }
  72     }
  73 
  74     public static void main(String[] args) throws Exception {
  75         int failedTests;
  76         List<JVMOption> allOptions;
  77 
  78         allOptionsAsMap = JVMOptionsUtils.getOptionsWithRangeAsMap(origin -> (!(origin.contains("develop") || origin.contains("notproduct"))));
  79 
  80         /* Shared flags can cause JVM to exit with error code 2 */
  81         setAllowedExitCodes("SharedReadWriteSize", 2);
  82         setAllowedExitCodes("SharedReadOnlySize", 2);
  83         setAllowedExitCodes("SharedMiscDataSize", 2);
  84         setAllowedExitCodes("SharedMiscCodeSize", 2);
  85 
  86         /*
  87          * Remove CICompilerCount from testing because currently it can hang system
  88          */
  89         excludeTestMaxRange("CICompilerCount");
  90 
  91         /*
  92          * JDK-8136766
  93          * Temporarily remove ThreadStackSize from testing because Windows can set it to 0
  94          * (for default OS size) but other platforms insist it must be greater than 0
  95         */
  96         excludeTestRange("ThreadStackSize");
  97 
  98         /*


< prev index next >