jprt.properties revision 1835:8babe5690e7e
1264377Sdes#
298675Sdes# Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved.
398675Sdes# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
498675Sdes#
598675Sdes# This code is free software; you can redistribute it and/or modify it
698675Sdes# under the terms of the GNU General Public License version 2 only, as
798675Sdes# published by the Free Software Foundation.  Oracle designates this
898675Sdes# particular file as subject to the "Classpath" exception as provided
998675Sdes# by Oracle in the LICENSE file that accompanied this code.
1098675Sdes#
1198675Sdes# This code is distributed in the hope that it will be useful, but WITHOUT
1298675Sdes# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1398675Sdes# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1498675Sdes# version 2 for more details (a copy is included in the LICENSE file that
1598675Sdes# accompanied this code).
1698675Sdes#
1798675Sdes# You should have received a copy of the GNU General Public License version
1898675Sdes# 2 along with this work; if not, write to the Free Software Foundation,
1998675Sdes# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2098675Sdes#
2198675Sdes# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2298675Sdes# or visit www.oracle.com if you need additional information or have any
2398675Sdes# questions.
2498675Sdes#
2598675Sdes
2698675Sdes##############
2798675Sdes#
28162852Sdes# Global settings
29162852Sdes#
30162852Sdes
31162852Sdes# Install test bundle for targets in jprt.test.bundle.targets set
32162852Sdesjprt.selective.test.bundle.installation=true
3398675Sdes
3498675Sdes# The current release name
3598675Sdesjprt.tools.default.release=jdk9
36162852Sdes
37162852Sdes# Check if this is the equivalent of a hotspot push job
3898675Sdes# Interpret -testset hotspot to mean exactly that
39162852Sdesmy.is.hotspot.job.hotspot=true
40162852Sdesmy.is.hotspot.job=${my.is.hotspot.job.${jprt.test.set}}
41162852Sdes
42162852Sdes# Disable syncing the source after builds and tests are done
4398675Sdesjprt.sync.push=${my.is.hotspot.job ? false : true}
4498675Sdes
4598675Sdes# Directories to be excluded from the source bundles
4698675Sdesjprt.bundle.exclude.src.dirs=build dist webrev
4798675Sdes
4898675Sdes# Use configure when building
4998675Sdesjprt.build.use.configure=true
5098675Sdes
5198675Sdes# Set up the run flavors (jvm variants)
52126274Sdesjprt.run.flavors=c1,c2,default,${my.additional.run.flavors}
5398675Sdes
5498675Sdes# Set make target to use for different build flavors
55126274Sdesjprt.build.flavor.debugOpen.target=jprt_bundle
56126274Sdesjprt.build.flavor.fastdebug.target=jprt_bundle
5798675Sdesjprt.build.flavor.product.target=jprt_bundle
58126274Sdesjprt.build.flavor.productOpen.target=jprt_bundle
59126274Sdesjprt.build.flavor.optimized.target=jprt_bundle
60126274Sdesjprt.build.flavor.optimizedOpen.target=jprt_bundle
61126274Sdes
62264377Sdes# Use these configure args to define debug level
63255767Sdesjprt.debug.build.configure.args=--with-debug-level=slowdebug
64126274Sdesjprt.fastdebug.build.configure.args=--with-debug-level=fastdebug --disable-precompiled-headers
65126274Sdesjprt.product.build.configure.args=--with-debug-level=release
66126274Sdesjprt.optimized.build.configure.args=--with-debug-level=optimized
6798675Sdesjprt.debugOpen.build.configure.args=${jprt.debug.build.configure.args} --enable-openjdk-only
68124208Sdesjprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args} --enable-openjdk-only
69146998Sdesjprt.productOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
70146998Sdesjprt.optimizedOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
71264377Sdes
72255767Sdes
7398675Sdes# hotspot testset has custom build flavors and build targets
7498675Sdesmy.jprt.testsetHasCustomBuildFlavors.hotspot=true
7598675Sdesmy.jprt.testsetHasCustomBuildTargets.hotspot=true
7698675Sdes
7798675Sdes# determine if the specified testset has custom build flavors or build targets
7898675Sdesmy.jprt.testsetHasCustomBuildFlavors=${my.jprt.testsetHasCustomBuildFlavors.${jprt.test.set}}
7998675Sdesmy.jprt.testsetHasCustomBuildTargets=${my.jprt.testsetHasCustomBuildTargets.${jprt.test.set}}
8098675Sdes
81# Select build flavors and build targets based on the specified testset
82jprt.build.flavors=${my.jprt.testsetHasCustomBuildFlavors ? \
83    ${my.build.flavors.${jprt.test.set}} : ${my.build.flavors.default}}
84jprt.build.targets=${my.jprt.testsetHasCustomBuildTargets ? \
85    ${my.build.targets.${jprt.test.set}} : ${my.build.targets.default}}
86
87# Select test targets - jprt default for jprt.test.set is "default"
88jprt.test.targets=${my.test.targets.${jprt.test.set}}
89jprt.make.rule.test.targets=${my.make.rule.test.targets.${jprt.test.set}}
90jprt.test.bundle.targets=${my.jprt.test.bundle.targets.${jprt.test.set}}
91
92# 7155453: Work-around to prevent popups on OSX from blocking test completion
93# but the work-around is added to all platforms to be consistent
94jprt.jbb.options=-Djava.awt.headless=true
95
96########
97#
98# Build options (generic)
99#
100
101# Configure args common to all builds
102# Also allows for additional, testset specific configure arguments to be set
103jprt.build.configure.args=						\
104    --with-output-sync=recurse						\
105    --with-boot-jdk=$ALT_BOOTDIR					\
106    --with-jobs=$ALT_PARALLEL_COMPILE_JOBS				\
107    --with-version-opt=$JPRT_JOB_ID				 	\
108    MAKE=$JPRT_MAKE                                                     \
109    ${my.additional.build.configure.args.${jprt.test.set}}		\
110    ${my.custom.build.configure.args}
111
112# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly
113jprt.i586.build.configure.args=						\
114    --with-target-bits=32
115
116# i586 platforms have both client and server, but to allow for overriding the exact configuration
117# on a per-build flavor basis the value is set for the individual build flavors
118my.i586.default.build.configure.args=					\
119    --with-jvm-variants=client,server
120jprt.i586.debug.build.configure.args=					\
121    ${my.i586.default.build.configure.args}				\
122    ${jprt.debug.build.configure.args}
123jprt.i586.fastdebug.build.configure.args=				\
124    ${my.i586.default.build.configure.args}				\
125    ${jprt.fastdebug.build.configure.args}
126jprt.i586.product.build.configure.args=					\
127    ${my.i586.default.build.configure.args}				\
128    ${jprt.product.build.configure.args}
129jprt.i586.debugOpen.build.configure.args=				\
130    ${my.i586.default.build.configure.args}				\
131    ${jprt.debugOpen.build.configure.args}
132jprt.i586.fastdebugOpen.build.configure.args=				\
133    ${my.i586.default.build.configure.args}				\
134    ${jprt.fastdebugOpen.build.configure.args}
135jprt.i586.productOpen.build.configure.args=				\
136    ${my.i586.default.build.configure.args}				\
137    ${jprt.productOpen.build.configure.args}
138jprt.linux_i586.build.configure.args=					\
139    --with-devkit=$GCC492_OEL64_HOME					\
140    ${jprt.i586.build.configure.args}
141jprt.linux_x64.build.configure.args=					\
142    --with-devkit=$GCC492_OEL64_HOME
143jprt.macosx_x64.build.configure.args=					\
144    --with-devkit=$XCODE63_MACOSX109_HOME
145jprt.solaris.build.configure.args=					\
146    --with-devkit=$SS124_11u1_HOME
147jprt.windows_i586.build.configure.args=					\
148    --with-devkit=$VS2013SP4_HOME					\
149    ${jprt.i586.build.configure.args}
150jprt.windows_x64.build.configure.args=					\
151    --with-devkit=$VS2013SP4_HOME
152
153########
154#
155# Build targets and options (default/jdk)
156#
157
158# The default build flavors
159my.build.flavors.default=fastdebug,product
160
161# Standard list of jprt build targets for this source tree
162my.build.targets.default=						\
163    solaris_sparcv9_5.11-{product|fastdebug},				\
164    solaris_x64_5.11-{product|fastdebug},				\
165    linux_i586_2.6-{product|fastdebug},					\
166    linux_x64_2.6-{product|fastdebug},					\
167    macosx_x64_10.9-{product|fastdebug},				\
168    windows_i586_6.2-{product|fastdebug},				\
169    windows_x64_6.2-{product|fastdebug}
170
171# Test target list (no fastdebug & limited c2 testing)
172my.test.target.set=							\
173    solaris_sparcv9_5.11-product-c2-TESTNAME,				\
174    solaris_x64_5.11-product-c2-TESTNAME,				\
175    linux_i586_2.6-product-{c1|c2}-TESTNAME,				\
176    linux_x64_2.6-product-c2-TESTNAME,					\
177    macosx_x64_10.9-product-c2-TESTNAME,				\
178    windows_i586_6.2-product-c1-TESTNAME,				\
179    windows_x64_6.2-product-c2-TESTNAME
180
181# Default vm test targets (testset=default)
182my.test.targets.default=						\
183    ${my.test.target.set:TESTNAME=jvm98},				\
184    ${my.test.target.set:TESTNAME=scimark}
185
186# Default jdk test targets (testset=default)
187my.make.rule.test.targets.default=					\
188    ${my.test.target.set:TESTNAME=langtools_jtreg},			\
189    ${my.test.target.set:TESTNAME=jdk_lang},				\
190    ${my.test.target.set:TESTNAME=jdk_math},				\
191    ${my.test.target.set:TESTNAME=jdk_util}
192
193# Default vm test targets (testset=core)
194my.test.targets.core=
195
196# Core jdk test targets (testset=core)
197my.make.rule.test.targets.core=						\
198    ${my.test.target.set:TESTNAME=jdk_lang},				\
199    ${my.test.target.set:TESTNAME=jdk_math},				\
200    ${my.test.target.set:TESTNAME=jdk_util},				\
201    ${my.test.target.set:TESTNAME=jdk_io},				\
202    ${my.test.target.set:TESTNAME=jdk_net},				\
203    ${my.test.target.set:TESTNAME=jdk_nio},				\
204    ${my.test.target.set:TESTNAME=jdk_security1},			\
205    ${my.test.target.set:TESTNAME=jdk_security2},			\
206    ${my.test.target.set:TESTNAME=jdk_security3},			\
207    ${my.test.target.set:TESTNAME=jdk_security4},			\
208    ${my.test.target.set:TESTNAME=jdk_rmi},				\
209    ${my.test.target.set:TESTNAME=jdk_text},				\
210    ${my.test.target.set:TESTNAME=jdk_time},				\
211    ${my.test.target.set:TESTNAME=jdk_other},				\
212    ${my.test.target.set:TESTNAME=core_tools}
213
214# Svc vm test targets (testset=svc)
215my.test.targets.svc=
216
217# Core jdk test targets (testset=svc)
218my.make.rule.test.targets.svc=						\
219    ${my.test.target.set:TESTNAME=jdk_management},			\
220    ${my.test.target.set:TESTNAME=jdk_instrument},			\
221    ${my.test.target.set:TESTNAME=jdk_jmx},				\
222    ${my.test.target.set:TESTNAME=jdk_jdi},				\
223    ${my.test.target.set:TESTNAME=svc_tools},                           \
224    ${my.make.rule.test.targets.svc.extra}
225
226# JAXP vm test targets (testset=jaxp)
227my.test.targets.jaxp=
228
229# JAXP test targets (testset=jaxp)
230my.make.rule.test.targets.jaxp=						\
231    ${my.test.target.set:TESTNAME=jaxp_all}
232
233# All vm test targets (testset=all)
234my.test.targets.all=							\
235    ${my.test.targets.default},						\
236    ${my.test.target.set:TESTNAME=runThese},				\
237    ${my.test.target.set:TESTNAME=jbb_default}
238
239# All jdk test targets (testset=all)
240my.make.rule.test.targets.all=						\
241    ${my.make.rule.test.targets.core},					\
242    ${my.make.rule.test.targets.svc},					\
243    ${my.test.target.set:TESTNAME=jdk_awt},				\
244    ${my.test.target.set:TESTNAME=jdk_beans},				\
245    ${my.test.target.set:TESTNAME=jdk_sound},				\
246    ${my.test.target.set:TESTNAME=jdk_swing}
247
248# PIT vm test targets (testset=pit)
249my.test.targets.pit=							\
250   ${my.test.targets.all}
251
252# PIT jdk test targets (testset=pit)
253my.make.rule.test.targets.pit=						\
254    ${my.test.target.set:TESTNAME=langtools_jtreg},			\
255    ${my.make.rule.test.targets.core},					\
256    ${my.make.rule.test.targets.svc}                                    \
257    ${my.make.rule.test.targets.jaxp}
258
259# JCK test targets in test/Makefile (no windows)
260my.test.target.set.jck=							\
261    solaris_sparcv9_5.11-product-c2-JCK7TESTRULE,			\
262    solaris_x64_5.11-product-c2-JCK7TESTRULE,				\
263    linux_i586_2.6-product-c1-JCK7TESTRULE,				\
264    linux_x64_2.6-product-c2-JCK7TESTRULE
265
266# JCK testset targets
267my.make.rule.test.targets.jck=						\
268    ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools},		\
269    ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime},			\
270    ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
271
272
273#############
274#
275# Hotspot related settings (testset=hotspot)
276#
277
278# The hotspot build flavors
279my.build.flavors.hotspot=						\
280    debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
281    ${my.additional.build.flavors.hotspot}
282
283# Platforms built for hotspot push jobs
284my.build.targets.hotspot=						\
285    solaris_sparcv9_5.11-{product|fastdebug},			\
286    solaris_x64_5.11-{product|fastdebug},				\
287    linux_i586_2.6-{product|fastdebug},					\
288    linux_x64_2.6-{product|fastdebug},			\
289    macosx_x64_10.9-{product|fastdebug},				\
290    windows_i586_6.2-{product|fastdebug},				\
291    windows_x64_6.2-{product|fastdebug},			\
292    solaris_x64_5.11-{debugOpen},					\
293    linux_x64_2.6-{productOpen},					\
294    ${my.additional.build.targets.hotspot}
295
296# Tests to run on the various platforms for hotspot push jobs
297my.test.targets.hotspot.solaris.sparcv9=				\
298    solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98,			\
299    solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered,	\
300    solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark,		\
301    solaris_sparcv9_5.11-product-c2-runThese8,				\
302    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,	\
303    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,	\
304    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS,		\
305    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1
306
307my.test.targets.hotspot.solaris.x64=					\
308    solaris_x64_5.11-{product|fastdebug}-c2-jvm98,			\
309    solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered,		\
310    solaris_x64_5.11-{product|fastdebug}-c2-scimark,			\
311    solaris_x64_5.11-product-c2-runThese8,				\
312    solaris_x64_5.11-product-c2-runThese8_Xcomp_lang,			\
313    solaris_x64_5.11-product-c2-runThese8_Xcomp_vm,			\
314    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,		\
315    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,	\
316    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS,		\
317    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1
318
319my.test.targets.hotspot.linux.i586=					\
320    linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98,			\
321    linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered,		\
322    linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark,			\
323    linux_i586_2.6-product-c1-runThese8_Xcomp_lang,			\
324    linux_i586_2.6-product-c1-runThese8_Xcomp_vm,			\
325    linux_i586_2.6-fastdebug-c1-runThese8_Xshare,			\
326    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang,			\
327    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm,			\
328    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
329    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
330    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
331    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1
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
342my.test.targets.hotspot.macosx.x64=					\
343    macosx_x64_10.9-{product|fastdebug}-c2-jvm98,			\
344    macosx_x64_10.9-{product|fastdebug}-c2-jvm98_nontiered,		\
345    macosx_x64_10.9-{product|fastdebug}-c2-scimark,			\
346    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_SerialGC,		\
347    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
348    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_CMS,		\
349    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_G1
350
351my.test.targets.hotspot.windows.i586=					\
352    windows_i586_6.2-{product|fastdebug}-{c1|c2}-jvm98,			\
353    windows_i586_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
354    windows_i586_6.2-{product|fastdebug}-{c1|c2}-scimark,		\
355    windows_i586_6.2-product-{c1|c2}-runThese8,				\
356    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_lang,		\
357    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_vm,		\
358    windows_i586_6.2-fastdebug-c1-runThese8_Xshare,			\
359    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
360    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
361    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
362    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_G1
363
364my.test.targets.hotspot.windows.x64=					\
365    windows_x64_6.2-{product|fastdebug}-c2-jvm98,			\
366    windows_x64_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
367    windows_x64_6.2-{product|fastdebug}-c2-scimark,			\
368    windows_x64_6.2-product-c2-runThese8,				\
369    windows_x64_6.2-product-c2-runThese8_Xcomp_lang,			\
370    windows_x64_6.2-product-c2-runThese8_Xcomp_vm,			\
371    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_SerialGC,		\
372    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
373    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_CMS,		\
374    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_G1
375
376# Some basic "smoke" tests for OpenJDK builds
377my.test.targets.hotspot.open=						\
378    solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98,		\
379    linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
380
381# The complete list of test targets for jprt
382my.test.targets.hotspot=						\
383  ${my.test.targets.hotspot.open},					\
384  ${my.test.targets.hotspot.solaris.sparcv9},				\
385  ${my.test.targets.hotspot.solaris.x64},				\
386  ${my.test.targets.hotspot.linux.i586},				\
387  ${my.test.targets.hotspot.linux.x64},					\
388  ${my.test.targets.hotspot.macosx.x64},				\
389  ${my.test.targets.hotspot.windows.i586},				\
390  ${my.test.targets.hotspot.windows.x64},				\
391  ${my.test.targets.hotspot.solaris.sparcv9},				\
392  ${my.test.targets.hotspot.solaris.x64},				\
393  ${my.test.targets.hotspot.linux.x64},					\
394  ${my.test.targets.hotspot.windows.i586},				\
395  ${my.test.targets.hotspot.windows.x64},				\
396  ${my.additional.test.targets.hotspot}
397
398
399# Make file based test targets
400
401my.make.rule.test.targets.hotspot.basicvmtests=                         \
402  linux_i586_2.6-*-default-hotspot_basicvmtest,                         \
403  linux_x64_2.6-*-default-hotspot_basicvmtest,                          \
404  macosx_x64_10.9-*-default-hotspot_basicvmtest,                        \
405  solaris_sparcv9_5.11-*-default-hotspot_basicvmtest,                   \
406  solaris_x64_5.11-*-default-hotspot_basicvmtest,                       \
407  windows_i586_6.2-*-default-hotspot_basicvmtest,                       \
408  windows_x64_6.2-*-default-hotspot_basicvmtest
409  
410my.make.rule.test.targets.hotspot.reg.group=				\
411  solaris_sparcv9_5.11-fastdebug-c2-GROUP,				\
412  solaris_x64_5.11-fastdebug-c2-GROUP,					\
413  linux_i586_2.6-fastdebug-c2-GROUP,					\
414  linux_x64_2.6-fastdebug-c2-GROUP,					\
415  macosx_x64_10.9-fastdebug-c2-GROUP,					\
416  windows_i586_6.2-fastdebug-c2-GROUP,					\
417  windows_x64_6.2-fastdebug-c2-GROUP,					\
418  linux_i586_2.6-fastdebug-c1-GROUP,					\
419  windows_i586_6.2-fastdebug-c1-GROUP
420
421# Hotspot jtreg tests
422my.make.rule.test.targets.hotspot.reg=						\
423  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1},	\
424  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2},	\
425  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3},	\
426  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed},	\
427  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc},		\
428  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed},       \
429  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_gcold},        \
430  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime},		\
431  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability},	\
432  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity},		\
433  ${my.additional.make.rule.test.targets.hotspot.reg}
434
435# Other Makefile based Hotspot tests
436my.make.rule.test.targets.hotspot.other=                                \
437  ${my.make.rule.test.targets.hotspot.basicvmtests},                    \
438  ${my.additional.make.rule.test.targets.hotspot.other}
439
440# All the makefile based tests to run
441my.make.rule.test.targets.hotspot=                                      \
442  ${my.make.rule.test.targets.hotspot.reg}                              \
443  ${my.make.rule.test.targets.hotspot.other}
444
445# Install the test bundle for the testset hotspot jtreg tests
446# (but not for the other Makefile based tests)
447my.jprt.test.bundle.targets.hotspot=${my.make.rule.test.targets.hotspot.reg}
448
449# Native jdk and hotspot test targets (testset=nativesanity)
450my.make.rule.test.targets.nativesanity=					\
451    ${my.test.target.set:TESTNAME=jdk_native_sanity},			\
452    ${my.test.target.set:TESTNAME=hotspot_native_sanity}
453
454# Install the test bundle for the nativesanity jtreg tests
455my.jprt.test.bundle.targets.nativesanity=${my.make.rule.test.targets.nativesanity}
456