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  */
  23 
  24 /*
  25  * @test
  26  * @summary Test VM Options with ranges
  27  * @library /testlibrary /runtime/CommandLine/OptionsValidation/common
  28  * @modules java.base/sun.misc
  29  *          java.management
  30  *          jdk.attach
  31  *          jdk.management/sun.tools.attach
  32  * @run main/othervm/timeout=600 TestOptionsWithRanges
  33  */
  34 
  35 import java.util.ArrayList;
  36 import java.util.List;
  37 import java.util.Map;
  38 import jdk.test.lib.Asserts;
  39 import optionsvalidation.JVMOption;
  40 import optionsvalidation.JVMOptionsUtils;
  41 
  42 public class TestOptionsWithRanges {
  43 
  44     public static void main(String[] args) throws Exception {
  45         int failedTests;
  46         Map<String, JVMOption> allOptionsAsMap = JVMOptionsUtils.getOptionsWithRangeAsMap();
  47         List<JVMOption> allOptions;
  48 
  49         /*
  50          * Remove CICompilerCount from testing because currently it can hang system
  51          */
  52         allOptionsAsMap.remove("CICompilerCount");
  53 
  54         allOptions = new ArrayList<>(allOptionsAsMap.values());
  55 
  56         Asserts.assertGT(allOptions.size(), 0, "Options with ranges not found!");
  57 
  58         System.out.println("Parsed " + allOptions.size() + " options with ranges. Start test!");
  59 
  60         failedTests = JVMOptionsUtils.runCommandLineTests(allOptions);
  61 
  62         Asserts.assertEQ(failedTests, 0,
  63                 String.format("%d tests failed! %s", failedTests, JVMOptionsUtils.getMessageWithFailures()));
  64     }
  65 }