TEST.groups revision 10061:197538942788
1#
2# Copyright (c) 2013, 2015, 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
53hotspot_all = \
54  /
55
56# Full JDK can run all tests
57#
58jdk = \
59  :jre \
60  :needs_jdk
61
62# Tests that require a full JDK to execute. Either they test a feature
63# only in the JDK or they use tools that are only in the JDK. The latter
64# can be resolved in some cases by using tools from the compile-jdk.
65#
66needs_jdk = \
67  gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java \
68  gc/metaspace/TestMetaspacePerfCounters.java \
69  gc/metaspace/TestPerfCountersAndMemoryPools.java \
70  runtime/6819213/TestBootNativeLibraryPath.java \
71  runtime/7158988/FieldMonitor.java \
72  runtime/Metaspace/FragmentMetaspace.java \
73  runtime/NMT/BaselineWithParameter.java \
74  runtime/NMT/JcmdBaselineDetail.java \
75  runtime/NMT/JcmdDetailDiff.java \
76  runtime/NMT/JcmdScaleDetail.java \
77  runtime/NMT/JcmdScale.java \
78  runtime/NMT/JcmdSummaryDiff.java \
79  runtime/NMT/JcmdWithNMTDisabled.java \
80  runtime/NMT/MallocRoundingReportTest.java \
81  runtime/NMT/MallocSiteHashOverflow.java \
82  runtime/NMT/MallocStressTest.java \
83  runtime/NMT/MallocTestType.java \
84  runtime/NMT/MallocTrackingVerify.java \
85  runtime/NMT/ReleaseCommittedMemory.java \
86  runtime/NMT/ReleaseNoCommit.java \
87  runtime/NMT/ShutdownTwice.java \
88  runtime/NMT/SummaryAfterShutdown.java \
89  runtime/NMT/SummarySanityCheck.java \
90  runtime/NMT/ThreadedMallocTestType.java \
91  runtime/NMT/ThreadedVirtualAllocTestType.java \
92  runtime/NMT/VirtualAllocCommitUncommitRecommit.java \
93  runtime/NMT/VirtualAllocTestType.java \
94  runtime/RedefineObject/TestRedefineObject.java \
95  runtime/Thread/TestThreadDumpMonitorContention.java \
96  runtime/Thread/ThreadPriorities.java \
97  runtime/XCheckJniJsig/XCheckJSig.java \
98  serviceability/attach/AttachWithStalePidFile.java \
99  serviceability/sa/jmap-hprof/JMapHProfLargeHeapTest.java \
100  serviceability/dcmd/vm/DynLibsTest.java \
101  serviceability/tmtools		
102
103
104# JRE adds further tests to compact3
105#
106jre = \
107  :compact3 \
108  :needs_jre \
109 -:needs_jdk
110
111# Tests that require the full JRE
112#
113needs_jre = \
114  compiler/c2/6852078/Test6852078.java \
115  compiler/c2/7047069/Test7047069.java \
116  runtime/6294277/SourceDebugExtension.java \
117  runtime/ClassFile/JsrRewriting.java \
118  runtime/ClassFile/OomWhileParsingRepeatedJsr.java \
119  runtime/SharedArchiveFile/LimitSharedSizes.java \
120  runtime/SharedArchiveFile/SpaceUtilizationCheck.java
121
122# Compact 3 adds further tests to compact2
123#
124compact3 = \
125  :compact2 \
126  :needs_compact3 \
127 -:needs_jre \
128 -:needs_jdk
129
130
131# Tests that require compact3 API's
132#
133needs_compact3 = \
134  gc/TestFullGCCount.java \
135  gc/arguments/TestG1HeapRegionSize.java \
136  gc/arguments/TestDynMinHeapFreeRatio.java \
137  gc/arguments/TestDynMaxHeapFreeRatio.java \
138  gc/cms/TestMBeanCMS.java \
139  gc/g1/TestHumongousAllocInitialMark.java \
140  gc/g1/TestShrinkAuxiliaryData00.java \
141  gc/g1/TestShrinkAuxiliaryData05.java \
142  gc/g1/TestShrinkAuxiliaryData10.java \
143  gc/g1/TestShrinkAuxiliaryData15.java \
144  gc/g1/TestShrinkAuxiliaryData20.java \
145  gc/g1/TestShrinkAuxiliaryData25.java \
146  gc/g1/TestShrinkAuxiliaryData30.java \
147  gc/metaspace/TestMetaspaceMemoryPool.java \
148  gc/survivorAlignment \
149  runtime/InternalApi/ThreadCpuTimesDeadlock.java \
150  runtime/NMT/JcmdSummaryDiff.java \
151  runtime/RedefineTests/RedefineAnnotations.java
152  serviceability/sa/jmap-hashcode/Test8028623.java \
153  serviceability/threads/TestFalseDeadLock.java \
154  compiler/codecache/jmx \
155  compiler/jsr292/RedefineMethodUsedByMultipleMethodHandles.java \
156  compiler/rangechecks/TestRangeCheckSmearing.java \
157  compiler/whitebox/DeoptimizeMultipleOSRTest.java \
158  serviceability/dcmd \
159  testlibrary_tests/whitebox/vm_flags
160
161# Compact 2 adds full VM tests
162compact2 = \
163  :compact2_minimal \
164  :compact1 \
165  :needs_full_vm_compact2 \
166 -:needs_compact3 \
167 -:needs_jre \
168 -:needs_jdk
169
170# Tests that require compact2 API's and a full VM
171#
172needs_full_vm_compact2 =
173
174# Compact 1 adds full VM tests
175#
176compact1 = \
177  :compact1_minimal \
178  :needs_full_vm_compact1 \
179 -:needs_compact2 \
180 -:needs_full_vm_compact2 \
181 -:needs_compact3 \
182 -:needs_jre \
183 -:needs_jdk
184
185# Tests that require compact1 API's and a full VM
186#
187needs_full_vm_compact1 = \
188  runtime/NMT \
189  gc/g1/TestRegionAlignment.java \
190  gc/g1/TestShrinkToOneRegion.java \
191  gc/metaspace/G1AddMetaspaceDependency.java \
192  gc/startup_warnings/TestCMS.java \
193  gc/startup_warnings/TestDefNewCMS.java \
194  gc/startup_warnings/TestParallelGC.java \
195  gc/startup_warnings/TestParallelScavengeSerialOld.java \
196  gc/startup_warnings/TestParNewCMS.java \
197  gc/startup_warnings/TestParNewSerialOld.java \
198  runtime/SharedArchiveFile/SharedArchiveFile.java
199
200# Minimal VM on Compact 2 adds in some compact2 tests
201#
202compact2_minimal = \
203  :compact1_minimal \
204  :needs_compact2 \
205 -:needs_full_vm_compact2 \
206 -:needs_compact3 \
207 -:needs_jre \
208 -:needs_jdk
209
210# Tests that require compact2 API's
211#
212needs_compact2 = \
213  compiler/jsr292/CreatesInterfaceDotEqualsCallInfo.java
214
215# All tests that run on the most minimal configuration: Minimal VM on Compact 1
216compact1_minimal = \
217  serviceability/ \
218  compiler/ \
219  sanity/ \
220  runtime/ \
221  gc/ \
222 -:needs_full_vm_compact1 \
223 -:needs_full_vm_compact2 \
224 -:needs_compact2 \
225 -:needs_compact3 \
226 -:needs_jre \
227 -:needs_jdk
228
229# All tests that explicitly set the G1 GC
230#
231needs_g1gc = \
232  compiler/regalloc/C1ObjectSpillInLogicOp.java \
233  gc/TestSystemGC.java \
234  gc/arguments/TestAlignmentToUseLargePages.java \
235  gc/arguments/TestG1HeapRegionSize.java \
236  gc/arguments/TestG1HeapSizeFlags.java \
237  gc/arguments/TestG1PercentageOptions.java \
238  gc/arguments/TestMaxHeapSizeTools.java \
239  gc/arguments/TestMaxNewSize.java \
240  gc/arguments/TestParallelGCThreads.java \
241  gc/arguments/TestUseCompressedOopsErgo.java \
242  gc/class_unloading/TestG1ClassUnloadingHWM.java \
243  gc/ergonomics/TestDynamicNumberOfGCThreads.java \
244  gc/g1/ \
245  gc/metaspace/G1AddMetaspaceDependency.java \
246  gc/metaspace/TestMetaspacePerfCounters.java \
247  gc/startup_warnings/TestG1.java \
248  gc/whitebox/TestConcMarkCycleWB.java \
249  gc/arguments/TestG1ConcRefinementThreads.java
250
251hotspot_native_sanity = \
252  native_sanity
253
254hotspot_compiler_1 = \
255  compiler/arraycopy/ \
256  compiler/c1/ \
257  compiler/c2/ \
258  -compiler/c2/5091921/Test6850611.java \
259  -compiler/c2/5091921/Test6890943.java \
260  -compiler/c2/5091921/Test6905845.java \
261  -compiler/c2/6340864 \
262  -compiler/c2/6589834 \
263  -compiler/c2/6603011 \
264  -compiler/c2/6912517 \
265  -compiler/c2/6792161 \
266  -compiler/c2/7070134 \
267  -compiler/c2/8004867
268  
269hotspot_compiler_2 = \
270  compiler/classUnloading/ \
271  compiler/codecache/ \
272  compiler/codegen/ \
273  compiler/cpuflags/ \
274  compiler/dependencies/ \
275  compiler/eliminateAutobox/ \
276  compiler/escapeAnalysis/ \
277  compiler/exceptions/ \
278  compiler/floatingpoint/ \
279  compiler/gcbarriers/ \
280  compiler/inlining/ \
281  compiler/integerArithmetic/ \
282  compiler/interpreter/ \
283  compiler/jvmci/ \
284  -compiler/codegen/7184394 \
285  -compiler/codecache/stress
286  
287hotspot_compiler_3 = \
288  compiler/intrinsics/ \
289  compiler/jsr292/ \
290  compiler/loopopts/ \
291  compiler/macronodes/ \
292  compiler/memoryinitialization/ \
293  compiler/osr/ \
294  compiler/regalloc/ \
295  compiler/runtime/ \
296  compiler/startup/ \
297  compiler/types/ \
298  compiler/uncommontrap/ \
299  compiler/unsafe/ \
300  -compiler/intrinsics/bmi/verifycode \
301  -compiler/intrinsics/mathexact \
302  -compiler/intrinsics/multiplytolen \
303  -compiler/intrinsics/sha \
304  -compiler/loopopts/7052494 \
305  -compiler/runtime/6826736
306
307hotspot_compiler_closed = \
308  sanity/ExecuteInternalVMTests.java
309
310hotspot_gc = \
311  sanity/ExecuteInternalVMTests.java \
312  gc/ \
313  -gc/g1/TestGreyReclaimedHumongousObjects.java \
314  -gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java
315
316hotspot_gc_closed = \
317  sanity/ExecuteInternalVMTests.java
318
319hotspot_gc_gcold = \
320  stress/gc/TestGCOld.java
321
322hotspot_runtime = \
323  runtime/ \
324 -runtime/ErrorHandling/ErrorHandler.java \
325 -runtime/RedefineObject/TestRedefineObject.java \
326 -runtime/8003720/Test8003720.java \
327 -runtime/Metaspace/FragmentMetaspace.java \
328 -runtime/Metaspace/FragmentMetaspaceSimple.java \
329 -runtime/Thread/TestThreadDumpMonitorContention.java \
330 -runtime/SharedArchiveFile/SharedBaseAddress.java \
331 -runtime/memory/ReserveMemory.java \
332 -runtime/memory/RunUnitTestsConcurrently.java \
333 -runtime/Unsafe/RangeCheck.java \
334 -runtime/SharedArchiveFile/CdsSameObjectAlignment.java \
335 -runtime/SharedArchiveFile/DefaultUseWithClient.java \
336 -runtime/Thread/CancellableThreadTest.java \
337 -runtime/7158988/FieldMonitor.java \
338 -runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java \
339  sanity/ \
340  testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java
341
342hotspot_serviceability = \
343  sanity/ExecuteInternalVMTests.java \
344  serviceability/dcmd/compiler \
345  serviceability/logging
346
347hotspot_jprt = \
348  :hotspot_compiler_1 \
349  :hotspot_compiler_2 \
350  :hotspot_compiler_3 \
351  :hotspot_compiler_closed \
352  :hotspot_gc \
353  :hotspot_gc_closed \
354  :hotspot_gc_gcold \
355  :hotspot_runtime \
356  :hotspot_serviceability
357
358#All tests that depends on nashorn extension.
359#
360needs_nashorn = \
361  compiler/jsr292/CreatesInterfaceDotEqualsCallInfo.java
362
363#All tests that do not depends on nashorn extension
364#
365not_needs_nashorn = \
366  :jdk \
367  -:needs_nashorn
368
369hotspot_tmtools = \
370  serviceability/tmtools	
371