annotate test/compiler/intrinsics/sha/cli/testcases/UseSHASpecificTestCaseForSupportedSparcCPU.java @ 20427:fe6dafcd8ed0

8055904: Develop tests for new command-line options related to SHA intrinsics Reviewed-by: kvn, iignatyev
author fzhinkin
date Wed, 03 Sep 2014 15:29:57 +0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20427
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
1 /*
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
4 *
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
7 * published by the Free Software Foundation.
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
8 *
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
13 * accompanied this code).
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
14 *
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
18 *
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
21 * questions.
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
22 */
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
23
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
24 import com.oracle.java.testlibrary.Asserts;
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
25 import com.oracle.java.testlibrary.ExitCode;
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
26 import com.oracle.java.testlibrary.Platform;
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
27 import com.oracle.java.testlibrary.cli.CommandLineOptionTest;
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
28 import com.oracle.java.testlibrary.cli.predicate.AndPredicate;
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
29 import sha.predicate.IntrinsicPredicates;
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
30
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
31 /**
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
32 * UseSHA specific test case targeted to SPARC CPUs which support any sha*
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
33 * instruction.
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
34 */
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
35 public class UseSHASpecificTestCaseForSupportedSparcCPU
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
36 extends SHAOptionsBase.TestCase {
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
37 public UseSHASpecificTestCaseForSupportedSparcCPU(String optionName) {
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
38 super(SHAOptionsBase.USE_SHA_OPTION, new AndPredicate(Platform::isSparc,
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
39 IntrinsicPredicates.ANY_SHA_INSTRUCTION_AVAILABLE));
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
40
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
41 Asserts.assertEQ(optionName, SHAOptionsBase.USE_SHA_OPTION,
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
42 "Test case should be used for " + SHAOptionsBase.USE_SHA_OPTION
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
43 + " option only.");
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
44 }
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
45
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
46 @Override
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
47 protected void verifyWarnings() throws Throwable {
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
48 // Verify that there will be no warnings when +UseSHA was passed and
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
49 // all UseSHA*Intrinsics options were disabled.
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
50 CommandLineOptionTest.verifySameJVMStartup(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
51 null, new String[] { ".*UseSHA.*" }, ExitCode.OK,
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
52 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
53 SHAOptionsBase.USE_SHA_OPTION, true),
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
54 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
55 SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, false),
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
56 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
57 SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, false),
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
58 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
59 SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, false));
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
60 }
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
61
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
62 @Override
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
63 protected void verifyOptionValues() throws Throwable {
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
64 // Verify that UseSHA is disabled when all UseSHA*Intrinscs are
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
65 // disabled.
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
66 CommandLineOptionTest.verifyOptionValueForSameVM(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
67 SHAOptionsBase.USE_SHA_OPTION, "false",
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
68 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
69 SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, false),
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
70 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
71 SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, false),
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
72 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
73 SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, false));
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
74
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
75 CommandLineOptionTest.verifyOptionValueForSameVM(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
76 // Verify that UseSHA is disabled when all UseSHA*Intrinscs are
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
77 // disabled even if it was explicitly enabled.
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
78 SHAOptionsBase.USE_SHA_OPTION, "false",
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
79 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
80 SHAOptionsBase.USE_SHA_OPTION, true),
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
81 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
82 SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, false),
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
83 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
84 SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, false),
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
85 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
86 SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, false));
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
87
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
88 // Verify that explicitly disabled UseSHA option remains disabled even
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
89 // if all UseSHA*Intrinsics options were enabled.
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
90 CommandLineOptionTest.verifyOptionValueForSameVM(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
91 SHAOptionsBase.USE_SHA_OPTION, "false",
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
92 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
93 SHAOptionsBase.USE_SHA_OPTION, false),
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
94 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
95 SHAOptionsBase.USE_SHA1_INTRINSICS_OPTION, true),
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
96 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
97 SHAOptionsBase.USE_SHA256_INTRINSICS_OPTION, true),
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
98 CommandLineOptionTest.prepareBooleanFlag(
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
99 SHAOptionsBase.USE_SHA512_INTRINSICS_OPTION, true));
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
100 }
fe6dafcd8ed0 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
101 }