< prev index next >

test/compiler/codecache/cli/codeheapsize/JVMStartupRunner.java

Print this page




   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 package codeheapsize;
  24 
  25 import common.CodeCacheCLITestCase;
  26 import common.CodeCacheOptions;


  27 import jdk.test.lib.ExitCode;
  28 import jdk.test.lib.Utils;
  29 import jdk.test.lib.cli.CommandLineOptionTest;
  30 import sun.hotspot.code.BlobType;

  31 import java.util.Random;
  32 
  33 /**
  34  * Test case runner aimed to verify option's consistency.
  35  */
  36 public class JVMStartupRunner implements CodeCacheCLITestCase.Runner {
  37     private static final String INCONSISTENT_CH_SIZES_ERROR
  38             = "Invalid code heap sizes.*";
  39 
  40     @Override
  41     public void run(CodeCacheCLITestCase.Description testCaseDescription,
  42             CodeCacheOptions options) throws Throwable {
  43         // Everything should be fine when
  44         // sum(all code heap sizes) == reserved CC size
  45         CommandLineOptionTest.verifySameJVMStartup(/* expected messages */ null,
  46                 new String[]{ INCONSISTENT_CH_SIZES_ERROR },
  47                 "JVM startup should not fail with consistent code heap sizes",
  48                 "JVM output should not contain warning about inconsistent code "
  49                 + "heap sizes", ExitCode.OK, options.prepareOptions());
  50 




   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 package compiler.codecache.cli.codeheapsize;
  25 
  26 import compiler.codecache.cli.common.CodeCacheCLITestCase;
  27 import compiler.codecache.cli.common.CodeCacheOptions;
  28 import jdk.test.lib.ExitCode;
  29 import jdk.test.lib.Utils;
  30 import jdk.test.lib.cli.CommandLineOptionTest;
  31 import sun.hotspot.code.BlobType;
  32 
  33 import java.util.Random;
  34 
  35 /**
  36  * Test case runner aimed to verify option's consistency.
  37  */
  38 public class JVMStartupRunner implements CodeCacheCLITestCase.Runner {
  39     private static final String INCONSISTENT_CH_SIZES_ERROR
  40             = "Invalid code heap sizes.*";
  41 
  42     @Override
  43     public void run(CodeCacheCLITestCase.Description testCaseDescription,
  44             CodeCacheOptions options) throws Throwable {
  45         // Everything should be fine when
  46         // sum(all code heap sizes) == reserved CC size
  47         CommandLineOptionTest.verifySameJVMStartup(/* expected messages */ null,
  48                 new String[]{ INCONSISTENT_CH_SIZES_ERROR },
  49                 "JVM startup should not fail with consistent code heap sizes",
  50                 "JVM output should not contain warning about inconsistent code "
  51                 + "heap sizes", ExitCode.OK, options.prepareOptions());
  52 


< prev index next >