blob: 805b597d77fca5e9fac0739790e35faeb5d04105 [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, \
272 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_SerialGC, \
273 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700274 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_CMS, \
275 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_G1, \
276 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_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, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700288 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, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700291 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \
292 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700293 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-GCOld_SerialGC, \
297 solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700298 solaris_x64_5.11-{product|fastdebug}-c2-GCOld_CMS, \
299 solaris_x64_5.11-{product|fastdebug}-c2-GCOld_G1, \
300 solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParOldGC, \
301 solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \
302 solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC, \
303 solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC, \
304 solaris_x64_5.11-{product|fastdebug}-c2-GCOld_CMS, \
305 solaris_x64_5.11-{product|fastdebug}-c2-GCOld_G1, \
306 solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParOldGC
307
308my.test.targets.hotspot.linux.i586= \
309 linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98, \
310 linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
311 linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700312 linux_i586_2.6-product-c1-runThese8_Xcomp_lang, \
313 linux_i586_2.6-product-c1-runThese8_Xcomp_vm, \
314 linux_i586_2.6-fastdebug-c1-runThese8_Xshare, \
315 linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang, \
316 linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700317 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
318 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700319 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
320 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
321 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
322 linux_i586_2.6-product-{c1|c2}-GCOld_SerialGC, \
323 linux_i586_2.6-product-{c1|c2}-GCOld_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700324 linux_i586_2.6-product-{c1|c2}-GCOld_CMS, \
325 linux_i586_2.6-product-{c1|c2}-GCOld_G1, \
326 linux_i586_2.6-product-{c1|c2}-GCOld_ParOldGC, \
327 linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC, \
328 linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \
329 linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC, \
330 linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS, \
331 linux_i586_2.6-{product|fastdebug}-c1-jbb_G1, \
332 linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC
333
334my.test.targets.hotspot.linux.x64= \
335 linux_x64_2.6-{product|fastdebug}-c2-jvm98, \
336 linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
337 linux_x64_2.6-{product|fastdebug}-c2-scimark, \
338 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC, \
339 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700340 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS, \
341 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1, \
342 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC, \
343 linux_x64_2.6-{product|fastdebug}-c2-GCOld_SerialGC, \
344 linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700345 linux_x64_2.6-{product|fastdebug}-c2-GCOld_CMS, \
346 linux_x64_2.6-{product|fastdebug}-c2-GCOld_G1, \
347 linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParOldGC, \
348 linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \
349 linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC, \
350 linux_x64_2.6-{product|fastdebug}-c2-jbb_G1, \
351 linux_x64_2.6-{product|fastdebug}-c2-jbb_ParOldGC
352
353my.test.targets.hotspot.macosx.x64= \
354 macosx_x64_10.7-{product|fastdebug}-c2-jvm98, \
355 macosx_x64_10.7-{product|fastdebug}-c2-jvm98_nontiered, \
356 macosx_x64_10.7-{product|fastdebug}-c2-scimark, \
357 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_SerialGC, \
358 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700359 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_CMS, \
360 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_G1, \
361 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParOldGC, \
362 macosx_x64_10.7-{product|fastdebug}-c2-GCOld_SerialGC, \
363 macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700364 macosx_x64_10.7-{product|fastdebug}-c2-GCOld_CMS, \
365 macosx_x64_10.7-{product|fastdebug}-c2-GCOld_G1, \
366 macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParOldGC, \
367 macosx_x64_10.7-{product|fastdebug}-c2-jbb_default_nontiered, \
368 macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParallelGC, \
369 macosx_x64_10.7-{product|fastdebug}-c2-jbb_G1, \
370 macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParOldGC
371
372my.test.targets.hotspot.windows.i586= \
373 windows_i586_6.1-{product|fastdebug}-{c1|c2}-jvm98, \
374 windows_i586_6.1-{product|fastdebug}-c2-jvm98_nontiered, \
375 windows_i586_6.1-{product|fastdebug}-{c1|c2}-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700376 windows_i586_6.1-product-{c1|c2}-runThese8, \
377 windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_lang, \
378 windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_vm, \
379 windows_i586_6.1-fastdebug-c1-runThese8_Xshare, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700380 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
381 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700382 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
383 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
384 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
385 windows_i586_6.1-product-{c1|c2}-GCOld_SerialGC, \
386 windows_i586_6.1-product-{c1|c2}-GCOld_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700387 windows_i586_6.1-product-{c1|c2}-GCOld_CMS, \
388 windows_i586_6.1-product-{c1|c2}-GCOld_G1, \
389 windows_i586_6.1-product-{c1|c2}-GCOld_ParOldGC, \
390 windows_i586_6.1-{product|fastdebug}-{c1|c2}-jbb_default, \
391 windows_i586_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \
392 windows_i586_6.1-product-{c1|c2}-jbb_ParallelGC, \
393 windows_i586_6.1-product-{c1|c2}-jbb_CMS, \
394 windows_i586_6.1-product-{c1|c2}-jbb_G1, \
395 windows_i586_6.1-product-{c1|c2}-jbb_ParOldGC
396
397my.test.targets.hotspot.windows.x64= \
398 windows_x64_6.1-{product|fastdebug}-c2-jvm98, \
399 windows_x64_6.1-{product|fastdebug}-c2-jvm98_nontiered, \
400 windows_x64_6.1-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700401 windows_x64_6.1-product-c2-runThese8, \
402 windows_x64_6.1-product-c2-runThese8_Xcomp_lang, \
403 windows_x64_6.1-product-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700404 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_SerialGC, \
405 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700406 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_CMS, \
407 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_G1, \
408 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParOldGC, \
409 windows_x64_6.1-{product|fastdebug}-c2-GCOld_SerialGC, \
410 windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700411 windows_x64_6.1-{product|fastdebug}-c2-GCOld_CMS, \
412 windows_x64_6.1-{product|fastdebug}-c2-GCOld_G1, \
413 windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParOldGC, \
414 windows_x64_6.1-{product|fastdebug}-c2-jbb_default, \
415 windows_x64_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \
416 windows_x64_6.1-product-c2-jbb_CMS, \
417 windows_x64_6.1-product-c2-jbb_ParallelGC, \
418 windows_x64_6.1-product-c2-jbb_G1, \
419 windows_x64_6.1-product-c2-jbb_ParOldGC
420
421# Some basic "smoke" tests for OpenJDK builds
422my.test.targets.hotspot.open= \
423 solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98, \
424 linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
425
426# The complete list of test targets for jprt
427my.test.targets.hotspot= \
428 ${my.test.targets.hotspot.open}, \
429 ${my.test.targets.hotspot.solaris.sparcv9}, \
430 ${my.test.targets.hotspot.solaris.x64}, \
431 ${my.test.targets.hotspot.linux.i586}, \
432 ${my.test.targets.hotspot.linux.x64}, \
433 ${my.test.targets.hotspot.macosx.x64}, \
434 ${my.test.targets.hotspot.windows.i586}, \
435 ${my.test.targets.hotspot.windows.x64}, \
436 ${my.test.targets.hotspot.solaris.sparcv9}, \
437 ${my.test.targets.hotspot.solaris.x64}, \
438 ${my.test.targets.hotspot.linux.x64}, \
439 ${my.test.targets.hotspot.windows.i586}, \
440 ${my.test.targets.hotspot.windows.x64}, \
441 ${my.additional.test.targets.hotspot}
442
443
444# Make file based test targets
445
446my.make.rule.test.targets.hotspot.clienttests= \
447 linux_i586_2.6-*-c1-hotspot_clienttest, \
448 windows_i586_6.1-*-c1-hotspot_clienttest
449
450my.make.rule.test.targets.hotspot.servertests= \
451 solaris_sparcv9_5.11-*-c2-hotspot_servertest, \
452 solaris_x64_5.11-*-c2-hotspot_servertest, \
453 linux_i586_2.6-*-c2-hotspot_servertest, \
454 linux_x64_2.6-*-c2-hotspot_servertest, \
455 macosx_x64_10.7-*-c2-hotspot_servertest, \
456 windows_i586_6.1-*-c2-hotspot_servertest, \
457 windows_x64_6.1-*-c2-hotspot_servertest
458
459my.make.rule.test.targets.hotspot.internalvmtests= \
460 solaris_sparcv9_5.11-fastdebug-c2-hotspot_internalvmtests, \
461 solaris_x64_5.11-fastdebug-c2-hotspot_internalvmtests, \
462 linux_i586_2.6-fastdebug-c2-hotspot_internalvmtests, \
463 linux_x64_2.6-fastdebug-c2-hotspot_internalvmtests, \
464 macosx_x64_10.7-fastdebug-c2-hotspot_internalvmtests, \
465 windows_i586_6.1-fastdebug-c2-hotspot_internalvmtests, \
466 windows_x64_6.1-fastdebug-c2-hotspot_internalvmtests
467
Zoltan Majoe56234c2014-08-05 09:05:51 +0200468my.make.rule.test.targets.hotspot.reg.group= \
469 solaris_sparcv9_5.11-fastdebug-c2-GROUP, \
470 solaris_x64_5.11-fastdebug-c2-GROUP, \
471 linux_i586_2.6-fastdebug-c2-GROUP, \
472 linux_x64_2.6-fastdebug-c2-GROUP, \
473 macosx_x64_10.7-fastdebug-c2-GROUP, \
474 windows_i586_6.1-fastdebug-c2-GROUP, \
475 windows_x64_6.1-fastdebug-c2-GROUP, \
476 linux_i586_2.6-fastdebug-c1-GROUP, \
477 windows_i586_6.1-fastdebug-c1-GROUP
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700478
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700479my.make.rule.test.targets.hotspot= \
480 ${my.make.rule.test.targets.hotspot.clienttests}, \
481 ${my.make.rule.test.targets.hotspot.servertests}, \
482 ${my.make.rule.test.targets.hotspot.internalvmtests}, \
483 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_wbapitest}, \
Staffan Larsen5bab4562014-09-22 20:04:40 +0200484 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1}, \
485 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2}, \
486 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3}, \
487 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed}, \
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700488 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc}, \
Bengt Rutisson16f26a82015-01-07 10:17:45 +0100489 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed}, \
Zoltan Majoe56234c2014-08-05 09:05:51 +0200490 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime}, \
Christian Tornqvist9835d9b2014-08-18 14:30:35 -0700491 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime_closed}, \
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700492 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability}, \
Mikael Aunocb0c3ed2014-11-14 10:29:01 +0100493 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700494 ${my.additional.make.rule.test.targets.hotspot}