author | gromero |
Fri, 14 Sep 2018 15:32:22 -0400 | |
changeset 51753 | 763aa4d1d596 |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
1 |
/* |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
2 |
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved. |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
4 |
* |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
8 |
* |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
13 |
* accompanied this code). |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
14 |
* |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
18 |
* |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
21 |
* questions. |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
22 |
*/ |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
23 |
|
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
24 |
/** |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
25 |
* @test |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
26 |
* @bug 8031320 |
51753 | 27 |
* @summary Verify UseRTMForStackLocks option processing on CPUs or OSs without |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
28 |
* rtm support and/or on VMs without rtm locking support. |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
29 |
* @library /test/lib / |
36851 | 30 |
* @modules java.base/jdk.internal.misc |
29678
dd2f3932c21e
8075586: Add @modules as needed to the open hotspot tests
ykantser
parents:
28200
diff
changeset
|
31 |
* java.management |
51753 | 32 |
* @requires !vm.rtm.cpu & vm.rtm.compiler |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
33 |
* @build sun.hotspot.WhiteBox |
39438 | 34 |
* @run driver ClassFileInstaller sun.hotspot.WhiteBox |
35 |
* sun.hotspot.WhiteBox$WhiteBoxPermission |
|
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
36 |
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
37 |
* -XX:+WhiteBoxAPI |
40059 | 38 |
* compiler.rtm.cli.TestUseRTMForStackLocksOptionOnUnsupportedConfig |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
39 |
*/ |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
40 |
|
40059 | 41 |
package compiler.rtm.cli; |
42 |
||
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
43 |
import jdk.test.lib.process.ExitCode; |
30604
b8d532cb6420
8067013: Rename the com.oracle.java.testlibary package
ykantser
parents:
29678
diff
changeset
|
44 |
import jdk.test.lib.cli.CommandLineOptionTest; |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
45 |
|
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
46 |
public class TestUseRTMForStackLocksOptionOnUnsupportedConfig |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
47 |
extends RTMGenericCommandLineOptionTest { |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
48 |
private static final String DEFAULT_VALUE = "false"; |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
49 |
|
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
50 |
private TestUseRTMForStackLocksOptionOnUnsupportedConfig() { |
46515
dbb676a40899
8181124: Get rid of compiler.testlibrary.rtm.predicate
epavlova
parents:
41705
diff
changeset
|
51 |
super("UseRTMForStackLocks", true, true, |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
52 |
TestUseRTMForStackLocksOptionOnUnsupportedConfig.DEFAULT_VALUE, |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
53 |
"true"); |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
54 |
} |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
55 |
|
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
56 |
@Override |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
57 |
protected void runX86SupportedVMTestCases() throws Throwable { |
28200
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
58 |
String shouldFailMessage = String.format("VM option '%s' is " |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
59 |
+ "experimental%nJVM startup should fail without " |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
60 |
+ "-XX:+UnlockExperimentalVMOptions flag", optionName); |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
61 |
|
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
62 |
// verify that option is experimental |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
63 |
CommandLineOptionTest.verifySameJVMStartup( |
28200
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
64 |
new String[] { experimentalOptionError }, null, |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
65 |
shouldFailMessage, shouldFailMessage + "%nError message " |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
66 |
+ "should be shown", ExitCode.FAIL, |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
67 |
prepareOptionValue("true")); |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
68 |
|
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
69 |
CommandLineOptionTest.verifySameJVMStartup( |
28200
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
70 |
new String[]{ experimentalOptionError }, null, |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
71 |
shouldFailMessage, shouldFailMessage + "%nError message " |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
72 |
+ "should be shown", ExitCode.FAIL, |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
73 |
prepareOptionValue("false")); |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
74 |
|
28200
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
75 |
String shouldPassMessage = String.format("VM option '%s' is " |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
76 |
+ " experimental%nJVM startup should pass with " |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
77 |
+ "-XX:+UnlockExperimentalVMOptions flag", optionName); |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
78 |
// verify that if we turn it on, then VM output will contain |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
79 |
// warning saying that this option could be turned on only |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
80 |
// when we use rtm locking |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
81 |
CommandLineOptionTest.verifySameJVMStartup( |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
82 |
new String[]{ |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
83 |
RTMGenericCommandLineOptionTest.RTM_FOR_STACK_LOCKS_WARNING |
28200
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
84 |
}, null, shouldPassMessage, "There should be warning when try " |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
85 |
+ "to use rtm for stack lock, but not using rtm locking", |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
86 |
ExitCode.OK, |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
87 |
CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS, |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
88 |
prepareOptionValue("true") |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
89 |
); |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
90 |
// verify that options is turned off by default |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
91 |
CommandLineOptionTest.verifyOptionValueForSameVM(optionName, |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
92 |
TestUseRTMForStackLocksOptionOnUnsupportedConfig.DEFAULT_VALUE, |
28200
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
93 |
String.format("Default value of option '%s' should be '%s'", |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
94 |
optionName, DEFAULT_VALUE), |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
95 |
CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS); |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
96 |
// verify that it could not be turned on without rtm locking |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
97 |
CommandLineOptionTest.verifyOptionValueForSameVM(optionName, |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
98 |
TestUseRTMForStackLocksOptionOnUnsupportedConfig.DEFAULT_VALUE, |
28200
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
99 |
String.format("Value of '%s' shouldn't able to be set to " |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
100 |
+ "'true' without setting -XX:+UseRTMLocking flag", |
38d3bf236c31
8054892: Improve compiler's CLI tests error reporting
eistepan
parents:
28190
diff
changeset
|
101 |
optionName), |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
102 |
CommandLineOptionTest.UNLOCK_EXPERIMENTAL_VM_OPTIONS, |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
103 |
prepareOptionValue("true")); |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
104 |
} |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
105 |
|
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
106 |
public static void main(String args[]) throws Throwable { |
46515
dbb676a40899
8181124: Get rid of compiler.testlibrary.rtm.predicate
epavlova
parents:
41705
diff
changeset
|
107 |
new TestUseRTMForStackLocksOptionOnUnsupportedConfig().runTestCases(); |
24007
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
108 |
} |
40c951a7d36c
8039496: Add sanity tests on RTM-related command line options
iignatyev
parents:
diff
changeset
|
109 |
} |