comparison test/TEST.groups @ 12119:7aa0c1fb6fdb

8006164: [TESTBUG] compact profile hotspot test issues Summary: Define profile-based test groups. Reviewed-by: dcubed, mchung
author dholmes
date Tue, 27 Aug 2013 22:05:53 -0400
parents
children 2b113b65a051
comparison
equal deleted inserted replaced
12118:5fd8e2fbafd4 12119:7aa0c1fb6fdb
1 #
2 # Copyright (c) 2013, Oracle and/or its affiliates. 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 # Profile-based Test Group Definitions
25 #
26 # These groups define the tests that cover the different possible runtimes:
27 # - compact1, compact2, compact3, full JRE, JDK
28 #
29 # In addition they support testing of the minimal VM on compact1 and compact2.
30 # Essentially this defines groups based around the specified API's and VM
31 # services available in the runtime.
32 #
33 # The groups are defined hierarchically in two forms:
34 # - The need_xxx groups list all the tests that have a dependency on
35 # a specific profile. This is either because it tests a feature in
36 # that profile, or the test infrastructure uses a feature in that
37 # profile.
38 # - The primary groups are defined in terms of the other primary groups
39 # combined with the needs_xxx groups (including and excluding them as
40 # appropriate). For example the jre can run all tests from compact3, plus
41 # those from needs_jre, but excluding those from need_jdk.
42 #
43 # The bottom group defines all the actual tests to be considered, simply
44 # by listing the top-level test directories.
45 #
46 # To use a group simply list it on the jtreg command line eg:
47 # jtreg :jdk
48 # runs all tests. While
49 # jtreg :compact2
50 # runs those tests that only require compact1 and compact2 API's.
51 #
52
53 # Full JDK can run all tests
54 #
55 jdk = \
56 :jre \
57 :needs_jdk
58
59 # Tests that require a full JDK to execute. Either they test a feature
60 # only in the JDK or they use tools that are only in the JDK. The latter
61 # can be resolved in some cases by using tools from the compile-jdk.
62 #
63 needs_jdk = \
64 gc/TestG1ZeroPGCTJcmdThreadPrint.java \
65 gc/metaspace/ClassMetaspaceSizeInJmapHeap.java \
66 gc/metaspace/TestMetaspacePerfCounters.java \
67 runtime/6819213/TestBootNativeLibraryPath.java \
68 runtime/6878713/Test6878713.sh \
69 runtime/6925573/SortMethodsTest.java \
70 runtime/7107135/Test7107135.sh \
71 runtime/7158988/FieldMonitor.java \
72 runtime/7194254/Test7194254.java \
73 runtime/jsig/Test8017498.sh \
74 runtime/Metaspace/FragmentMetaspace.java \
75 runtime/NMT/BaselineWithParameter.java \
76 runtime/NMT/JcmdScale.java \
77 runtime/NMT/JcmdWithNMTDisabled.java \
78 runtime/NMT/MallocTestType.java \
79 runtime/NMT/ReleaseCommittedMemory.java \
80 runtime/NMT/ShutdownTwice.java \
81 runtime/NMT/SummaryAfterShutdown.java \
82 runtime/NMT/SummarySanityCheck.java \
83 runtime/NMT/ThreadedMallocTestType.java \
84 runtime/NMT/ThreadedVirtualAllocTestType.java \
85 runtime/NMT/VirtualAllocTestType.java \
86 runtime/RedefineObject/TestRedefineObject.java \
87 serviceability/attach/AttachWithStalePidFile.java
88
89 # JRE adds further tests to compact3
90 #
91 jre = \
92 :compact3 \
93 :needs_jre \
94 -:needs_jdk
95
96 # Tests that require the full JRE
97 #
98 needs_jre = \
99 compiler/6852078/Test6852078.java \
100 compiler/7047069/Test7047069.java \
101 runtime/6294277/SourceDebugExtension.java
102
103 # Compact 3 adds further tests to compact2
104 #
105 compact3 = \
106 :compact2 \
107 :needs_compact3 \
108 -:needs_jre \
109 -:needs_jdk
110
111
112 # Tests that require compact3 API's
113 #
114 needs_compact3 = \
115 compiler/whitebox/DeoptimizeMethodTest.java \
116 compiler/whitebox/SetForceInlineMethodTest.java \
117 compiler/whitebox/SetDontInlineMethodTest.java \
118 compiler/whitebox/DeoptimizeAllTest.java \
119 compiler/whitebox/MakeMethodNotCompilableTest.java \
120 compiler/whitebox/ClearMethodStateTest.java \
121 compiler/whitebox/EnqueueMethodForCompilationTest.java \
122 compiler/whitebox/IsMethodCompilableTest.java \
123 gc/6581734/Test6581734.java \
124 gc/7072527/TestFullGCCount.java \
125 gc/7168848/HumongousAlloc.java \
126 gc/arguments/TestG1HeapRegionSize.java \
127 gc/metaspace/TestMetaspaceMemoryPool.java \
128 runtime/InternalApi/ThreadCpuTimesDeadlock.java \
129 serviceability/threads/TestFalseDeadLock.java
130
131 # Compact 2 adds full VM tests
132 compact2 = \
133 :compact2_minimal \
134 :needs_full_vm_compact2 \
135 -:needs_compact3 \
136 -:needs_jre \
137 -:needs_jdk
138
139 # Tests that require compact2 API's and a full VM
140 #
141 needs_full_vm_compact2 =
142
143 # Compact 1 adds full VM tests
144 #
145 compact1 = \
146 :compact1_minimal \
147 :needs_full_vm_compact1 \
148 -:needs_compact2 \
149 -:needs_full_vm_compact2 \
150 -:needs_compact3 \
151 -:needs_jre \
152 -:needs_jdk
153
154 # Tests that require compact1 API's and a full VM
155 #
156 needs_full_vm_compact1 = \
157 runtime/NMT \
158 gc/g1/TestRegionAlignment.java \
159 gc/g1/TestShrinkToOneRegion.java \
160 gc/metaspace/G1AddMetaspaceDependency.java \
161 runtime/6929067/Test6929067.sh
162
163 # Minimal VM on Compact 2 adds in some compact2 tests
164 #
165 compact2_minimal = \
166 :compact1_minimal \
167 :needs_compact2 \
168 -:needs_compact3 \
169 -:needs_jre \
170 -:needs_jdk
171
172 # Tests that require compact2 API's
173 #
174 needs_compact2 = \
175 compiler/6589834/Test_ia32.java
176
177 # All tests that run on the most minimal configuration: Minimal VM on Compact 1
178 compact1_minimal = \
179 serviceability/ \
180 compiler/ \
181 testlibrary/ \
182 sanity/ \
183 runtime/ \
184 gc/ \
185 -:needs_full_vm_compact1 \
186 -:needs_full_vm_compact2 \
187 -:needs_compact2 \
188 -:needs_compact3 \
189 -:needs_jre \
190 -:needs_jdk