hotspot/test/compiler/intrinsics/sha/cli/testcases/GenericTestCaseForOtherCPU.java
changeset 42543 9e7ac7aff2d1
parent 40631 ed82623d7831
equal deleted inserted replaced
42542:e8d67bf2f2de 42543:9e7ac7aff2d1
    35  * non-SPARC CPUs.
    35  * non-SPARC CPUs.
    36  */
    36  */
    37 public class GenericTestCaseForOtherCPU extends
    37 public class GenericTestCaseForOtherCPU extends
    38         SHAOptionsBase.TestCase {
    38         SHAOptionsBase.TestCase {
    39     public GenericTestCaseForOtherCPU(String optionName) {
    39     public GenericTestCaseForOtherCPU(String optionName) {
    40         // Execute the test case on any CPU except SPARC and X86
    40         // Execute the test case on any CPU except AArch64, S390x, SPARC and X86.
    41         super(optionName, new NotPredicate(
    41         super(optionName, new NotPredicate(
    42                 new OrPredicate(
    42                               new OrPredicate(Platform::isAArch64,
    43                     new OrPredicate(Platform::isSparc, Platform::isAArch64),
    43                               new OrPredicate(Platform::isS390x,
    44                     new OrPredicate(Platform::isX64, Platform::isX86))));
    44                               new OrPredicate(Platform::isSparc,
       
    45                               new OrPredicate(Platform::isX64, Platform::isX86))))));
    45     }
    46     }
    46 
    47 
    47     @Override
    48     @Override
    48     protected void verifyWarnings() throws Throwable {
    49     protected void verifyWarnings() throws Throwable {
    49         String shouldPassMessage = String.format("JVM should start with "
    50         String shouldPassMessage = String.format("JVM should start with "