Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/compiler/oracle/TestInvalidCompileCommand.java
41149 views
1
/*
2
* Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/*
25
* @test TestInvalidCompileCommand
26
* @bug 8263206 8263353
27
* @summary Regression tests of -XX:CompileCommand
28
* @library /test/lib
29
* @requires vm.flagless
30
* @run driver compiler.oracle.TestInvalidCompileCommand
31
*/
32
33
package compiler.oracle;
34
35
import jdk.test.lib.process.OutputAnalyzer;
36
import jdk.test.lib.process.ProcessTools;
37
38
public class TestInvalidCompileCommand {
39
40
private static final String[][] ARGUMENTS = {
41
{
42
"-XX:CompileCommand=unknown",
43
"-version"
44
},
45
{
46
"-XX:CompileCommand=option,Test::test,CompileThresholdScaling,3.14",
47
"-version"
48
},
49
{
50
"-XX:CompileCommand=option,Test::test,RepeatCompilation,3",
51
"-version"
52
},
53
{
54
"-XX:CompileCommand=option,Test::test,VectorizeDebug,3",
55
"-version"
56
},
57
{
58
"-XX:CompileCommand=option,Test::test,ControlIntrinsic,-_maxD,-_minD",
59
"-version"
60
}
61
};
62
63
private static final String[][] OUTPUTS = {
64
{
65
"Unrecognized option 'unknown'"
66
},
67
{
68
"Missing type 'double' before option 'CompileThresholdScaling'"
69
},
70
{
71
"Missing type 'intx' before option 'RepeatCompilation'"
72
},
73
{
74
"Missing type 'uintx' before option 'VectorizeDebug'"
75
},
76
{
77
"Missing type 'ccstrlist' before option 'ControlIntrinsic'"
78
}
79
};
80
81
private static void verifyInvalidOption(String[] arguments, String[] expected_outputs) throws Exception {
82
ProcessBuilder pb;
83
OutputAnalyzer out;
84
85
pb = ProcessTools.createJavaProcessBuilder(arguments);
86
out = new OutputAnalyzer(pb.start());
87
88
for (String expected_output : expected_outputs) {
89
out.shouldContain(expected_output);
90
}
91
92
out.shouldContain("CompileCommand: An error occurred during parsing");
93
out.shouldHaveExitValue(0);
94
}
95
96
public static void main(String[] args) throws Exception {
97
98
if (ARGUMENTS.length != OUTPUTS.length) {
99
throw new RuntimeException("Test is set up incorrectly: length of arguments and expected outputs does not match.");
100
}
101
102
for (int i = 0; i < ARGUMENTS.length; i++) {
103
verifyInvalidOption(ARGUMENTS[i], OUTPUTS[i]);
104
}
105
}
106
}
107
108