author | sangheki |
Mon, 07 Mar 2016 01:20:12 -0800 | |
changeset 36574 | adf1e92565a3 |
parent 36189 | 2fbe2434b914 |
child 36616 | 5172e3dd60f2 |
permissions | -rw-r--r-- |
31372
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
1 |
/* |
36175
0f5b32ce95fc
8144578: TestOptionsWithRanges test only ever uses the default collector
ddmitriev
parents:
35462
diff
changeset
|
2 |
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. |
31372
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
4 |
* |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
8 |
* |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
13 |
* accompanied this code). |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
14 |
* |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
18 |
* |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
21 |
* questions. |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
22 |
*/ |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
23 |
|
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
24 |
/* |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
25 |
* @test |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
26 |
* @summary Test VM Options with ranges |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
27 |
* @library /testlibrary /runtime/CommandLine/OptionsValidation/common |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
28 |
* @modules java.base/sun.misc |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
29 |
* java.management |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
30 |
* jdk.attach |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
31 |
* jdk.management/sun.tools.attach |
34661
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
34317
diff
changeset
|
32 |
* @run main/othervm/timeout=900 TestOptionsWithRanges |
31372
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
33 |
*/ |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
34 |
|
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
35 |
import java.util.ArrayList; |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
36 |
import java.util.List; |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
37 |
import java.util.Map; |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
38 |
import jdk.test.lib.Asserts; |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
39 |
import optionsvalidation.JVMOption; |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
40 |
import optionsvalidation.JVMOptionsUtils; |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
41 |
|
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
42 |
public class TestOptionsWithRanges { |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
43 |
|
34275
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
44 |
private static Map<String, JVMOption> allOptionsAsMap; |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
45 |
|
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
46 |
private static void excludeTestMaxRange(String optionName) { |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
47 |
JVMOption option = allOptionsAsMap.get(optionName); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
48 |
|
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
49 |
if (option != null) { |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
50 |
option.excludeTestMaxRange(); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
51 |
} |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
52 |
} |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
53 |
|
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
54 |
private static void excludeTestMinRange(String optionName) { |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
55 |
JVMOption option = allOptionsAsMap.get(optionName); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
56 |
|
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
57 |
if (option != null) { |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
58 |
option.excludeTestMinRange(); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
59 |
} |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
60 |
} |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
61 |
|
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
62 |
private static void excludeTestRange(String optionName) { |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
63 |
allOptionsAsMap.remove(optionName); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
64 |
} |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
65 |
|
35074
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
66 |
private static void setAllowedExitCodes(String optionName, Integer... allowedExitCodes) { |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
67 |
JVMOption option = allOptionsAsMap.get(optionName); |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
68 |
|
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
69 |
if (option != null) { |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
70 |
option.setAllowedExitCodes(allowedExitCodes); |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
71 |
} |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
72 |
} |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
73 |
|
31372
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
74 |
public static void main(String[] args) throws Exception { |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
75 |
int failedTests; |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
76 |
List<JVMOption> allOptions; |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
77 |
|
36189
2fbe2434b914
8146187: Print develop and nonproduct flags by -XX:+PrintFlags* options in debug build
ddmitriev
parents:
36175
diff
changeset
|
78 |
allOptionsAsMap = JVMOptionsUtils.getOptionsWithRangeAsMap(origin -> (!(origin.contains("develop") || origin.contains("notproduct")))); |
34275
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
79 |
|
35074
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
80 |
/* Shared flags can cause JVM to exit with error code 2 */ |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
81 |
setAllowedExitCodes("SharedReadWriteSize", 2); |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
82 |
setAllowedExitCodes("SharedReadOnlySize", 2); |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
83 |
setAllowedExitCodes("SharedMiscDataSize", 2); |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
84 |
setAllowedExitCodes("SharedMiscCodeSize", 2); |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
85 |
|
31372
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
86 |
/* |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
87 |
* Remove CICompilerCount from testing because currently it can hang system |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
88 |
*/ |
34275
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
89 |
excludeTestMaxRange("CICompilerCount"); |
31372
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
90 |
|
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
31372
diff
changeset
|
91 |
/* |
33222
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
92 |
* JDK-8136766 |
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
93 |
* Temporarily remove ThreadStackSize from testing because Windows can set it to 0 |
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
94 |
* (for default OS size) but other platforms insist it must be greater than 0 |
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
95 |
*/ |
34275
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
96 |
excludeTestRange("ThreadStackSize"); |
33222
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
97 |
|
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
98 |
/* |
35074
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
99 |
* JDK-8143958 |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
100 |
* Temporarily exclude testing of max range for Shared* flags |
34242
e530decd7c63
8138983: Runtime: implement ranges for Shared*** flags
gziemski
parents:
33610
diff
changeset
|
101 |
*/ |
35074
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
102 |
excludeTestMaxRange("SharedReadWriteSize"); |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
103 |
excludeTestMaxRange("SharedReadOnlySize"); |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
104 |
excludeTestMaxRange("SharedMiscDataSize"); |
4ac430acedd7
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents:
34675
diff
changeset
|
105 |
excludeTestMaxRange("SharedMiscCodeSize"); |
33222
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
106 |
|
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
107 |
/* |
34178
e30e720da91b
8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents:
33230
diff
changeset
|
108 |
* Remove the flag controlling the size of the stack because the |
e30e720da91b
8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents:
33230
diff
changeset
|
109 |
* flag has direct influence on the physical memory usage of |
e30e720da91b
8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents:
33230
diff
changeset
|
110 |
* the VM. |
e30e720da91b
8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents:
33230
diff
changeset
|
111 |
*/ |
e30e720da91b
8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents:
33230
diff
changeset
|
112 |
allOptionsAsMap.remove("CompilerThreadStackSize"); |
e30e720da91b
8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents:
33230
diff
changeset
|
113 |
|
e30e720da91b
8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents:
33230
diff
changeset
|
114 |
/* |
33222
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
115 |
* Exclude MallocMaxTestWords as it is expected to exit VM at small values (>=0) |
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
116 |
*/ |
34275
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
117 |
excludeTestMinRange("MallocMaxTestWords"); |
33222
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
118 |
|
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
33144
diff
changeset
|
119 |
/* |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
31372
diff
changeset
|
120 |
* Exclude below options as their maximum value would consume too much memory |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
31372
diff
changeset
|
121 |
* and would affect other tests that run in parallel. |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
31372
diff
changeset
|
122 |
*/ |
34661
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
34317
diff
changeset
|
123 |
excludeTestMaxRange("ConcGCThreads"); |
34275
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
124 |
excludeTestMaxRange("G1ConcRefinementThreads"); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
125 |
excludeTestMaxRange("G1RSetRegionEntries"); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
126 |
excludeTestMaxRange("G1RSetSparseRegionEntries"); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
127 |
excludeTestMaxRange("G1UpdateBufferSize"); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
128 |
excludeTestMaxRange("InitialBootClassLoaderMetaspaceSize"); |
34661
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
34317
diff
changeset
|
129 |
excludeTestMaxRange("InitialHeapSize"); |
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
34317
diff
changeset
|
130 |
excludeTestMaxRange("MaxHeapSize"); |
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
34317
diff
changeset
|
131 |
excludeTestMaxRange("MaxRAM"); |
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
34317
diff
changeset
|
132 |
excludeTestMaxRange("NewSize"); |
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
34317
diff
changeset
|
133 |
excludeTestMaxRange("OldSize"); |
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
34317
diff
changeset
|
134 |
excludeTestMaxRange("ParallelGCThreads"); |
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
34317
diff
changeset
|
135 |
|
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
34317
diff
changeset
|
136 |
excludeTestMaxRange("VMThreadStackSize"); |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
31372
diff
changeset
|
137 |
|
33198 | 138 |
/* |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
31372
diff
changeset
|
139 |
* Remove parameters controlling the code cache. As these |
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
31372
diff
changeset
|
140 |
* parameters have implications on the physical memory |
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
31372
diff
changeset
|
141 |
* reserved by the VM, setting them to large values may hang |
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
31372
diff
changeset
|
142 |
* the system and/or may cause concurrently executed tests to |
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
31372
diff
changeset
|
143 |
* fail. These parameters are rigorously checked when the code |
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
31372
diff
changeset
|
144 |
* cache is initialized (see |
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
31372
diff
changeset
|
145 |
* hotspot/src/shared/vm/code/codeCache.cpp), therefore |
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
31372
diff
changeset
|
146 |
* omitting testing for them does not pose a problem. |
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
31372
diff
changeset
|
147 |
*/ |
34275
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
148 |
excludeTestMaxRange("InitialCodeCacheSize"); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
149 |
excludeTestMaxRange("CodeCacheMinimumUseSpace"); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
150 |
excludeTestMaxRange("ReservedCodeCacheSize"); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
151 |
excludeTestMaxRange("NonProfiledCodeHeapSize"); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
152 |
excludeTestMaxRange("ProfiledCodeHeapSize"); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
153 |
excludeTestMaxRange("NonNMethodCodeHeapSize"); |
9b1771bfd6cf
8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents:
34242
diff
changeset
|
154 |
excludeTestMaxRange("CodeCacheExpansionSize"); |
33163
9e128b399e48
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents:
31372
diff
changeset
|
155 |
|
31372
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
156 |
allOptions = new ArrayList<>(allOptionsAsMap.values()); |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
157 |
|
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
158 |
Asserts.assertGT(allOptions.size(), 0, "Options with ranges not found!"); |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
159 |
|
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
160 |
System.out.println("Parsed " + allOptions.size() + " options with ranges. Start test!"); |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
161 |
|
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
162 |
failedTests = JVMOptionsUtils.runCommandLineTests(allOptions); |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
163 |
|
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
164 |
Asserts.assertEQ(failedTests, 0, |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
165 |
String.format("%d tests failed! %s", failedTests, JVMOptionsUtils.getMessageWithFailures())); |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
166 |
} |
9821df46cf47
8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff
changeset
|
167 |
} |