hotspot/test/compiler/intrinsics/sha/cli/testcases/GenericTestCaseForUnsupportedX86CPU.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.OrPredicate;
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 X86 CPUs that don't
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    31
 * support SHA-related instructions.
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 GenericTestCaseForUnsupportedX86CPU
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    34
        extends SHAOptionsBase.TestCase {
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    35
    public GenericTestCaseForUnsupportedX86CPU(String optionName) {
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    36
        super(optionName, new OrPredicate(Platform::isX64, Platform::isX86));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    37
    }
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
    @Override
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    40
    protected void verifyWarnings() throws Throwable {
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    41
        // Verify that when the tested option is explicitly enabled, then
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    42
        // a warning will occur in VM output.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    43
        CommandLineOptionTest.verifySameJVMStartup(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
                }, null, 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 the tested option could be explicitly disabled without
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    49
        // a warning.
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(optionName, false));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    54
    }
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    55
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    56
    @Override
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    57
    protected void verifyOptionValues() throws Throwable {
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    58
        // Verify that the tested option is disabled by default.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    59
        CommandLineOptionTest.verifyOptionValueForSameVM(optionName, "false");
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    60
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    61
        // Verify that it is not possible to explicitly enable the option.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    62
        CommandLineOptionTest.verifyOptionValueForSameVM(optionName, "false",
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    63
                CommandLineOptionTest.prepareBooleanFlag(optionName, true));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    64
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    65
        // Verify that the tested option is disabled even if +UseSHA was passed
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    66
        // to JVM.
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    67
        CommandLineOptionTest.verifyOptionValueForSameVM(optionName, "false",
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    68
                CommandLineOptionTest.prepareBooleanFlag(
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    69
                        SHAOptionsBase.USE_SHA_OPTION, true));
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    70
    }
0fa6c2cb6007 8055904: Develop tests for new command-line options related to SHA intrinsics
fzhinkin
parents:
diff changeset
    71
}