< prev index next >

test/compiler/cpuflags/TestAESIntrinsicsOnSupportedConfig.java

Print this page
rev 9959 : 8148012: get rid of slash-dot-dot in @library directives
Reviewed-by:
rev 9801 : 8146129: quarantine compiler/cpuflags/TestAESIntrinsicsOnSupportedConfig.java
Reviewed-by: twisti
rev 9660 : 8079667: port vm/compiler/AESIntrinsics/CheckIntrinsics into jtreg
Reviewed-by: kvn
Contributed-by: alexander.vorobyev@oracle.com


  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 import jdk.test.lib.OutputAnalyzer;
  25 import jdk.test.lib.Platform;
  26 import jdk.test.lib.ProcessTools;
  27 
  28 /*
  29  * @test
  30  * @library /testlibrary /../../test/lib /compiler/whitebox
  31  *          /compiler/testlibrary /compiler/codegen/7184394
  32  * @modules java.base/sun.misc
  33  *          java.management
  34  * @ignore 8146128
  35  * @build TestAESIntrinsicsOnSupportedConfig TestAESMain
  36  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  37  *                  sun.hotspot.WhiteBox$WhiteBoxPermission
  38  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  39  *                   -XX:+WhiteBoxAPI -Xbatch
  40  *                   TestAESIntrinsicsOnSupportedConfig
  41  */
  42 public class TestAESIntrinsicsOnSupportedConfig extends AESIntrinsicsBase {
  43 
  44     /**
  45      * Constructs new TestAESIntrinsicsOnSupportedConfig that will be executed
  46      * only if AESSupportPredicate returns true
  47      */
  48     private TestAESIntrinsicsOnSupportedConfig() {
  49         super(AESIntrinsicsBase.AES_SUPPORTED_PREDICATE);
  50     }




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 import jdk.test.lib.OutputAnalyzer;
  25 import jdk.test.lib.Platform;
  26 import jdk.test.lib.ProcessTools;
  27 
  28 /*
  29  * @test
  30  * @library /testlibrary /test/lib /compiler/whitebox
  31  *          /compiler/testlibrary /compiler/codegen/7184394
  32  * @modules java.base/sun.misc
  33  *          java.management
  34  * @ignore 8146128
  35  * @build TestAESIntrinsicsOnSupportedConfig TestAESMain
  36  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  37  *                  sun.hotspot.WhiteBox$WhiteBoxPermission
  38  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  39  *                   -XX:+WhiteBoxAPI -Xbatch
  40  *                   TestAESIntrinsicsOnSupportedConfig
  41  */
  42 public class TestAESIntrinsicsOnSupportedConfig extends AESIntrinsicsBase {
  43 
  44     /**
  45      * Constructs new TestAESIntrinsicsOnSupportedConfig that will be executed
  46      * only if AESSupportPredicate returns true
  47      */
  48     private TestAESIntrinsicsOnSupportedConfig() {
  49         super(AESIntrinsicsBase.AES_SUPPORTED_PREDICATE);
  50     }


< prev index next >