< prev index next >

test/compiler/rtm/locking/TestRTMLockingThreshold.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.
Reviewed-by: simonis

*** 43,52 **** --- 43,53 ---- 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;
*** 59,69 **** * Test verifies that RTMLockingThreshold option actually affects how soon * method will be deoptimized on low abort ratio. */ public class TestRTMLockingThreshold extends CommandLineOptionTest { private TestRTMLockingThreshold() { ! super(new AndPredicate(new SupportedVM(), new SupportedCPU())); } /** * We use non-zero abort threshold to avoid abort related to * interrupts, VMM calls, etc. during first lock attempt. --- 60,70 ---- * Test verifies that RTMLockingThreshold option actually affects how soon * method will be deoptimized on low abort ratio. */ public class TestRTMLockingThreshold extends CommandLineOptionTest { private TestRTMLockingThreshold() { ! super(new AndPredicate(new SupportedCPU(), new SupportedOS(), new SupportedVM())); } /** * We use non-zero abort threshold to avoid abort related to * interrupts, VMM calls, etc. during first lock attempt.
< prev index next >