< prev index next >

test/compiler/rtm/cli/TestRTMTotalCountIncrRateOptionOnSupportedConfig.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke


  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 /**
  26  * @test
  27  * @bug 8031320
  28  * @summary Verify RTMTotalCountIncrRate option processing on CPU with
  29  *          rtm support and on VM with rtm locking support.
  30  * @library /testlibrary /test/lib /
  31  * @modules java.base/jdk.internal.misc
  32  *          java.management
  33  * @build TestRTMTotalCountIncrRateOptionOnSupportedConfig

  34  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  35  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  36  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  37  *                   -XX:+WhiteBoxAPI
  38  *                   TestRTMTotalCountIncrRateOptionOnSupportedConfig
  39  */
  40 


  41 public class TestRTMTotalCountIncrRateOptionOnSupportedConfig
  42         extends RTMLockingAwareTest {
  43     private static final String DEFAULT_VALUE = "64";
  44 
  45     private TestRTMTotalCountIncrRateOptionOnSupportedConfig() {
  46         super("RTMTotalCountIncrRate", false, true,
  47                 TestRTMTotalCountIncrRateOptionOnSupportedConfig.DEFAULT_VALUE,
  48                 /* correct values */
  49                 new String[] { "1", "2", "128", "1024" },
  50                 /* incorrect values */
  51                 new String[] { "-1", "0", "3", "42" },
  52                 RTMGenericCommandLineOptionTest.RTM_COUNT_INCR_WARNING);
  53     }
  54 
  55     public static void main(String args[]) throws Throwable {
  56         new TestRTMTotalCountIncrRateOptionOnSupportedConfig().test();
  57     }
  58 }


  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 /**
  26  * @test
  27  * @bug 8031320
  28  * @summary Verify RTMTotalCountIncrRate option processing on CPU with
  29  *          rtm support and on VM with rtm locking support.
  30  * @library /testlibrary /test/lib /
  31  * @modules java.base/jdk.internal.misc
  32  *          java.management
  33  *
  34  * @build compiler.rtm.cli.TestRTMTotalCountIncrRateOptionOnSupportedConfig
  35  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  36  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  37  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  38  *                   -XX:+WhiteBoxAPI
  39  *                   compiler.rtm.cli.TestRTMTotalCountIncrRateOptionOnSupportedConfig
  40  */
  41 
  42 package compiler.rtm.cli;
  43 
  44 public class TestRTMTotalCountIncrRateOptionOnSupportedConfig
  45         extends RTMLockingAwareTest {
  46     private static final String DEFAULT_VALUE = "64";
  47 
  48     private TestRTMTotalCountIncrRateOptionOnSupportedConfig() {
  49         super("RTMTotalCountIncrRate", false, true,
  50                 TestRTMTotalCountIncrRateOptionOnSupportedConfig.DEFAULT_VALUE,
  51                 /* correct values */
  52                 new String[] { "1", "2", "128", "1024" },
  53                 /* incorrect values */
  54                 new String[] { "-1", "0", "3", "42" },
  55                 RTMGenericCommandLineOptionTest.RTM_COUNT_INCR_WARNING);
  56     }
  57 
  58     public static void main(String args[]) throws Throwable {
  59         new TestRTMTotalCountIncrRateOptionOnSupportedConfig().test();
  60     }
  61 }
< prev index next >