< prev index next >

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

Print this page


   1 /*
   2  * Copyright (c) 2014, 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 package codeheapsize;
  24 
  25 import common.CodeCacheCLITestCase;
  26 import common.CodeCacheOptions;
  27 import com.oracle.java.testlibrary.ExitCode;
  28 import com.oracle.java.testlibrary.Utils;
  29 import com.oracle.java.testlibrary.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());


   1 /*
   2  * Copyright (c) 2014, 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 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());


< prev index next >