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