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