< prev index next >

test/compiler/rtm/cli/TestUseRTMLockingOptionOnSupportedConfig.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.

*** 40,60 **** */ package compiler.rtm.cli; import compiler.testlibrary.rtm.predicate.SupportedCPU; import compiler.testlibrary.rtm.predicate.SupportedVM; import jdk.test.lib.process.ExitCode; import jdk.test.lib.cli.CommandLineOptionTest; import jdk.test.lib.cli.predicate.AndPredicate; public class TestUseRTMLockingOptionOnSupportedConfig extends CommandLineOptionTest { private static final String DEFAULT_VALUE = "false"; private TestUseRTMLockingOptionOnSupportedConfig() { ! super(new AndPredicate(new SupportedVM(), new SupportedCPU())); } @Override public void runTestCases() throws Throwable { String unrecongnizedOption --- 40,61 ---- */ package compiler.rtm.cli; import compiler.testlibrary.rtm.predicate.SupportedCPU; + import compiler.testlibrary.rtm.predicate.SupportedOS; import compiler.testlibrary.rtm.predicate.SupportedVM; import jdk.test.lib.process.ExitCode; import jdk.test.lib.cli.CommandLineOptionTest; import jdk.test.lib.cli.predicate.AndPredicate; public class TestUseRTMLockingOptionOnSupportedConfig extends CommandLineOptionTest { private static final String DEFAULT_VALUE = "false"; private TestUseRTMLockingOptionOnSupportedConfig() { ! super(new AndPredicate(new SupportedCPU(), new SupportedOS(), new SupportedVM())); } @Override public void runTestCases() throws Throwable { String unrecongnizedOption
< prev index next >