hotspot/test/compiler/intrinsics/sha/cli/testcases/GenericTestCaseForSupportedSparcCPU.java
author fzhinkin
Wed, 03 Sep 2014 15:29:57 +0400
changeset 26439 0fa6c2cb6007
child 28200 38d3bf236c31
permissions -rw-r--r--
8055904: Develop tests for new command-line options related to SHA intrinsics Reviewed-by: kvn, iignatyev
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26439
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
     1
/*
0fa6c2cb6007 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.
0fa6c2cb6007 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.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
     4
 *
0fa6c2cb6007 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
0fa6c2cb6007 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
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
     8
 *
0fa6c2cb6007 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
0fa6c2cb6007 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
0fa6c2cb6007 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
0fa6c2cb6007 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
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    13
 * accompanied this code).
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    14
 *
0fa6c2cb6007 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
0fa6c2cb6007 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,
0fa6c2cb6007 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.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    18
 *
0fa6c2cb6007 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
0fa6c2cb6007 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
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    21
 * questions.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    22
 */
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    23
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    24
import com.oracle.java.testlibrary.ExitCode;
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    25
import com.oracle.java.testlibrary.Platform;
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    26
import com.oracle.java.testlibrary.cli.CommandLineOptionTest;
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    27
import com.oracle.java.testlibrary.cli.predicate.AndPredicate;
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    28
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    29
/**
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    30
 * Generic test case for SHA-related options targeted to SPARC CPUs which
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    31
 * support instructions required by the tested option.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    32
 */
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    33
public class GenericTestCaseForSupportedSparcCPU extends
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    34
        SHAOptionsBase.TestCase {
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    35
    public GenericTestCaseForSupportedSparcCPU(String optionName) {
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    36
        super(optionName, new AndPredicate(Platform::isSparc,
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    37
                SHAOptionsBase.getPredicateForOption(optionName)));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    38
    }
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    39
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    40
    @Override
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    41
    protected void verifyWarnings() throws Throwable {
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    42
        // Verify that there are no warning when option is explicitly enabled.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    43
        CommandLineOptionTest.verifySameJVMStartup(null, new String[] {
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    44
                        SHAOptionsBase.getWarningForUnsupportedCPU(optionName)
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    45
                }, ExitCode.OK,
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    46
                CommandLineOptionTest.prepareBooleanFlag(optionName, true));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    47
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    48
        // Verify that option could be disabled even if +UseSHA was passed to
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    49
        // JVM.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    50
        CommandLineOptionTest.verifySameJVMStartup(null, new String[] {
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    51
                        SHAOptionsBase.getWarningForUnsupportedCPU(optionName)
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    52
                }, ExitCode.OK,
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    53
                CommandLineOptionTest.prepareBooleanFlag(
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    54
                        SHAOptionsBase.USE_SHA_OPTION, true),
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    55
                CommandLineOptionTest.prepareBooleanFlag(optionName, false));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    56
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    57
        // Verify that it is possible to enable the tested option and disable
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    58
        // all SHA intrinsics via -UseSHA without any warnings.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    59
        CommandLineOptionTest.verifySameJVMStartup(null, new String[] {
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    60
                        SHAOptionsBase.getWarningForUnsupportedCPU(optionName)
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    61
                }, ExitCode.OK,
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    62
                CommandLineOptionTest.prepareBooleanFlag(
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    63
                        SHAOptionsBase.USE_SHA_OPTION, false),
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    64
                CommandLineOptionTest.prepareBooleanFlag(optionName, true));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    65
    }
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    66
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    67
    @Override
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    68
    protected void verifyOptionValues() throws Throwable {
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    69
        // Verify that on supported CPU option is enabled by default.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    70
        CommandLineOptionTest.verifyOptionValueForSameVM(optionName, "true");
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    71
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    72
        // Verify that it is possible to explicitly enable the option.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    73
        CommandLineOptionTest.verifyOptionValueForSameVM(optionName, "true",
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    74
                CommandLineOptionTest.prepareBooleanFlag(optionName, true));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    75
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    76
        // Verify that it is possible to explicitly disable the option.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    77
        CommandLineOptionTest.verifyOptionValueForSameVM(optionName, "false",
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    78
                CommandLineOptionTest.prepareBooleanFlag(optionName, false));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    79
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    80
        // verify that option is disabled when -UseSHA was passed to JVM.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    81
        CommandLineOptionTest.verifyOptionValueForSameVM(optionName, "false",
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    82
                CommandLineOptionTest.prepareBooleanFlag(optionName, true),
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    83
                CommandLineOptionTest.prepareBooleanFlag(
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    84
                        SHAOptionsBase.USE_SHA_OPTION, false));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    85
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    86
        // Verify that it is possible to explicitly disable the tested option
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    87
        // even if +UseSHA was passed to JVM.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    88
        CommandLineOptionTest.verifyOptionValueForSameVM(optionName, "false",
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    89
                CommandLineOptionTest.prepareBooleanFlag(
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    90
                        SHAOptionsBase.USE_SHA_OPTION, true),
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    91
                CommandLineOptionTest.prepareBooleanFlag(optionName, false));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    92
    }
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    93
}