< prev index next >

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

Print this page
@@ -1,7 +1,7 @@
  /*
-  * Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved.
+  * 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.UseSHASpecificTestCaseForUnsupportedCPU;
  
  public class TestUseSHAOptionOnUnsupportedCPU {
      public static void main(String args[]) throws Throwable {
          new DigestOptionsBase(
                  new GenericTestCaseForUnsupportedX86CPU(
                          DigestOptionsBase.USE_SHA_OPTION),
                  new GenericTestCaseForUnsupportedAArch64CPU(
                          DigestOptionsBase.USE_SHA_OPTION),
+                 new GenericTestCaseForUnsupportedRISCV64CPU(
+                         DigestOptionsBase.USE_SHA_OPTION),
                  new UseSHASpecificTestCaseForUnsupportedCPU(
                          DigestOptionsBase.USE_SHA_OPTION),
                  new GenericTestCaseForOtherCPU(
                          DigestOptionsBase.USE_SHA_OPTION)).test();
      }
< prev index next >