< prev index next >

test/compiler/rtm/locking/TestRTMDeoptOnLowAbortRatio.java

Print this page
rev 11916 : 8165235: [TESTBUG] RTM tests must check OS version
Summary: Also change enabling RTM on Aix to OS version 7.2.

*** 42,51 **** --- 42,52 ---- import compiler.testlibrary.rtm.AbortProvoker; 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.SupportedOS; import compiler.testlibrary.rtm.predicate.SupportedVM; import jdk.internal.misc.Unsafe; import jdk.test.lib.Asserts; import jdk.test.lib.process.OutputAnalyzer; import jdk.test.lib.unsafe.UnsafeHelper;
*** 65,75 **** public class TestRTMDeoptOnLowAbortRatio extends CommandLineOptionTest { private static final long LOCKING_THRESHOLD = 100L; private static final long ABORT_THRESHOLD = LOCKING_THRESHOLD / 2L; private TestRTMDeoptOnLowAbortRatio() { ! super(new AndPredicate(new SupportedCPU(), new SupportedVM())); } @Override protected void runTestCases() throws Throwable { verifyRTMDeopt(false); --- 66,76 ---- public class TestRTMDeoptOnLowAbortRatio extends CommandLineOptionTest { private static final long LOCKING_THRESHOLD = 100L; private static final long ABORT_THRESHOLD = LOCKING_THRESHOLD / 2L; private TestRTMDeoptOnLowAbortRatio() { ! super(new AndPredicate(new SupportedCPU(), new SupportedOS(), new SupportedVM())); } @Override protected void runTestCases() throws Throwable { verifyRTMDeopt(false);
< prev index next >