< prev index next >

test/compiler/intrinsics/sha/cli/testcases/GenericTestCaseForOtherCPU.java

Print this page

        

@@ -34,12 +34,13 @@
 public class GenericTestCaseForOtherCPU extends
         SHAOptionsBase.TestCase {
     public GenericTestCaseForOtherCPU(String optionName) {
         // Execute the test case on any CPU except SPARC and X86
         super(optionName, new NotPredicate(new OrPredicate(Platform::isSparc,
+                new OrPredicate(Platform::isAArch64,
                 new OrPredicate(Platform::isPPC,
-                new OrPredicate(Platform::isX64, Platform::isX86)))));
+                new OrPredicate(Platform::isX64, Platform::isX86))))));
     }
 
     @Override
     protected void verifyWarnings() throws Throwable {
         // Verify that on non-x86 and non-SPARC CPU usage of SHA-related
< prev index next >