Skip to content

Commit 1bdd79e

Browse files
committedOct 4, 2024
8341261: Tests assume UnlockExperimentalVMOptions is disabled by default
Reviewed-by: stefank, mli, ysr
1 parent ec020f3 commit 1bdd79e

File tree

3 files changed

+58
-20
lines changed

3 files changed

+58
-20
lines changed
 

‎test/hotspot/jtreg/compiler/blackhole/BlackholeExperimentalUnlockTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* @test
2626
* @library /test/lib /
2727
* @requires vm.flagless
28+
* @requires ! vm.opt.final.UnlockExperimentalVMOptions
2829
* @requires vm.compMode != "Xint"
2930
* @run driver compiler.blackhole.BlackholeExperimentalUnlockTest
3031
*/

‎test/hotspot/jtreg/runtime/CommandLine/VMOptionWarning.java

+56-20
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,37 @@
2222
*/
2323

2424
/*
25-
* @test
25+
* @test VMOptionWarningExperimental
2626
* @bug 8027314
27-
* @summary Warn if diagnostic or experimental vm option is used and -XX:+UnlockDiagnosticVMOptions or -XX:+UnlockExperimentalVMOptions, respectively, isn't specified. Warn if develop vm option is used with product version of VM.
27+
* @summary Warn if experimental vm option is used and -XX:+UnlockExperimentalVMOptions isn't specified.
2828
* @requires vm.flagless
29+
* @requires ! vm.opt.final.UnlockExperimentalVMOptions
2930
* @library /test/lib
3031
* @modules java.base/jdk.internal.misc
3132
* java.management
32-
* @run driver VMOptionWarning
33+
* @run driver VMOptionWarning Experimental
34+
*/
35+
36+
/* @test VMOptionWarningDiagnostic
37+
* @bug 8027314
38+
* @summary Warn if diagnostic vm option is used and -XX:+UnlockDiagnosticVMOptions isn't specified.
39+
* @requires vm.flagless
40+
* @requires ! vm.debug
41+
* @library /test/lib
42+
* @modules java.base/jdk.internal.misc
43+
* java.management
44+
* @run driver VMOptionWarning Diagnostic
45+
*/
46+
47+
/* @test VMOptionWarningDevelop
48+
* @bug 8027314
49+
* @summary Warn if develop vm option is used with product version of VM.
50+
* @requires vm.flagless
51+
* @requires ! vm.debug
52+
* @library /test/lib
53+
* @modules java.base/jdk.internal.misc
54+
* java.management
55+
* @run driver VMOptionWarning Develop
3356
*/
3457

3558
import jdk.test.lib.process.ProcessTools;
@@ -38,24 +61,37 @@
3861

3962
public class VMOptionWarning {
4063
public static void main(String[] args) throws Exception {
41-
ProcessBuilder pb = ProcessTools.createLimitedTestJavaProcessBuilder("-XX:+AlwaysSafeConstructors", "-version");
42-
OutputAnalyzer output = new OutputAnalyzer(pb.start());
43-
output.shouldNotHaveExitValue(0);
44-
output.shouldContain("Error: VM option 'AlwaysSafeConstructors' is experimental and must be enabled via -XX:+UnlockExperimentalVMOptions.");
45-
46-
if (Platform.isDebugBuild()) {
47-
System.out.println("Skip the rest of the tests on debug builds since diagnostic, and develop options are available on debug builds.");
48-
return;
64+
if (args.length != 1) {
65+
throw new RuntimeException("wrong number of args: " + args.length);
4966
}
5067

51-
pb = ProcessTools.createLimitedTestJavaProcessBuilder("-XX:+PrintInlining", "-version");
52-
output = new OutputAnalyzer(pb.start());
53-
output.shouldNotHaveExitValue(0);
54-
output.shouldContain("Error: VM option 'PrintInlining' is diagnostic and must be enabled via -XX:+UnlockDiagnosticVMOptions.");
55-
56-
pb = ProcessTools.createLimitedTestJavaProcessBuilder("-XX:+VerifyStack", "-version");
57-
output = new OutputAnalyzer(pb.start());
58-
output.shouldNotHaveExitValue(0);
59-
output.shouldContain("Error: VM option 'VerifyStack' is develop and is available only in debug version of VM.");
68+
ProcessBuilder pb;
69+
OutputAnalyzer output;
70+
switch (args[0]) {
71+
case "Experimental": {
72+
pb = ProcessTools.createLimitedTestJavaProcessBuilder("-XX:+AlwaysSafeConstructors", "-version");
73+
output = new OutputAnalyzer(pb.start());
74+
output.shouldNotHaveExitValue(0);
75+
output.shouldContain("Error: VM option 'AlwaysSafeConstructors' is experimental and must be enabled via -XX:+UnlockExperimentalVMOptions.");
76+
break;
77+
}
78+
case "Diagnostic": {
79+
pb = ProcessTools.createLimitedTestJavaProcessBuilder("-XX:+PrintInlining", "-version");
80+
output = new OutputAnalyzer(pb.start());
81+
output.shouldNotHaveExitValue(0);
82+
output.shouldContain("Error: VM option 'PrintInlining' is diagnostic and must be enabled via -XX:+UnlockDiagnosticVMOptions.");
83+
break;
84+
}
85+
case "Develop": {
86+
pb = ProcessTools.createLimitedTestJavaProcessBuilder("-XX:+VerifyStack", "-version");
87+
output = new OutputAnalyzer(pb.start());
88+
output.shouldNotHaveExitValue(0);
89+
output.shouldContain("Error: VM option 'VerifyStack' is develop and is available only in debug version of VM.");
90+
break;
91+
}
92+
default: {
93+
throw new RuntimeException("Invalid argument: " + args[0]);
94+
}
95+
}
6096
}
6197
}

‎test/jtreg-ext/requires/VMProps.java

+1
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,7 @@ protected void vmOptFinalFlags(SafeMap map) {
384384
vmOptFinalFlag(map, "CriticalJNINatives");
385385
vmOptFinalFlag(map, "EnableJVMCI");
386386
vmOptFinalFlag(map, "EliminateAllocations");
387+
vmOptFinalFlag(map, "UnlockExperimentalVMOptions");
387388
vmOptFinalFlag(map, "UseCompressedOops");
388389
vmOptFinalFlag(map, "UseLargePages");
389390
vmOptFinalFlag(map, "UseVectorizedMismatchIntrinsic");

0 commit comments

Comments
 (0)
Please sign in to comment.