< prev index next >

test/runtime/CommandLine/OptionsValidation/TestOptionsWithRangesDynamic.java

Print this page




   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 writeable VM Options with ranges. 
  27  * @library /testlibrary /runtime/CommandLine/OptionsValidation/common




  28  * @run main/othervm -XX:MinHeapFreeRatio=0 -XX:MaxHeapFreeRatio=100 TestOptionsWithRangesDynamic
  29  */
  30 
  31 import java.util.List;
  32 import jdk.test.lib.Asserts;
  33 import optionsvalidation.JVMOption;
  34 import optionsvalidation.JVMOptionsUtils;
  35 
  36 public class TestOptionsWithRangesDynamic {
  37 
  38     public static void main(String[] args) throws Exception {
  39         int failedTests;
  40         List<JVMOption> allWriteableOptions;     
  41         
  42         /* Get only writeable options */
  43         allWriteableOptions = JVMOptionsUtils.getOptionsWithRange(origin -> (origin.contains("manageable") || origin.contains("rw")));
  44 
  45         Asserts.assertGT(allWriteableOptions.size(), 0, "Options with ranges not found!");
  46         
  47         System.out.println("Parsed " + allWriteableOptions.size() + " writeable options with ranges. Start test!");
  48 
  49         failedTests = JVMOptionsUtils.runDynamicTests(allWriteableOptions);
  50         
  51         failedTests += JVMOptionsUtils.runJcmdTests(allWriteableOptions);
  52         
  53         failedTests += JVMOptionsUtils.runAttachTests(allWriteableOptions);
  54 
  55         Asserts.assertEQ(failedTests, 0, 
  56                 String.format("%d tests failed! %s", failedTests, JVMOptionsUtils.getMessageWithFailures()));                
  57     }    
  58 }


   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 writeable 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 -XX:MinHeapFreeRatio=0 -XX:MaxHeapFreeRatio=100 TestOptionsWithRangesDynamic
  33  */
  34 
  35 import java.util.List;
  36 import jdk.test.lib.Asserts;
  37 import optionsvalidation.JVMOption;
  38 import optionsvalidation.JVMOptionsUtils;
  39 
  40 public class TestOptionsWithRangesDynamic {
  41 
  42     public static void main(String[] args) throws Exception {
  43         int failedTests;
  44         List<JVMOption> allWriteableOptions;     
  45         
  46         /* Get only writeable options */
  47         allWriteableOptions = JVMOptionsUtils.getOptionsWithRange(origin -> (origin.contains("manageable") || origin.contains("rw")));
  48 
  49         Asserts.assertGT(allWriteableOptions.size(), 0, "Options with ranges not found!");
  50         
  51         System.out.println("Test " + allWriteableOptions.size() + " writeable options with ranges. Start test!");
  52 
  53         failedTests = JVMOptionsUtils.runDynamicTests(allWriteableOptions);
  54         
  55         failedTests += JVMOptionsUtils.runJcmdTests(allWriteableOptions);
  56         
  57         failedTests += JVMOptionsUtils.runAttachTests(allWriteableOptions);
  58 
  59         Asserts.assertEQ(failedTests, 0, 
  60                 String.format("%d tests failed! %s", failedTests, JVMOptionsUtils.getMessageWithFailures()));                
  61     }    
  62 }
< prev index next >