< prev index next >

test/compiler/rtm/cli/TestRTMTotalCountIncrRateOptionOnUnsupportedConfig.java

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

*** 20,50 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ - import jdk.test.lib.cli.predicate.AndPredicate; - import jdk.test.lib.cli.predicate.NotPredicate; - import compiler.testlibrary.rtm.predicate.SupportedCPU; - import compiler.testlibrary.rtm.predicate.SupportedVM; - /** * @test * @bug 8031320 * @summary Verify RTMTotalCountIncrRate option processing on CPU without * rtm support and/or on VM without rtm locking support. * @library /testlibrary /test/lib / * @modules java.base/jdk.internal.misc * java.management ! * @build TestRTMTotalCountIncrRateOptionOnUnsupportedConfig * @run driver ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions * -XX:+WhiteBoxAPI ! * TestRTMTotalCountIncrRateOptionOnUnsupportedConfig */ public class TestRTMTotalCountIncrRateOptionOnUnsupportedConfig extends RTMGenericCommandLineOptionTest { private static final String DEFAULT_VALUE = "64"; private TestRTMTotalCountIncrRateOptionOnUnsupportedConfig() { --- 20,53 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ /** * @test * @bug 8031320 * @summary Verify RTMTotalCountIncrRate option processing on CPU without * rtm support and/or on VM without rtm locking support. * @library /testlibrary /test/lib / * @modules java.base/jdk.internal.misc * java.management ! * ! * @build compiler.rtm.cli.TestRTMTotalCountIncrRateOptionOnUnsupportedConfig * @run driver ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions * -XX:+WhiteBoxAPI ! * compiler.rtm.cli.TestRTMTotalCountIncrRateOptionOnUnsupportedConfig */ + package compiler.rtm.cli; + + import compiler.testlibrary.rtm.predicate.SupportedCPU; + import compiler.testlibrary.rtm.predicate.SupportedVM; + import jdk.test.lib.cli.predicate.AndPredicate; + import jdk.test.lib.cli.predicate.NotPredicate; + public class TestRTMTotalCountIncrRateOptionOnUnsupportedConfig extends RTMGenericCommandLineOptionTest { private static final String DEFAULT_VALUE = "64"; private TestRTMTotalCountIncrRateOptionOnUnsupportedConfig() {
< prev index next >