< prev index next >

test/hotspot/jtreg/compiler/intrinsics/sha/cli/TestUseSHA512IntrinsicsOptionOnUnsupportedCPU.java

Print this page
*** 1,7 ***
  /*
!  * Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved.
   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   *
   * This code is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License version 2 only, as
   * published by the Free Software Foundation.
--- 1,7 ---
  /*
!  * Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved.
   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   *
   * This code is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License version 2 only, as
   * published by the Free Software Foundation.

*** 37,20 ***
--- 37,23 ---
  
  package compiler.intrinsics.sha.cli;
  
  import compiler.intrinsics.sha.cli.testcases.GenericTestCaseForOtherCPU;
  import compiler.intrinsics.sha.cli.testcases.GenericTestCaseForUnsupportedAArch64CPU;
+ import compiler.intrinsics.sha.cli.testcases.GenericTestCaseForUnsupportedRISCV64CPU;
  import compiler.intrinsics.sha.cli.testcases.GenericTestCaseForUnsupportedX86CPU;
  import compiler.intrinsics.sha.cli.testcases.UseSHAIntrinsicsSpecificTestCaseForUnsupportedCPU;
  
  public class TestUseSHA512IntrinsicsOptionOnUnsupportedCPU {
      public static void main(String args[]) throws Throwable {
          new DigestOptionsBase(
                  new GenericTestCaseForUnsupportedX86CPU(
                          DigestOptionsBase.USE_SHA512_INTRINSICS_OPTION),
                  new GenericTestCaseForUnsupportedAArch64CPU(
                          DigestOptionsBase.USE_SHA512_INTRINSICS_OPTION),
+                 new GenericTestCaseForUnsupportedRISCV64CPU(
+                         DigestOptionsBase.USE_SHA512_INTRINSICS_OPTION),
                  new UseSHAIntrinsicsSpecificTestCaseForUnsupportedCPU(
                          DigestOptionsBase.USE_SHA512_INTRINSICS_OPTION),
                  new GenericTestCaseForOtherCPU(
                          DigestOptionsBase.USE_SHA512_INTRINSICS_OPTION)).test();
      }
< prev index next >