< prev index next >

test/hotspot/jtreg/compiler/rtm/cli/RTMGenericCommandLineOptionTest.java

Print this page
*** 34,12 ***
   */
  public abstract class RTMGenericCommandLineOptionTest {
  
      protected static final String RTM_INSTR_ERROR
              = "RTM instructions are not available on this CPU";
-     protected static final String RTM_OS_ERROR
-             = "RTM is not supported on this OS version";
      protected static final String RTM_UNSUPPORTED_VM_ERROR
              = "RTM locking optimization is not supported in this VM";
      protected static final String RTM_FOR_STACK_LOCKS_WARNING
              = "UseRTMForStackLocks flag should be off when UseRTMLocking "
              + "flag is off";
--- 34,10 ---

*** 82,11 ***
          this.experimentalOptionError = CommandLineOptionTest.
                  getExperimentalOptionErrorMessage(optionName);
      }
  
      public void runTestCases() throws Throwable {
!         if (Platform.isX86() || Platform.isX64() || Platform.isPPC()) {
              if (Platform.isServer()) {
                  runX86SupportedVMTestCases();
              } else {
                  runX86UnsupportedVMTestCases();
              }
--- 80,11 ---
          this.experimentalOptionError = CommandLineOptionTest.
                  getExperimentalOptionErrorMessage(optionName);
      }
  
      public void runTestCases() throws Throwable {
!         if (Platform.isX86() || Platform.isX64()) {
              if (Platform.isServer()) {
                  runX86SupportedVMTestCases();
              } else {
                  runX86UnsupportedVMTestCases();
              }
< prev index next >