< prev index next >

test/compiler/rtm/locking/TestUseRTMXendForLockBusy.java

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

*** 28,53 **** * @summary Verify that UseRTMXendForLockBusy option affects * method behaviour if lock is busy. * @library /testlibrary /test/lib / * @modules java.base/jdk.internal.misc * java.management ! * @build TestUseRTMXendForLockBusy * @run driver ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions ! * -XX:+WhiteBoxAPI TestUseRTMXendForLockBusy */ ! import java.util.List; ! import jdk.test.lib.*; ! import jdk.test.lib.cli.CommandLineOptionTest; ! import jdk.test.lib.cli.predicate.AndPredicate; ! import compiler.testlibrary.rtm.*; import compiler.testlibrary.rtm.predicate.SupportedCPU; import compiler.testlibrary.rtm.predicate.SupportedVM; /** * Test verifies that with +UseRTMXendForLockBusy there will be no aborts * forced by the test. */ public class TestUseRTMXendForLockBusy extends CommandLineOptionTest { --- 28,61 ---- * @summary Verify that UseRTMXendForLockBusy option affects * method behaviour if lock is busy. * @library /testlibrary /test/lib / * @modules java.base/jdk.internal.misc * java.management ! * @build compiler.rtm.locking.TestUseRTMXendForLockBusy * @run driver ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions ! * -XX:+WhiteBoxAPI ! * compiler.rtm.locking.TestUseRTMXendForLockBusy */ ! package compiler.rtm.locking; ! import compiler.testlibrary.rtm.AbortType; ! import compiler.testlibrary.rtm.BusyLock; ! import compiler.testlibrary.rtm.CompilableTest; ! import compiler.testlibrary.rtm.RTMLockingStatistics; ! import compiler.testlibrary.rtm.RTMTestBase; import compiler.testlibrary.rtm.predicate.SupportedCPU; import compiler.testlibrary.rtm.predicate.SupportedVM; + import jdk.test.lib.Asserts; + import jdk.test.lib.OutputAnalyzer; + import jdk.test.lib.cli.CommandLineOptionTest; + import jdk.test.lib.cli.predicate.AndPredicate; + import java.util.List; + /** * Test verifies that with +UseRTMXendForLockBusy there will be no aborts * forced by the test. */ public class TestUseRTMXendForLockBusy extends CommandLineOptionTest {
< prev index next >