blob: 036a64e6ca267ffe5fcac3490c8aa789bc8069ce [file] [log] [blame]
J. Duke686d76f2007-12-01 00:00:00 +00001#
Mikael Vidstedt40c9be92014-06-24 20:29:52 -07002# Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
J. Duke686d76f2007-12-01 00:00:00 +00003# 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
Kelly O'Hair136614e2010-05-25 15:51:26 -07007# published by the Free Software Foundation. Oracle designates this
J. Duke686d76f2007-12-01 00:00:00 +00008# particular file as subject to the "Classpath" exception as provided
Kelly O'Hair136614e2010-05-25 15:51:26 -07009# by Oracle in the LICENSE file that accompanied this code.
J. Duke686d76f2007-12-01 00:00:00 +000010#
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#
Kelly O'Hair136614e2010-05-25 15:51:26 -070021# 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.
J. Duke686d76f2007-12-01 00:00:00 +000024#
25
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070026##############
27#
28# Global settings
29#
J. Duke686d76f2007-12-01 00:00:00 +000030
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070031# The current release name
Erik Joelssond914e2b2013-12-19 14:11:12 +010032jprt.tools.default.release=jdk9
J. Duke686d76f2007-12-01 00:00:00 +000033
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070034# 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}}
Kelly O'Hairec348ed2013-01-04 21:04:03 -080038
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070039# Disable syncing the source after builds and tests are done
40jprt.sync.push=${my.is.hotspot.job ? false : true}
Kelly O'Hair891aa6b2010-03-06 15:00:40 -080041
Kelly O'Hair68ba7cf2010-09-07 15:13:58 -070042# Directories to be excluded from the source bundles
Kelly O'Hair891aa6b2010-03-06 15:00:40 -080043jprt.bundle.exclude.src.dirs=build dist webrev
J. Duke686d76f2007-12-01 00:00:00 +000044
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070045# Use configure when building
Erik Joelssond9706a02013-12-17 11:09:26 +010046jprt.build.use.configure=true
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070047
48# Set make target to use for different build flavors
49jprt.build.flavor.debugOpen.target=jprt_bundle
Erik Joelssond9706a02013-12-17 11:09:26 +010050jprt.build.flavor.fastdebug.target=jprt_bundle
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070051jprt.build.flavor.product.target=jprt_bundle
52jprt.build.flavor.productOpen.target=jprt_bundle
Igor Ignatyev913c598d2014-11-08 16:01:10 +030053jprt.build.flavor.optimized.target=jprt_bundle
54jprt.build.flavor.optimizedOpen.target=jprt_bundle
Erik Joelssond9706a02013-12-17 11:09:26 +010055
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070056# Use these configure args to define debug level
Erik Joelssond9706a02013-12-17 11:09:26 +010057jprt.debug.build.configure.args=--with-debug-level=slowdebug
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070058jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug
59jprt.product.build.configure.args=--with-debug-level=release
Igor Ignatyev913c598d2014-11-08 16:01:10 +030060jprt.optimized.build.configure.args=--with-debug-level=optimized
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070061jprt.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
Igor Ignatyev913c598d2014-11-08 16:01:10 +030064jprt.optimizedOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070065
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= \
Chris Hegartyebd8efe2014-08-17 15:51:37 +010086 --with-output-sync=recurse \
87 --with-boot-jdk=$ALT_BOOTDIR \
88 --with-jobs=$ALT_PARALLEL_COMPILE_JOBS \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070089 ${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}
Magnus Ihse Bursiec4ced972014-11-27 15:41:56 +0100157
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700158# 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}, \
Sean Coffey5edf3d92014-09-10 16:13:35 +0100172 ${my.test.target.set:TESTNAME=jdk_security4}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700173 ${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}, \
Chris Hegartyb26d39f2014-12-03 14:20:21 +0000188 ${my.test.target.set:TESTNAME=svc_tools}, \
189 ${my.make.rule.test.targets.svc.extra}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700190
Tristan Yana78b9852014-12-15 13:09:39 -0800191# JAXP vm test targets (testset=jaxp)
192my.test.targets.jaxp=
193
194# JAXP test targets (testset=jaxp)
195my.make.rule.test.targets.jaxp= \
196 ${my.test.target.set:TESTNAME=jaxp_all}
197
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700198# All vm test targets (testset=all)
199my.test.targets.all= \
200 ${my.test.targets.default}, \
201 ${my.test.target.set:TESTNAME=runThese}, \
202 ${my.test.target.set:TESTNAME=jbb_default}
203
204# All jdk test targets (testset=all)
205my.make.rule.test.targets.all= \
206 ${my.make.rule.test.targets.core}, \
207 ${my.make.rule.test.targets.svc}, \
208 ${my.test.target.set:TESTNAME=jdk_awt}, \
Mikael Vidstedt09b196b2014-07-03 10:23:19 -0700209 ${my.test.target.set:TESTNAME=jdk_beans}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700210 ${my.test.target.set:TESTNAME=jdk_sound}, \
211 ${my.test.target.set:TESTNAME=jdk_swing}
212
213# PIT vm test targets (testset=pit)
214my.test.targets.pit= \
215 ${my.test.targets.all}
216
217# PIT jdk test targets (testset=pit)
218my.make.rule.test.targets.pit= \
219 ${my.test.target.set:TESTNAME=langtools_jtreg}, \
220 ${my.make.rule.test.targets.core}, \
Tristan Yana78b9852014-12-15 13:09:39 -0800221 ${my.make.rule.test.targets.svc} \
222 ${my.make.rule.test.targets.jaxp}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700223
224# JCK test targets in test/Makefile (no windows)
225my.test.target.set.jck= \
226 solaris_sparcv9_5.11-product-c2-JCK7TESTRULE, \
227 solaris_x64_5.11-product-c2-JCK7TESTRULE, \
228 linux_i586_2.6-product-c1-JCK7TESTRULE, \
229 linux_x64_2.6-product-c2-JCK7TESTRULE
230
231# JCK testset targets
232my.make.rule.test.targets.jck= \
233 ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools}, \
234 ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime}, \
235 ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
236
237
238#############
239#
240# Hotspot related settings (testset=hotspot)
241#
242
243# The hotspot build flavors
244my.build.flavors.hotspot= \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300245 debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700246 ${my.additional.build.flavors.hotspot}
247
248# Platforms built for hotspot push jobs
249my.build.targets.hotspot= \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300250 solaris_sparcv9_5.11-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700251 solaris_x64_5.11-{product|fastdebug}, \
252 linux_i586_2.6-{product|fastdebug}, \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300253 linux_x64_2.6-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700254 macosx_x64_10.7-{product|fastdebug}, \
255 windows_i586_6.1-{product|fastdebug}, \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300256 windows_x64_6.1-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700257 solaris_x64_5.11-{debugOpen}, \
258 linux_x64_2.6-{productOpen}, \
259 ${my.additional.build.targets.hotspot}
260
261# Tests to run on the various platforms for hotspot push jobs
262my.test.targets.hotspot.solaris.sparcv9= \
263 solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98, \
264 solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered, \
265 solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700266 solaris_sparcv9_5.11-product-c2-runThese8, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700267 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \
268 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700269 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS, \
270 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1, \
271 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700272 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \
273 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_SerialGC, \
274 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParallelGC, \
275 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_CMS, \
276 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_G1, \
277 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParOldGC
278
279my.test.targets.hotspot.solaris.x64= \
280 solaris_x64_5.11-{product|fastdebug}-c2-jvm98, \
281 solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered, \
282 solaris_x64_5.11-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700283 solaris_x64_5.11-product-c2-runThese8, \
284 solaris_x64_5.11-product-c2-runThese8_Xcomp_lang, \
285 solaris_x64_5.11-product-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700286 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \
287 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700288 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS, \
289 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1, \
290 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700291 solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \
292 solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC, \
Bengt Rutissonf96d0512015-01-07 15:02:33 +0100293 solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC,
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700294
295my.test.targets.hotspot.linux.i586= \
296 linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98, \
297 linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
298 linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700299 linux_i586_2.6-product-c1-runThese8_Xcomp_lang, \
300 linux_i586_2.6-product-c1-runThese8_Xcomp_vm, \
301 linux_i586_2.6-fastdebug-c1-runThese8_Xshare, \
302 linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang, \
303 linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700304 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
305 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700306 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
307 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
308 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700309 linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC, \
310 linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \
311 linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC, \
312 linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS, \
313 linux_i586_2.6-{product|fastdebug}-c1-jbb_G1, \
314 linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC
315
316my.test.targets.hotspot.linux.x64= \
317 linux_x64_2.6-{product|fastdebug}-c2-jvm98, \
318 linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
319 linux_x64_2.6-{product|fastdebug}-c2-scimark, \
320 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC, \
321 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700322 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS, \
323 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1, \
324 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700325 linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \
326 linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC, \
327 linux_x64_2.6-{product|fastdebug}-c2-jbb_G1, \
328 linux_x64_2.6-{product|fastdebug}-c2-jbb_ParOldGC
329
330my.test.targets.hotspot.macosx.x64= \
331 macosx_x64_10.7-{product|fastdebug}-c2-jvm98, \
332 macosx_x64_10.7-{product|fastdebug}-c2-jvm98_nontiered, \
333 macosx_x64_10.7-{product|fastdebug}-c2-scimark, \
334 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_SerialGC, \
335 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700336 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_CMS, \
337 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_G1, \
338 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700339 macosx_x64_10.7-{product|fastdebug}-c2-jbb_default_nontiered, \
340 macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParallelGC, \
341 macosx_x64_10.7-{product|fastdebug}-c2-jbb_G1, \
342 macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParOldGC
343
344my.test.targets.hotspot.windows.i586= \
345 windows_i586_6.1-{product|fastdebug}-{c1|c2}-jvm98, \
346 windows_i586_6.1-{product|fastdebug}-c2-jvm98_nontiered, \
347 windows_i586_6.1-{product|fastdebug}-{c1|c2}-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700348 windows_i586_6.1-product-{c1|c2}-runThese8, \
349 windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_lang, \
350 windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_vm, \
351 windows_i586_6.1-fastdebug-c1-runThese8_Xshare, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700352 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
353 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700354 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
355 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
356 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700357 windows_i586_6.1-{product|fastdebug}-{c1|c2}-jbb_default, \
358 windows_i586_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \
359 windows_i586_6.1-product-{c1|c2}-jbb_ParallelGC, \
360 windows_i586_6.1-product-{c1|c2}-jbb_CMS, \
361 windows_i586_6.1-product-{c1|c2}-jbb_G1, \
362 windows_i586_6.1-product-{c1|c2}-jbb_ParOldGC
363
364my.test.targets.hotspot.windows.x64= \
365 windows_x64_6.1-{product|fastdebug}-c2-jvm98, \
366 windows_x64_6.1-{product|fastdebug}-c2-jvm98_nontiered, \
367 windows_x64_6.1-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700368 windows_x64_6.1-product-c2-runThese8, \
369 windows_x64_6.1-product-c2-runThese8_Xcomp_lang, \
370 windows_x64_6.1-product-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700371 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_SerialGC, \
372 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700373 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_CMS, \
374 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_G1, \
375 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700376 windows_x64_6.1-{product|fastdebug}-c2-jbb_default, \
377 windows_x64_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \
378 windows_x64_6.1-product-c2-jbb_CMS, \
379 windows_x64_6.1-product-c2-jbb_ParallelGC, \
380 windows_x64_6.1-product-c2-jbb_G1, \
381 windows_x64_6.1-product-c2-jbb_ParOldGC
382
383# Some basic "smoke" tests for OpenJDK builds
384my.test.targets.hotspot.open= \
385 solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98, \
386 linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
387
388# The complete list of test targets for jprt
389my.test.targets.hotspot= \
390 ${my.test.targets.hotspot.open}, \
391 ${my.test.targets.hotspot.solaris.sparcv9}, \
392 ${my.test.targets.hotspot.solaris.x64}, \
393 ${my.test.targets.hotspot.linux.i586}, \
394 ${my.test.targets.hotspot.linux.x64}, \
395 ${my.test.targets.hotspot.macosx.x64}, \
396 ${my.test.targets.hotspot.windows.i586}, \
397 ${my.test.targets.hotspot.windows.x64}, \
398 ${my.test.targets.hotspot.solaris.sparcv9}, \
399 ${my.test.targets.hotspot.solaris.x64}, \
400 ${my.test.targets.hotspot.linux.x64}, \
401 ${my.test.targets.hotspot.windows.i586}, \
402 ${my.test.targets.hotspot.windows.x64}, \
403 ${my.additional.test.targets.hotspot}
404
405
406# Make file based test targets
407
408my.make.rule.test.targets.hotspot.clienttests= \
409 linux_i586_2.6-*-c1-hotspot_clienttest, \
410 windows_i586_6.1-*-c1-hotspot_clienttest
411
412my.make.rule.test.targets.hotspot.servertests= \
413 solaris_sparcv9_5.11-*-c2-hotspot_servertest, \
414 solaris_x64_5.11-*-c2-hotspot_servertest, \
415 linux_i586_2.6-*-c2-hotspot_servertest, \
416 linux_x64_2.6-*-c2-hotspot_servertest, \
417 macosx_x64_10.7-*-c2-hotspot_servertest, \
418 windows_i586_6.1-*-c2-hotspot_servertest, \
419 windows_x64_6.1-*-c2-hotspot_servertest
420
421my.make.rule.test.targets.hotspot.internalvmtests= \
422 solaris_sparcv9_5.11-fastdebug-c2-hotspot_internalvmtests, \
423 solaris_x64_5.11-fastdebug-c2-hotspot_internalvmtests, \
424 linux_i586_2.6-fastdebug-c2-hotspot_internalvmtests, \
425 linux_x64_2.6-fastdebug-c2-hotspot_internalvmtests, \
426 macosx_x64_10.7-fastdebug-c2-hotspot_internalvmtests, \
427 windows_i586_6.1-fastdebug-c2-hotspot_internalvmtests, \
428 windows_x64_6.1-fastdebug-c2-hotspot_internalvmtests
429
Zoltan Majoe56234c2014-08-05 09:05:51 +0200430my.make.rule.test.targets.hotspot.reg.group= \
431 solaris_sparcv9_5.11-fastdebug-c2-GROUP, \
432 solaris_x64_5.11-fastdebug-c2-GROUP, \
433 linux_i586_2.6-fastdebug-c2-GROUP, \
434 linux_x64_2.6-fastdebug-c2-GROUP, \
435 macosx_x64_10.7-fastdebug-c2-GROUP, \
436 windows_i586_6.1-fastdebug-c2-GROUP, \
437 windows_x64_6.1-fastdebug-c2-GROUP, \
438 linux_i586_2.6-fastdebug-c1-GROUP, \
439 windows_i586_6.1-fastdebug-c1-GROUP
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700440
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700441my.make.rule.test.targets.hotspot= \
442 ${my.make.rule.test.targets.hotspot.clienttests}, \
443 ${my.make.rule.test.targets.hotspot.servertests}, \
444 ${my.make.rule.test.targets.hotspot.internalvmtests}, \
445 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_wbapitest}, \
Staffan Larsen5bab4562014-09-22 20:04:40 +0200446 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1}, \
447 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2}, \
448 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3}, \
449 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed}, \
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700450 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc}, \
Bengt Rutisson16f26a82015-01-07 10:17:45 +0100451 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed}, \
Bengt Rutissonf96d0512015-01-07 15:02:33 +0100452 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_gcold}, \
Zoltan Majoe56234c2014-08-05 09:05:51 +0200453 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime}, \
Christian Tornqvist9835d9b2014-08-18 14:30:35 -0700454 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime_closed}, \
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700455 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability}, \
Mikael Aunocb0c3ed2014-11-14 10:29:01 +0100456 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700457 ${my.additional.make.rule.test.targets.hotspot}