jprt.properties revision 1762:2b1043cd9a56
1#
2# Copyright (c) 2006, 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.  Oracle designates this
8# particular file as subject to the "Classpath" exception as provided
9# by Oracle in the LICENSE file that accompanied this code.
10#
11# This code is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14# version 2 for more details (a copy is included in the LICENSE file that
15# accompanied this code).
16#
17# You should have received a copy of the GNU General Public License version
18# 2 along with this work; if not, write to the Free Software Foundation,
19# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20#
21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22# or visit www.oracle.com if you need additional information or have any
23# questions.
24#
25
26##############
27#
28# Global settings
29#
30
31# Install test bundle for targets in jprt.test.bundle.targets set
32jprt.selective.test.bundle.installation=true
33
34# The current release name
35jprt.tools.default.release=jdk9
36
37# Check if this is the equivalent of a hotspot push job
38# Interpret -testset hotspot to mean exactly that
39my.is.hotspot.job.hotspot=true
40my.is.hotspot.job=${my.is.hotspot.job.${jprt.test.set}}
41
42# Disable syncing the source after builds and tests are done
43jprt.sync.push=${my.is.hotspot.job ? false : true}
44
45# Directories to be excluded from the source bundles
46jprt.bundle.exclude.src.dirs=build dist webrev
47
48# Use configure when building
49jprt.build.use.configure=true
50
51# Set up the run flavors (jvm variants)
52jprt.run.flavors=c1,c2,default,${my.additional.run.flavors}
53
54# Set make target to use for different build flavors
55jprt.build.flavor.debugOpen.target=jprt_bundle
56jprt.build.flavor.fastdebug.target=jprt_bundle
57jprt.build.flavor.product.target=jprt_bundle
58jprt.build.flavor.productOpen.target=jprt_bundle
59jprt.build.flavor.optimized.target=jprt_bundle
60jprt.build.flavor.optimizedOpen.target=jprt_bundle
61
62# Use these configure args to define debug level
63jprt.debug.build.configure.args=--with-debug-level=slowdebug
64jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug
65jprt.product.build.configure.args=--with-debug-level=release
66jprt.optimized.build.configure.args=--with-debug-level=optimized
67jprt.debugOpen.build.configure.args=${jprt.debug.build.configure.args} --enable-openjdk-only
68jprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args} --enable-openjdk-only
69jprt.productOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
70jprt.optimizedOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
71
72# Select build flavors and build targets
73jprt.build.flavors=${my.is.hotspot.job ? ${my.build.flavors.hotspot} : ${my.build.flavors.default}}
74jprt.build.targets=${my.is.hotspot.job ? ${my.build.targets.hotspot} : ${my.build.targets.default}}
75
76# Select test targets - jprt default for jprt.test.set is "default"
77jprt.test.targets=${my.test.targets.${jprt.test.set}}
78jprt.make.rule.test.targets=${my.make.rule.test.targets.${jprt.test.set}}
79jprt.test.bundle.targets=${my.jprt.test.bundle.targets.${jprt.test.set}}
80
81# 7155453: Work-around to prevent popups on OSX from blocking test completion
82# but the work-around is added to all platforms to be consistent
83jprt.jbb.options=-Djava.awt.headless=true
84
85########
86#
87# Build options (generic)
88#
89
90# Configure args common to all builds
91# Also allows for additional, testset specific configure arguments to be set
92jprt.build.configure.args=						\
93    --with-output-sync=recurse						\
94    --with-boot-jdk=$ALT_BOOTDIR					\
95    --with-jobs=$ALT_PARALLEL_COMPILE_JOBS				\
96    --with-version-opt-base=$JPRT_JOB_ID				\
97    ${my.additional.build.configure.args.${jprt.test.set}}		\
98    ${my.custom.build.configure.args}
99
100# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly
101jprt.i586.build.configure.args=						\
102    --with-target-bits=32
103
104# i586 platforms have both client and server, but to allow for overriding the exact configuration
105# on a per-build flavor basis the value is set for the individual build flavors
106my.i586.default.build.configure.args=					\
107    --with-jvm-variants=client,server
108jprt.i586.debug.build.configure.args=					\
109    ${my.i586.default.build.configure.args}				\
110    ${jprt.debug.build.configure.args}
111jprt.i586.fastdebug.build.configure.args=				\
112    ${my.i586.default.build.configure.args}				\
113    ${jprt.fastdebug.build.configure.args}
114jprt.i586.product.build.configure.args=					\
115    ${my.i586.default.build.configure.args}				\
116    ${jprt.product.build.configure.args}
117jprt.i586.debugOpen.build.configure.args=				\
118    ${my.i586.default.build.configure.args}				\
119    ${jprt.debugOpen.build.configure.args}
120jprt.i586.fastdebugOpen.build.configure.args=				\
121    ${my.i586.default.build.configure.args}				\
122    ${jprt.fastdebugOpen.build.configure.args}
123jprt.i586.productOpen.build.configure.args=				\
124    ${my.i586.default.build.configure.args}				\
125    ${jprt.productOpen.build.configure.args}
126
127jprt.windows_i586.build.configure.args= \
128    --with-devkit=$VS2013_HOME \
129    ${jprt.i586.build.configure.args}
130jprt.windows_x64.build.configure.args= \
131    --with-devkit=$VS2013_HOME
132
133########
134#
135# Build targets and options (default/jdk)
136#
137
138# The default build flavors
139my.build.flavors.default=fastdebug,product
140
141# Standard list of jprt build targets for this source tree
142my.build.targets.default=						\
143    solaris_sparcv9_5.11-{product|fastdebug},				\
144    solaris_x64_5.11-{product|fastdebug},				\
145    linux_i586_2.6-{product|fastdebug},					\
146    linux_x64_2.6-{product|fastdebug},					\
147    macosx_x64_10.9-{product|fastdebug},				\
148    windows_i586_6.2-{product|fastdebug},				\
149    windows_x64_6.2-{product|fastdebug}
150
151# Test target list (no fastdebug & limited c2 testing)
152my.test.target.set=							\
153    solaris_sparcv9_5.11-product-c2-TESTNAME,				\
154    solaris_x64_5.11-product-c2-TESTNAME,				\
155    linux_i586_2.6-product-{c1|c2}-TESTNAME,				\
156    linux_x64_2.6-product-c2-TESTNAME,					\
157    macosx_x64_10.9-product-c2-TESTNAME,				\
158    windows_i586_6.2-product-c1-TESTNAME,				\
159    windows_x64_6.2-product-c2-TESTNAME
160
161# Default vm test targets (testset=default)
162my.test.targets.default=						\
163    ${my.test.target.set:TESTNAME=jvm98},				\
164    ${my.test.target.set:TESTNAME=scimark}
165
166# Default jdk test targets (testset=default)
167my.make.rule.test.targets.default=					\
168    ${my.test.target.set:TESTNAME=langtools_jtreg},			\
169    ${my.test.target.set:TESTNAME=jdk_lang},				\
170    ${my.test.target.set:TESTNAME=jdk_math},				\
171    ${my.test.target.set:TESTNAME=jdk_util}
172
173# Default vm test targets (testset=core)
174my.test.targets.core=
175
176# Core jdk test targets (testset=core)
177my.make.rule.test.targets.core=						\
178    ${my.test.target.set:TESTNAME=jdk_lang},				\
179    ${my.test.target.set:TESTNAME=jdk_math},				\
180    ${my.test.target.set:TESTNAME=jdk_util},				\
181    ${my.test.target.set:TESTNAME=jdk_io},				\
182    ${my.test.target.set:TESTNAME=jdk_net},				\
183    ${my.test.target.set:TESTNAME=jdk_nio},				\
184    ${my.test.target.set:TESTNAME=jdk_security1},			\
185    ${my.test.target.set:TESTNAME=jdk_security2},			\
186    ${my.test.target.set:TESTNAME=jdk_security3},			\
187    ${my.test.target.set:TESTNAME=jdk_security4},			\
188    ${my.test.target.set:TESTNAME=jdk_rmi},				\
189    ${my.test.target.set:TESTNAME=jdk_text},				\
190    ${my.test.target.set:TESTNAME=jdk_time},				\
191    ${my.test.target.set:TESTNAME=jdk_other},				\
192    ${my.test.target.set:TESTNAME=core_tools}
193
194# Svc vm test targets (testset=svc)
195my.test.targets.svc=
196
197# Core jdk test targets (testset=svc)
198my.make.rule.test.targets.svc=						\
199    ${my.test.target.set:TESTNAME=jdk_management},			\
200    ${my.test.target.set:TESTNAME=jdk_instrument},			\
201    ${my.test.target.set:TESTNAME=jdk_jmx},				\
202    ${my.test.target.set:TESTNAME=jdk_jdi},				\
203    ${my.test.target.set:TESTNAME=svc_tools},                           \
204    ${my.make.rule.test.targets.svc.extra}
205
206# JAXP vm test targets (testset=jaxp)
207my.test.targets.jaxp=
208
209# JAXP test targets (testset=jaxp)
210my.make.rule.test.targets.jaxp=						\
211    ${my.test.target.set:TESTNAME=jaxp_all}
212
213# All vm test targets (testset=all)
214my.test.targets.all=							\
215    ${my.test.targets.default},						\
216    ${my.test.target.set:TESTNAME=runThese},				\
217    ${my.test.target.set:TESTNAME=jbb_default}
218
219# All jdk test targets (testset=all)
220my.make.rule.test.targets.all=						\
221    ${my.make.rule.test.targets.core},					\
222    ${my.make.rule.test.targets.svc},					\
223    ${my.test.target.set:TESTNAME=jdk_awt},				\
224    ${my.test.target.set:TESTNAME=jdk_beans},				\
225    ${my.test.target.set:TESTNAME=jdk_sound},				\
226    ${my.test.target.set:TESTNAME=jdk_swing}
227
228# PIT vm test targets (testset=pit)
229my.test.targets.pit=							\
230   ${my.test.targets.all}
231
232# PIT jdk test targets (testset=pit)
233my.make.rule.test.targets.pit=						\
234    ${my.test.target.set:TESTNAME=langtools_jtreg},			\
235    ${my.make.rule.test.targets.core},					\
236    ${my.make.rule.test.targets.svc}                                    \
237    ${my.make.rule.test.targets.jaxp}
238
239# JCK test targets in test/Makefile (no windows)
240my.test.target.set.jck=							\
241    solaris_sparcv9_5.11-product-c2-JCK7TESTRULE,			\
242    solaris_x64_5.11-product-c2-JCK7TESTRULE,				\
243    linux_i586_2.6-product-c1-JCK7TESTRULE,				\
244    linux_x64_2.6-product-c2-JCK7TESTRULE
245
246# JCK testset targets
247my.make.rule.test.targets.jck=						\
248    ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools},		\
249    ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime},			\
250    ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
251
252
253#############
254#
255# Hotspot related settings (testset=hotspot)
256#
257
258# The hotspot build flavors
259my.build.flavors.hotspot=						\
260    debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
261    ${my.additional.build.flavors.hotspot}
262
263# Platforms built for hotspot push jobs
264my.build.targets.hotspot=						\
265    solaris_sparcv9_5.11-{product|fastdebug},			\
266    solaris_x64_5.11-{product|fastdebug},				\
267    linux_i586_2.6-{product|fastdebug},					\
268    linux_x64_2.6-{product|fastdebug},			\
269    macosx_x64_10.9-{product|fastdebug},				\
270    windows_i586_6.2-{product|fastdebug},				\
271    windows_x64_6.2-{product|fastdebug},			\
272    solaris_x64_5.11-{debugOpen},					\
273    linux_x64_2.6-{productOpen},					\
274    ${my.additional.build.targets.hotspot}
275
276# Tests to run on the various platforms for hotspot push jobs
277my.test.targets.hotspot.solaris.sparcv9=				\
278    solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98,			\
279    solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered,	\
280    solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark,		\
281    solaris_sparcv9_5.11-product-c2-runThese8,				\
282    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,	\
283    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,	\
284    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS,		\
285    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1,		\
286    solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_default_nontiered,	\
287    solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_SerialGC,		\
288    solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParallelGC,		\
289    solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_CMS,		\
290    solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_G1
291
292my.test.targets.hotspot.solaris.x64=					\
293    solaris_x64_5.11-{product|fastdebug}-c2-jvm98,			\
294    solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered,		\
295    solaris_x64_5.11-{product|fastdebug}-c2-scimark,			\
296    solaris_x64_5.11-product-c2-runThese8,				\
297    solaris_x64_5.11-product-c2-runThese8_Xcomp_lang,			\
298    solaris_x64_5.11-product-c2-runThese8_Xcomp_vm,			\
299    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,		\
300    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,	\
301    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS,		\
302    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1,		\
303    solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered,	\
304    solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC,		\
305    solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC,
306
307my.test.targets.hotspot.linux.i586=					\
308    linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98,			\
309    linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered,		\
310    linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark,			\
311    linux_i586_2.6-product-c1-runThese8_Xcomp_lang,			\
312    linux_i586_2.6-product-c1-runThese8_Xcomp_vm,			\
313    linux_i586_2.6-fastdebug-c1-runThese8_Xshare,			\
314    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang,			\
315    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm,			\
316    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
317    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
318    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
319    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1,		\
320    linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC,			\
321    linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered,	\
322    linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC,		\
323    linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS,			\
324    linux_i586_2.6-{product|fastdebug}-c1-jbb_G1
325
326my.test.targets.hotspot.linux.x64=					\
327    linux_x64_2.6-{product|fastdebug}-c2-jvm98,				\
328    linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered,		\
329    linux_x64_2.6-{product|fastdebug}-c2-scimark,			\
330    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC,		\
331    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
332    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS,			\
333    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1,			\
334    linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered,		\
335    linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC,		\
336    linux_x64_2.6-{product|fastdebug}-c2-jbb_G1
337
338my.test.targets.hotspot.macosx.x64=					\
339    macosx_x64_10.9-{product|fastdebug}-c2-jvm98,			\
340    macosx_x64_10.9-{product|fastdebug}-c2-jvm98_nontiered,		\
341    macosx_x64_10.9-{product|fastdebug}-c2-scimark,			\
342    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_SerialGC,		\
343    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
344    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_CMS,		\
345    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_G1,			\
346    macosx_x64_10.9-{product|fastdebug}-c2-jbb_default_nontiered,	\
347    macosx_x64_10.9-{product|fastdebug}-c2-jbb_ParallelGC,		\
348    macosx_x64_10.9-{product|fastdebug}-c2-jbb_G1
349
350my.test.targets.hotspot.windows.i586=					\
351    windows_i586_6.2-{product|fastdebug}-{c1|c2}-jvm98,			\
352    windows_i586_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
353    windows_i586_6.2-{product|fastdebug}-{c1|c2}-scimark,		\
354    windows_i586_6.2-product-{c1|c2}-runThese8,				\
355    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_lang,		\
356    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_vm,		\
357    windows_i586_6.2-fastdebug-c1-runThese8_Xshare,			\
358    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
359    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
360    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
361    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_G1,		\
362    windows_i586_6.2-{product|fastdebug}-{c1|c2}-jbb_default,		\
363    windows_i586_6.2-{product|fastdebug}-c2-jbb_default_nontiered,	\
364    windows_i586_6.2-product-{c1|c2}-jbb_ParallelGC,			\
365    windows_i586_6.2-product-{c1|c2}-jbb_CMS,				\
366    windows_i586_6.2-product-{c1|c2}-jbb_G1
367
368my.test.targets.hotspot.windows.x64=					\
369    windows_x64_6.2-{product|fastdebug}-c2-jvm98,			\
370    windows_x64_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
371    windows_x64_6.2-{product|fastdebug}-c2-scimark,			\
372    windows_x64_6.2-product-c2-runThese8,				\
373    windows_x64_6.2-product-c2-runThese8_Xcomp_lang,			\
374    windows_x64_6.2-product-c2-runThese8_Xcomp_vm,			\
375    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_SerialGC,		\
376    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
377    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_CMS,		\
378    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_G1,			\
379    windows_x64_6.2-{product|fastdebug}-c2-jbb_default,			\
380    windows_x64_6.2-{product|fastdebug}-c2-jbb_default_nontiered,	\
381    windows_x64_6.2-product-c2-jbb_CMS,					\
382    windows_x64_6.2-product-c2-jbb_ParallelGC,				\
383    windows_x64_6.2-product-c2-jbb_G1
384
385# Some basic "smoke" tests for OpenJDK builds
386my.test.targets.hotspot.open=						\
387    solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98,		\
388    linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
389
390# The complete list of test targets for jprt
391my.test.targets.hotspot=						\
392  ${my.test.targets.hotspot.open},					\
393  ${my.test.targets.hotspot.solaris.sparcv9},				\
394  ${my.test.targets.hotspot.solaris.x64},				\
395  ${my.test.targets.hotspot.linux.i586},				\
396  ${my.test.targets.hotspot.linux.x64},					\
397  ${my.test.targets.hotspot.macosx.x64},				\
398  ${my.test.targets.hotspot.windows.i586},				\
399  ${my.test.targets.hotspot.windows.x64},				\
400  ${my.test.targets.hotspot.solaris.sparcv9},				\
401  ${my.test.targets.hotspot.solaris.x64},				\
402  ${my.test.targets.hotspot.linux.x64},					\
403  ${my.test.targets.hotspot.windows.i586},				\
404  ${my.test.targets.hotspot.windows.x64},				\
405  ${my.additional.test.targets.hotspot}
406
407
408# Make file based test targets
409
410my.make.rule.test.targets.hotspot.basicvmtests=                         \
411  linux_i586_2.6-*-default-hotspot_basicvmtest,                         \
412  linux_x64_2.6-*-default-hotspot_basicvmtest,                          \
413  macosx_x64_10.9-*-default-hotspot_basicvmtest,                        \
414  solaris_sparcv9_5.11-*-default-hotspot_basicvmtest,                   \
415  solaris_x64_5.11-*-default-hotspot_basicvmtest,                       \
416  windows_i586_6.2-*-default-hotspot_basicvmtest,                       \
417  windows_x64_6.2-*-default-hotspot_basicvmtest
418  
419my.make.rule.test.targets.hotspot.reg.group=				\
420  solaris_sparcv9_5.11-fastdebug-c2-GROUP,				\
421  solaris_x64_5.11-fastdebug-c2-GROUP,					\
422  linux_i586_2.6-fastdebug-c2-GROUP,					\
423  linux_x64_2.6-fastdebug-c2-GROUP,					\
424  macosx_x64_10.9-fastdebug-c2-GROUP,					\
425  windows_i586_6.2-fastdebug-c2-GROUP,					\
426  windows_x64_6.2-fastdebug-c2-GROUP,					\
427  linux_i586_2.6-fastdebug-c1-GROUP,					\
428  windows_i586_6.2-fastdebug-c1-GROUP
429
430# Hotspot jtreg tests
431my.make.rule.test.targets.hotspot.reg=						\
432  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1},	\
433  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2},	\
434  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3},	\
435  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed},	\
436  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc},		\
437  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed},       \
438  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_gcold},        \
439  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime},		\
440  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability},	\
441  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity},		\
442  ${my.additional.make.rule.test.targets.hotspot.reg}
443
444# Other Makefile based Hotspot tests
445my.make.rule.test.targets.hotspot.other=                                \
446  ${my.make.rule.test.targets.hotspot.basicvmtests},                    \
447  ${my.additional.make.rule.test.targets.hotspot.other}
448
449# All the makefile based tests to run
450my.make.rule.test.targets.hotspot=                                      \
451  ${my.make.rule.test.targets.hotspot.reg}                              \
452  ${my.make.rule.test.targets.hotspot.other}
453
454# Install the test bundle for the testset hotspot jtreg tests
455# (but not for the other Makefile based tests)
456my.jprt.test.bundle.targets.hotspot=${my.make.rule.test.targets.hotspot.reg}
457
458# Native jdk and hotspot test targets (testset=nativesanity)
459my.make.rule.test.targets.nativesanity=					\
460    ${my.test.target.set:TESTNAME=jdk_native_sanity},			\
461    ${my.test.target.set:TESTNAME=hotspot_native_sanity}
462
463# Install the test bundle for the nativesanity jtreg tests
464my.jprt.test.bundle.targets.nativesanity=${my.make.rule.test.targets.nativesanity}
465