jprt.properties revision 1546:f50c05d4dcd5
1156932Sru#
2156932Sru# 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    ${my.additional.build.configure.args.${jprt.test.set}}		\
97    ${my.custom.build.configure.args}
98
99# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly
100jprt.i586.build.configure.args=						\
101    --with-target-bits=32
102
103# i586 platforms have both client and server, but to allow for overriding the exact configuration
104# on a per-build flavor basis the value is set for the individual build flavors
105my.i586.default.build.configure.args=					\
106    --with-jvm-variants=client,server
107jprt.i586.debug.build.configure.args=					\
108    ${my.i586.default.build.configure.args}				\
109    ${jprt.debug.build.configure.args}
110jprt.i586.fastdebug.build.configure.args=				\
111    ${my.i586.default.build.configure.args}				\
112    ${jprt.fastdebug.build.configure.args}
113jprt.i586.product.build.configure.args=					\
114    ${my.i586.default.build.configure.args}				\
115    ${jprt.product.build.configure.args}
116jprt.i586.debugOpen.build.configure.args=				\
117    ${my.i586.default.build.configure.args}				\
118    ${jprt.debugOpen.build.configure.args}
119jprt.i586.fastdebugOpen.build.configure.args=				\
120    ${my.i586.default.build.configure.args}				\
121    ${jprt.fastdebugOpen.build.configure.args}
122jprt.i586.productOpen.build.configure.args=				\
123    ${my.i586.default.build.configure.args}				\
124    ${jprt.productOpen.build.configure.args}
125
126jprt.windows_i586.build.configure.args= \
127    --with-devkit=$VS2013_HOME \
128    ${jprt.i586.build.configure.args}
129jprt.windows_x64.build.configure.args= \
130    --with-devkit=$VS2013_HOME
131jprt.macosx_x64.build.configure.args= \
132    --with-devkit=$XCODE_511_HOME
133
134########
135#
136# Build targets and options (default/jdk)
137#
138
139# The default build flavors
140my.build.flavors.default=fastdebug,product
141
142# Standard list of jprt build targets for this source tree
143my.build.targets.default=						\
144    solaris_sparcv9_5.11-{product|fastdebug},				\
145    solaris_x64_5.11-{product|fastdebug},				\
146    linux_i586_2.6-{product|fastdebug},					\
147    linux_x64_2.6-{product|fastdebug},					\
148    macosx_x64_10.9-{product|fastdebug},				\
149    windows_i586_6.2-{product|fastdebug},				\
150    windows_x64_6.2-{product|fastdebug}
151
152# Test target list (no fastdebug & limited c2 testing)
153my.test.target.set=							\
154    solaris_sparcv9_5.11-product-c2-TESTNAME,				\
155    solaris_x64_5.11-product-c2-TESTNAME,				\
156    linux_i586_2.6-product-{c1|c2}-TESTNAME,				\
157    linux_x64_2.6-product-c2-TESTNAME,					\
158    macosx_x64_10.9-product-c2-TESTNAME,				\
159    windows_i586_6.2-product-c1-TESTNAME,				\
160    windows_x64_6.2-product-c2-TESTNAME
161
162# Default vm test targets (testset=default)
163my.test.targets.default=						\
164    ${my.test.target.set:TESTNAME=jvm98},				\
165    ${my.test.target.set:TESTNAME=scimark}
166
167# Default jdk test targets (testset=default)
168my.make.rule.test.targets.default=					\
169    ${my.test.target.set:TESTNAME=langtools_jtreg},			\
170    ${my.test.target.set:TESTNAME=jdk_lang},				\
171    ${my.test.target.set:TESTNAME=jdk_math},				\
172    ${my.test.target.set:TESTNAME=jdk_util}
173
174# Default vm test targets (testset=core)
175my.test.targets.core=
176
177# Core jdk test targets (testset=core)
178my.make.rule.test.targets.core=						\
179    ${my.test.target.set:TESTNAME=jdk_lang},				\
180    ${my.test.target.set:TESTNAME=jdk_math},				\
181    ${my.test.target.set:TESTNAME=jdk_util},				\
182    ${my.test.target.set:TESTNAME=jdk_io},				\
183    ${my.test.target.set:TESTNAME=jdk_net},				\
184    ${my.test.target.set:TESTNAME=jdk_nio},				\
185    ${my.test.target.set:TESTNAME=jdk_security1},			\
186    ${my.test.target.set:TESTNAME=jdk_security2},			\
187    ${my.test.target.set:TESTNAME=jdk_security3},			\
188    ${my.test.target.set:TESTNAME=jdk_security4},			\
189    ${my.test.target.set:TESTNAME=jdk_rmi},				\
190    ${my.test.target.set:TESTNAME=jdk_text},				\
191    ${my.test.target.set:TESTNAME=jdk_time},				\
192    ${my.test.target.set:TESTNAME=jdk_other},				\
193    ${my.test.target.set:TESTNAME=core_tools}
194
195# Svc vm test targets (testset=svc)
196my.test.targets.svc=
197
198# Core jdk test targets (testset=svc)
199my.make.rule.test.targets.svc=						\
200    ${my.test.target.set:TESTNAME=jdk_management},			\
201    ${my.test.target.set:TESTNAME=jdk_instrument},			\
202    ${my.test.target.set:TESTNAME=jdk_jmx},				\
203    ${my.test.target.set:TESTNAME=jdk_jdi},				\
204    ${my.test.target.set:TESTNAME=svc_tools},                           \
205    ${my.make.rule.test.targets.svc.extra}
206
207# JAXP vm test targets (testset=jaxp)
208my.test.targets.jaxp=
209
210# JAXP test targets (testset=jaxp)
211my.make.rule.test.targets.jaxp=						\
212    ${my.test.target.set:TESTNAME=jaxp_all}
213
214# All vm test targets (testset=all)
215my.test.targets.all=							\
216    ${my.test.targets.default},						\
217    ${my.test.target.set:TESTNAME=runThese},				\
218    ${my.test.target.set:TESTNAME=jbb_default}
219
220# All jdk test targets (testset=all)
221my.make.rule.test.targets.all=						\
222    ${my.make.rule.test.targets.core},					\
223    ${my.make.rule.test.targets.svc},					\
224    ${my.test.target.set:TESTNAME=jdk_awt},				\
225    ${my.test.target.set:TESTNAME=jdk_beans},				\
226    ${my.test.target.set:TESTNAME=jdk_sound},				\
227    ${my.test.target.set:TESTNAME=jdk_swing}
228
229# PIT vm test targets (testset=pit)
230my.test.targets.pit=							\
231   ${my.test.targets.all}
232
233# PIT jdk test targets (testset=pit)
234my.make.rule.test.targets.pit=						\
235    ${my.test.target.set:TESTNAME=langtools_jtreg},			\
236    ${my.make.rule.test.targets.core},					\
237    ${my.make.rule.test.targets.svc}                                    \
238    ${my.make.rule.test.targets.jaxp}
239
240# JCK test targets in test/Makefile (no windows)
241my.test.target.set.jck=							\
242    solaris_sparcv9_5.11-product-c2-JCK7TESTRULE,			\
243    solaris_x64_5.11-product-c2-JCK7TESTRULE,				\
244    linux_i586_2.6-product-c1-JCK7TESTRULE,				\
245    linux_x64_2.6-product-c2-JCK7TESTRULE
246
247# JCK testset targets
248my.make.rule.test.targets.jck=						\
249    ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools},		\
250    ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime},			\
251    ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
252
253
254#############
255#
256# Hotspot related settings (testset=hotspot)
257#
258
259# The hotspot build flavors
260my.build.flavors.hotspot=						\
261    debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
262    ${my.additional.build.flavors.hotspot}
263
264# Platforms built for hotspot push jobs
265my.build.targets.hotspot=						\
266    solaris_sparcv9_5.11-{product|fastdebug},			\
267    solaris_x64_5.11-{product|fastdebug},				\
268    linux_i586_2.6-{product|fastdebug},					\
269    linux_x64_2.6-{product|fastdebug},			\
270    macosx_x64_10.9-{product|fastdebug},				\
271    windows_i586_6.2-{product|fastdebug},				\
272    windows_x64_6.2-{product|fastdebug},			\
273    solaris_x64_5.11-{debugOpen},					\
274    linux_x64_2.6-{productOpen},					\
275    ${my.additional.build.targets.hotspot}
276
277# Tests to run on the various platforms for hotspot push jobs
278my.test.targets.hotspot.solaris.sparcv9=				\
279    solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98,			\
280    solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered,	\
281    solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark,		\
282    solaris_sparcv9_5.11-product-c2-runThese8,				\
283    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,	\
284    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,	\
285    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS,		\
286    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1,		\
287    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC,	\
288    solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_default_nontiered,	\
289    solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_SerialGC,		\
290    solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParallelGC,		\
291    solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_CMS,		\
292    solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_G1,			\
293    solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParOldGC
294
295my.test.targets.hotspot.solaris.x64=					\
296    solaris_x64_5.11-{product|fastdebug}-c2-jvm98,			\
297    solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered,		\
298    solaris_x64_5.11-{product|fastdebug}-c2-scimark,			\
299    solaris_x64_5.11-product-c2-runThese8,				\
300    solaris_x64_5.11-product-c2-runThese8_Xcomp_lang,			\
301    solaris_x64_5.11-product-c2-runThese8_Xcomp_vm,			\
302    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,		\
303    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,	\
304    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS,		\
305    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1,		\
306    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC,		\
307    solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered,	\
308    solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC,		\
309    solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC,
310
311my.test.targets.hotspot.linux.i586=					\
312    linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98,			\
313    linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered,		\
314    linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark,			\
315    linux_i586_2.6-product-c1-runThese8_Xcomp_lang,			\
316    linux_i586_2.6-product-c1-runThese8_Xcomp_vm,			\
317    linux_i586_2.6-fastdebug-c1-runThese8_Xshare,			\
318    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang,			\
319    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm,			\
320    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
321    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
322    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
323    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1,		\
324    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC,	\
325    linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC,			\
326    linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered,	\
327    linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC,		\
328    linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS,			\
329    linux_i586_2.6-{product|fastdebug}-c1-jbb_G1,			\
330    linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC
331
332my.test.targets.hotspot.linux.x64=					\
333    linux_x64_2.6-{product|fastdebug}-c2-jvm98,				\
334    linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered,		\
335    linux_x64_2.6-{product|fastdebug}-c2-scimark,			\
336    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC,		\
337    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
338    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS,			\
339    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1,			\
340    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC,		\
341    linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered,		\
342    linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC,		\
343    linux_x64_2.6-{product|fastdebug}-c2-jbb_G1,			\
344    linux_x64_2.6-{product|fastdebug}-c2-jbb_ParOldGC
345
346my.test.targets.hotspot.macosx.x64=					\
347    macosx_x64_10.9-{product|fastdebug}-c2-jvm98,			\
348    macosx_x64_10.9-{product|fastdebug}-c2-jvm98_nontiered,		\
349    macosx_x64_10.9-{product|fastdebug}-c2-scimark,			\
350    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_SerialGC,		\
351    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
352    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_CMS,		\
353    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_G1,			\
354    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParOldGC,		\
355    macosx_x64_10.9-{product|fastdebug}-c2-jbb_default_nontiered,	\
356    macosx_x64_10.9-{product|fastdebug}-c2-jbb_ParallelGC,		\
357    macosx_x64_10.9-{product|fastdebug}-c2-jbb_G1,			\
358    macosx_x64_10.9-{product|fastdebug}-c2-jbb_ParOldGC
359
360my.test.targets.hotspot.windows.i586=					\
361    windows_i586_6.2-{product|fastdebug}-{c1|c2}-jvm98,			\
362    windows_i586_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
363    windows_i586_6.2-{product|fastdebug}-{c1|c2}-scimark,		\
364    windows_i586_6.2-product-{c1|c2}-runThese8,				\
365    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_lang,		\
366    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_vm,		\
367    windows_i586_6.2-fastdebug-c1-runThese8_Xshare,			\
368    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
369    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
370    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
371    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_G1,		\
372    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC,	\
373    windows_i586_6.2-{product|fastdebug}-{c1|c2}-jbb_default,		\
374    windows_i586_6.2-{product|fastdebug}-c2-jbb_default_nontiered,	\
375    windows_i586_6.2-product-{c1|c2}-jbb_ParallelGC,			\
376    windows_i586_6.2-product-{c1|c2}-jbb_CMS,				\
377    windows_i586_6.2-product-{c1|c2}-jbb_G1,				\
378    windows_i586_6.2-product-{c1|c2}-jbb_ParOldGC
379
380my.test.targets.hotspot.windows.x64=					\
381    windows_x64_6.2-{product|fastdebug}-c2-jvm98,			\
382    windows_x64_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
383    windows_x64_6.2-{product|fastdebug}-c2-scimark,			\
384    windows_x64_6.2-product-c2-runThese8,				\
385    windows_x64_6.2-product-c2-runThese8_Xcomp_lang,			\
386    windows_x64_6.2-product-c2-runThese8_Xcomp_vm,			\
387    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_SerialGC,		\
388    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
389    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_CMS,		\
390    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_G1,			\
391    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_ParOldGC,		\
392    windows_x64_6.2-{product|fastdebug}-c2-jbb_default,			\
393    windows_x64_6.2-{product|fastdebug}-c2-jbb_default_nontiered,	\
394    windows_x64_6.2-product-c2-jbb_CMS,					\
395    windows_x64_6.2-product-c2-jbb_ParallelGC,				\
396    windows_x64_6.2-product-c2-jbb_G1,					\
397    windows_x64_6.2-product-c2-jbb_ParOldGC
398
399# Some basic "smoke" tests for OpenJDK builds
400my.test.targets.hotspot.open=						\
401    solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98,		\
402    linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
403
404# The complete list of test targets for jprt
405my.test.targets.hotspot=						\
406  ${my.test.targets.hotspot.open},					\
407  ${my.test.targets.hotspot.solaris.sparcv9},				\
408  ${my.test.targets.hotspot.solaris.x64},				\
409  ${my.test.targets.hotspot.linux.i586},				\
410  ${my.test.targets.hotspot.linux.x64},					\
411  ${my.test.targets.hotspot.macosx.x64},				\
412  ${my.test.targets.hotspot.windows.i586},				\
413  ${my.test.targets.hotspot.windows.x64},				\
414  ${my.test.targets.hotspot.solaris.sparcv9},				\
415  ${my.test.targets.hotspot.solaris.x64},				\
416  ${my.test.targets.hotspot.linux.x64},					\
417  ${my.test.targets.hotspot.windows.i586},				\
418  ${my.test.targets.hotspot.windows.x64},				\
419  ${my.additional.test.targets.hotspot}
420
421
422# Make file based test targets
423
424my.make.rule.test.targets.hotspot.basicvmtests=                         \
425  linux_i586_2.6-*-default-hotspot_basicvmtest,                         \
426  linux_x64_2.6-*-default-hotspot_basicvmtest,                          \
427  macosx_x64_10.9-*-default-hotspot_basicvmtest,                        \
428  solaris_sparcv9_5.11-*-default-hotspot_basicvmtest,                   \
429  solaris_x64_5.11-*-default-hotspot_basicvmtest,                       \
430  windows_i586_6.2-*-default-hotspot_basicvmtest,                       \
431  windows_x64_6.2-*-default-hotspot_basicvmtest
432  
433my.make.rule.test.targets.hotspot.reg.group=				\
434  solaris_sparcv9_5.11-fastdebug-c2-GROUP,				\
435  solaris_x64_5.11-fastdebug-c2-GROUP,					\
436  linux_i586_2.6-fastdebug-c2-GROUP,					\
437  linux_x64_2.6-fastdebug-c2-GROUP,					\
438  macosx_x64_10.9-fastdebug-c2-GROUP,					\
439  windows_i586_6.2-fastdebug-c2-GROUP,					\
440  windows_x64_6.2-fastdebug-c2-GROUP,					\
441  linux_i586_2.6-fastdebug-c1-GROUP,					\
442  windows_i586_6.2-fastdebug-c1-GROUP
443
444# Hotspot jtreg tests
445my.make.rule.test.targets.hotspot.reg=						\
446  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1},	\
447  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2},	\
448  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3},	\
449  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed},	\
450  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc},		\
451  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed},       \
452  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_gcold},        \
453  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime},		\
454  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability},	\
455  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity},		\
456  ${my.additional.make.rule.test.targets.hotspot.reg}
457
458# Other Makefile based Hotspot tests
459my.make.rule.test.targets.hotspot.other=                                \
460  ${my.make.rule.test.targets.hotspot.basicvmtests},                    \
461  ${my.additional.make.rule.test.targets.hotspot.other}
462
463# All the makefile based tests to run
464my.make.rule.test.targets.hotspot=                                      \
465  ${my.make.rule.test.targets.hotspot.reg}                              \
466  ${my.make.rule.test.targets.hotspot.other}
467
468# Install the test bundle for the testset hotspot jtreg tests
469# (but not for the other Makefile based tests)
470my.jprt.test.bundle.targets.hotspot=${my.make.rule.test.targets.hotspot.reg}
471
472# Native jdk and hotspot test targets (testset=nativesanity)
473my.make.rule.test.targets.nativesanity=					\
474    ${my.test.target.set:TESTNAME=jdk_native_sanity},			\
475    ${my.test.target.set:TESTNAME=hotspot_native_sanity}
476
477# Install the test bundle for the nativesanity jtreg tests
478my.jprt.test.bundle.targets.nativesanity=${my.make.rule.test.targets.nativesanity}
479