< prev index next >

test/compiler/rtm/print/TestPrintPreciseRTMLockingStatistics.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.

*** 46,55 **** --- 46,56 ---- import compiler.testlibrary.rtm.AbortProvoker; import compiler.testlibrary.rtm.AbortType; 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.test.lib.Asserts; import jdk.test.lib.process.OutputAnalyzer; import jdk.test.lib.cli.CommandLineOptionTest; import jdk.test.lib.cli.predicate.AndPredicate;
*** 65,75 **** * total locks and aborts count as well as for specific abort types. */ public class TestPrintPreciseRTMLockingStatistics extends CommandLineOptionTest { private TestPrintPreciseRTMLockingStatistics() { ! super(new AndPredicate(new SupportedCPU(), new SupportedVM())); } @Override public void runTestCases() throws Throwable { verifyNoStatistics(); --- 66,76 ---- * total locks and aborts count as well as for specific abort types. */ public class TestPrintPreciseRTMLockingStatistics extends CommandLineOptionTest { private TestPrintPreciseRTMLockingStatistics() { ! super(new AndPredicate(new SupportedCPU(), new SupportedOS(), new SupportedVM())); } @Override public void runTestCases() throws Throwable { verifyNoStatistics();
< prev index next >