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

Print this page




  22  */
  23 
  24 import com.oracle.java.testlibrary.Asserts;
  25 import com.oracle.java.testlibrary.ExitCode;
  26 import com.oracle.java.testlibrary.Platform;
  27 import com.oracle.java.testlibrary.cli.CommandLineOptionTest;
  28 import com.oracle.java.testlibrary.cli.predicate.AndPredicate;
  29 import sha.predicate.IntrinsicPredicates;
  30 
  31 /**
  32  * UseSHA specific test case targeted to SPARC CPUs which support any sha*
  33  * instruction.
  34  */
  35 public class UseSHASpecificTestCaseForSupportedSparcCPU
  36         extends SHAOptionsBase.TestCase {
  37     public UseSHASpecificTestCaseForSupportedSparcCPU(String optionName) {
  38         super(SHAOptionsBase.USE_SHA_OPTION, new AndPredicate(Platform::isSparc,
  39                 IntrinsicPredicates.ANY_SHA_INSTRUCTION_AVAILABLE));
  40 
  41         Asserts.assertEQ(optionName, SHAOptionsBase.USE_SHA_OPTION,
  42                 "Test case should be used for " + SHAOptionsBase.USE_SHA_OPTION
  43                         + " option only.");
  44     }
  45 
  46     @Override
  47     protected void verifyWarnings() throws Throwable {





  48         // Verify that there will be no warnings when +UseSHA was passed and
  49         // all UseSHA*Intrinsics options were disabled.
  50         CommandLineOptionTest.verifySameJVMStartup(
  51                 null, new String[] { ".*UseSHA.*" }, ExitCode.OK,

  52                 CommandLineOptionTest.prepareBooleanFlag(
  53                         SHAOptionsBase.USE_SHA_OPTION, true),
  54                 CommandLineOptionTest.prepareBooleanFlag(
  55                         SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, false),
  56                 CommandLineOptionTest.prepareBooleanFlag(
  57                         SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, false),
  58                 CommandLineOptionTest.prepareBooleanFlag(
  59                         SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, false));
  60     }
  61 
  62     @Override
  63     protected void verifyOptionValues() throws Throwable {
  64         // Verify that UseSHA is disabled when all UseSHA*Intrinscs are
  65         // disabled.
  66         CommandLineOptionTest.verifyOptionValueForSameVM(
  67                 SHAOptionsBase.USE_SHA_OPTION, "false",


  68                 CommandLineOptionTest.prepareBooleanFlag(
  69                         SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, false),
  70                 CommandLineOptionTest.prepareBooleanFlag(
  71                         SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, false),
  72                 CommandLineOptionTest.prepareBooleanFlag(
  73                         SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, false));
  74 
  75         CommandLineOptionTest.verifyOptionValueForSameVM(
  76                 // Verify that UseSHA is disabled when all UseSHA*Intrinscs are
  77                 // disabled even if it was explicitly enabled.
  78                 SHAOptionsBase.USE_SHA_OPTION, "false",





  79                 CommandLineOptionTest.prepareBooleanFlag(
  80                         SHAOptionsBase.USE_SHA_OPTION, true),
  81                 CommandLineOptionTest.prepareBooleanFlag(
  82                         SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, false),
  83                 CommandLineOptionTest.prepareBooleanFlag(
  84                         SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, false),
  85                 CommandLineOptionTest.prepareBooleanFlag(
  86                         SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, false));
  87 
  88         // Verify that explicitly disabled UseSHA option remains disabled even
  89         // if all UseSHA*Intrinsics options were enabled.
  90         CommandLineOptionTest.verifyOptionValueForSameVM(
  91                 SHAOptionsBase.USE_SHA_OPTION, "false",





  92                 CommandLineOptionTest.prepareBooleanFlag(
  93                         SHAOptionsBase.USE_SHA_OPTION, false),
  94                 CommandLineOptionTest.prepareBooleanFlag(
  95                         SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, true),
  96                 CommandLineOptionTest.prepareBooleanFlag(
  97                         SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, true),
  98                 CommandLineOptionTest.prepareBooleanFlag(
  99                         SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, true));
 100     }
 101 }


  22  */
  23 
  24 import com.oracle.java.testlibrary.Asserts;
  25 import com.oracle.java.testlibrary.ExitCode;
  26 import com.oracle.java.testlibrary.Platform;
  27 import com.oracle.java.testlibrary.cli.CommandLineOptionTest;
  28 import com.oracle.java.testlibrary.cli.predicate.AndPredicate;
  29 import sha.predicate.IntrinsicPredicates;
  30 
  31 /**
  32  * UseSHA specific test case targeted to SPARC CPUs which support any sha*
  33  * instruction.
  34  */
  35 public class UseSHASpecificTestCaseForSupportedSparcCPU
  36         extends SHAOptionsBase.TestCase {
  37     public UseSHASpecificTestCaseForSupportedSparcCPU(String optionName) {
  38         super(SHAOptionsBase.USE_SHA_OPTION, new AndPredicate(Platform::isSparc,
  39                 IntrinsicPredicates.ANY_SHA_INSTRUCTION_AVAILABLE));
  40 
  41         Asserts.assertEQ(optionName, SHAOptionsBase.USE_SHA_OPTION,
  42                 String.format("Test case should be used for '%s' option only.",
  43                         SHAOptionsBase.USE_SHA_OPTION));
  44     }
  45 
  46     @Override
  47     protected void verifyWarnings() throws Throwable {
  48         String shouldPassMessage = String.format("JVM startup should pass when"
  49                         + " %s was passed and all UseSHA*Intrinsics options "
  50                         + "were disabled", 
  51                         CommandLineOptionTest.prepareBooleanFlag(
  52                             SHAOptionsBase.USE_SHA_OPTION, true));
  53         // Verify that there will be no warnings when +UseSHA was passed and
  54         // all UseSHA*Intrinsics options were disabled.
  55         CommandLineOptionTest.verifySameJVMStartup(
  56                 null, new String[] { ".*UseSHA.*" }, shouldPassMessage,
  57                 shouldPassMessage, ExitCode.OK,
  58                 CommandLineOptionTest.prepareBooleanFlag(
  59                         SHAOptionsBase.USE_SHA_OPTION, true),
  60                 CommandLineOptionTest.prepareBooleanFlag(
  61                         SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, false),
  62                 CommandLineOptionTest.prepareBooleanFlag(
  63                         SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, false),
  64                 CommandLineOptionTest.prepareBooleanFlag(
  65                         SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, false));
  66     }
  67 
  68     @Override
  69     protected void verifyOptionValues() throws Throwable {
  70         // Verify that UseSHA is disabled when all UseSHA*Intrinsics are
  71         // disabled.
  72         CommandLineOptionTest.verifyOptionValueForSameVM(
  73                 SHAOptionsBase.USE_SHA_OPTION, "false", String.format(
  74                 "'%s' option should be disabled when all UseSHA*Intrinsics are"
  75                         + " disabled", SHAOptionsBase.USE_SHA_OPTION),                
  76                 CommandLineOptionTest.prepareBooleanFlag(
  77                         SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, false),
  78                 CommandLineOptionTest.prepareBooleanFlag(
  79                         SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, false),
  80                 CommandLineOptionTest.prepareBooleanFlag(
  81                         SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, false));
  82 
  83         CommandLineOptionTest.verifyOptionValueForSameVM(
  84                 // Verify that UseSHA is disabled when all UseSHA*Intrinsics are
  85                 // disabled even if it was explicitly enabled.
  86                 SHAOptionsBase.USE_SHA_OPTION, "false",
  87                 String.format("'%s' option should be disabled when all "
  88                         + "UseSHA*Intrinsics are disabled even if %s flag set "
  89                         + "to JVM", SHAOptionsBase.USE_SHA_OPTION,
  90                         CommandLineOptionTest.prepareBooleanFlag(
  91                              SHAOptionsBase.USE_SHA_OPTION, true)),
  92                 CommandLineOptionTest.prepareBooleanFlag(
  93                         SHAOptionsBase.USE_SHA_OPTION, true),
  94                 CommandLineOptionTest.prepareBooleanFlag(
  95                         SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, false),
  96                 CommandLineOptionTest.prepareBooleanFlag(
  97                         SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, false),
  98                 CommandLineOptionTest.prepareBooleanFlag(
  99                         SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, false));
 100 
 101         // Verify that explicitly disabled UseSHA option remains disabled even
 102         // if all UseSHA*Intrinsics options were enabled.
 103         CommandLineOptionTest.verifyOptionValueForSameVM(
 104                 SHAOptionsBase.USE_SHA_OPTION, "false",
 105                 String.format("'%s' option should be disabled if %s flag "
 106                         + "set even if all UseSHA*Intrinsics were enabled",
 107                         SHAOptionsBase.USE_SHA_OPTION,
 108                         CommandLineOptionTest.prepareBooleanFlag(
 109                             SHAOptionsBase.USE_SHA_OPTION, false)),
 110                 CommandLineOptionTest.prepareBooleanFlag(
 111                         SHAOptionsBase.USE_SHA_OPTION, false),
 112                 CommandLineOptionTest.prepareBooleanFlag(
 113                         SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, true),
 114                 CommandLineOptionTest.prepareBooleanFlag(
 115                         SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, true),
 116                 CommandLineOptionTest.prepareBooleanFlag(
 117                         SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, true));
 118     }
 119 }