< prev index next >

test/compiler/intrinsics/sha/cli/TestUseSHAOptionOnUnsupportedCPU.java

Print this page
rev 8431 : 8081790: aarch64: SHA tests fail
Summary: Fix SHA tests in JTReg so they recognize aarch64
Reviewed-by: duke
Contributed-by: alexander.alexeev@caviumnetworks.com


  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 8035968
  27  * @summary Verify UseSHA option processing on unsupported CPU.
  28  * @library /testlibrary /../../test/lib /compiler/testlibrary testcases
  29  * @modules java.base/sun.misc
  30  *          java.management
  31  * @build TestUseSHAOptionOnUnsupportedCPU
  32  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  33  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  34  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  35  *                   -XX:+WhiteBoxAPI TestUseSHAOptionOnUnsupportedCPU
  36  */
  37 public class TestUseSHAOptionOnUnsupportedCPU {
  38     public static void main(String args[]) throws Throwable {
  39         new SHAOptionsBase(
  40                 new GenericTestCaseForUnsupportedSparcCPU(
  41                         SHAOptionsBase.USE_SHA_OPTION),
  42                 new UseSHASpecificTestCaseForUnsupportedSparcCPU(
  43                         SHAOptionsBase.USE_SHA_OPTION),
  44                 new GenericTestCaseForUnsupportedX86CPU(




  45                         SHAOptionsBase.USE_SHA_OPTION),
  46                 new GenericTestCaseForOtherCPU(
  47                         SHAOptionsBase.USE_SHA_OPTION)).test();
  48     }
  49 }


  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 8035968
  27  * @summary Verify UseSHA option processing on unsupported CPU.
  28  * @library /testlibrary /../../test/lib /compiler/testlibrary testcases
  29  * @modules java.base/sun.misc
  30  *          java.management
  31  * @build TestUseSHAOptionOnUnsupportedCPU
  32  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  33  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  34  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  35  *                   -XX:+WhiteBoxAPI TestUseSHAOptionOnUnsupportedCPU
  36  */
  37 public class TestUseSHAOptionOnUnsupportedCPU {
  38     public static void main(String args[]) throws Throwable {
  39         new SHAOptionsBase(
  40                 new GenericTestCaseForUnsupportedSparcCPU(
  41                         SHAOptionsBase.USE_SHA_OPTION),


  42                 new GenericTestCaseForUnsupportedX86CPU(
  43                         SHAOptionsBase.USE_SHA_OPTION),
  44                 new GenericTestCaseForUnsupportedAArch64CPU(
  45                         SHAOptionsBase.USE_SHA_OPTION),
  46                 new UseSHASpecificTestCaseForUnsupportedCPU(
  47                         SHAOptionsBase.USE_SHA_OPTION),
  48                 new GenericTestCaseForOtherCPU(
  49                         SHAOptionsBase.USE_SHA_OPTION)).test();
  50     }
  51 }
< prev index next >