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

changeset 9713
c4567d28f31f
parent 7141
fe6dafcd8ed0
equal deleted inserted replaced
9712:d7e1e002b496 9713:c4567d28f31f
34 public class GenericTestCaseForOtherCPU extends 34 public class GenericTestCaseForOtherCPU extends
35 SHAOptionsBase.TestCase { 35 SHAOptionsBase.TestCase {
36 public GenericTestCaseForOtherCPU(String optionName) { 36 public GenericTestCaseForOtherCPU(String optionName) {
37 // Execute the test case on any CPU except SPARC and X86 37 // Execute the test case on any CPU except SPARC and X86
38 super(optionName, new NotPredicate(new OrPredicate(Platform::isSparc, 38 super(optionName, new NotPredicate(new OrPredicate(Platform::isSparc,
39 new OrPredicate(Platform::isX64, Platform::isX86)))); 39 new OrPredicate(Platform::isPPC,
40 new OrPredicate(Platform::isX64, Platform::isX86)))));
40 } 41 }
41 42
42 @Override 43 @Override
43 protected void verifyWarnings() throws Throwable { 44 protected void verifyWarnings() throws Throwable {
44 // Verify that on non-x86 and non-SPARC CPU usage of SHA-related 45 // Verify that on non-x86 and non-SPARC CPU usage of SHA-related

mercurial