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