blob: b11b096486d35568c834a60a9b2c2c9a7e9e5b27 [file] [log] [blame]
J. Duke686d76f2007-12-01 00:00:00 +00001#
Ingemar Aberg3bc34402015-02-25 11:04:14 +01002# Copyright (c) 2006, 2015, 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 \
Ingemar Aberg3bc34402015-02-25 11:04:14 +010089 ${my.additional.build.configure.args.${jprt.test.set}} \
90 ${my.custom.build.configure.args}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070091
92# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly
93jprt.i586.build.configure.args= \
94 --with-target-bits=32
95
96# i586 platforms have both client and server, but to allow for overriding the exact configuration
97# on a per-build flavor basis the value is set for the individual build flavors
98my.i586.default.build.configure.args= \
99 --with-jvm-variants=client,server
100jprt.i586.debug.build.configure.args= \
101 ${my.i586.default.build.configure.args} \
102 ${jprt.debug.build.configure.args}
103jprt.i586.fastdebug.build.configure.args= \
104 ${my.i586.default.build.configure.args} \
105 ${jprt.fastdebug.build.configure.args}
106jprt.i586.product.build.configure.args= \
107 ${my.i586.default.build.configure.args} \
108 ${jprt.product.build.configure.args}
109jprt.i586.debugOpen.build.configure.args= \
110 ${my.i586.default.build.configure.args} \
111 ${jprt.debugOpen.build.configure.args}
112jprt.i586.fastdebugOpen.build.configure.args= \
113 ${my.i586.default.build.configure.args} \
114 ${jprt.fastdebugOpen.build.configure.args}
115jprt.i586.productOpen.build.configure.args= \
116 ${my.i586.default.build.configure.args} \
117 ${jprt.productOpen.build.configure.args}
118
119########
120#
121# Build targets and options (default/jdk)
122#
123
124# The default build flavors
125my.build.flavors.default=fastdebug,product
126
127# Standard list of jprt build targets for this source tree
128my.build.targets.default= \
129 solaris_sparcv9_5.11-{product|fastdebug}, \
130 solaris_x64_5.11-{product|fastdebug}, \
131 linux_i586_2.6-{product|fastdebug}, \
132 linux_x64_2.6-{product|fastdebug}, \
133 macosx_x64_10.7-{product|fastdebug}, \
134 windows_i586_6.1-{product|fastdebug}, \
135 windows_x64_6.1-{product|fastdebug}
136
137# Test target list (no fastdebug & limited c2 testing)
138my.test.target.set= \
139 solaris_sparcv9_5.11-product-c2-TESTNAME, \
140 solaris_x64_5.11-product-c2-TESTNAME, \
141 linux_i586_2.6-product-{c1|c2}-TESTNAME, \
142 linux_x64_2.6-product-c2-TESTNAME, \
143 macosx_x64_10.7-product-c2-TESTNAME, \
144 windows_i586_6.1-product-c1-TESTNAME, \
145 windows_x64_6.1-product-c2-TESTNAME
146
147# Default vm test targets (testset=default)
148my.test.targets.default= \
149 ${my.test.target.set:TESTNAME=jvm98}, \
150 ${my.test.target.set:TESTNAME=scimark}
151
152# Default jdk test targets (testset=default)
153my.make.rule.test.targets.default= \
154 ${my.test.target.set:TESTNAME=langtools_jtreg}, \
155 ${my.test.target.set:TESTNAME=jdk_lang}, \
156 ${my.test.target.set:TESTNAME=jdk_math}, \
157 ${my.test.target.set:TESTNAME=jdk_util}
Magnus Ihse Bursiec4ced972014-11-27 15:41:56 +0100158
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700159# Default vm test targets (testset=core)
160my.test.targets.core=
161
162# Core jdk test targets (testset=core)
163my.make.rule.test.targets.core= \
164 ${my.test.target.set:TESTNAME=jdk_lang}, \
165 ${my.test.target.set:TESTNAME=jdk_math}, \
166 ${my.test.target.set:TESTNAME=jdk_util}, \
167 ${my.test.target.set:TESTNAME=jdk_io}, \
168 ${my.test.target.set:TESTNAME=jdk_net}, \
169 ${my.test.target.set:TESTNAME=jdk_nio}, \
170 ${my.test.target.set:TESTNAME=jdk_security1}, \
171 ${my.test.target.set:TESTNAME=jdk_security2}, \
172 ${my.test.target.set:TESTNAME=jdk_security3}, \
Sean Coffey5edf3d92014-09-10 16:13:35 +0100173 ${my.test.target.set:TESTNAME=jdk_security4}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700174 ${my.test.target.set:TESTNAME=jdk_rmi}, \
175 ${my.test.target.set:TESTNAME=jdk_text}, \
176 ${my.test.target.set:TESTNAME=jdk_time}, \
177 ${my.test.target.set:TESTNAME=jdk_other}, \
178 ${my.test.target.set:TESTNAME=core_tools}
179
180# Svc vm test targets (testset=svc)
181my.test.targets.svc=
182
183# Core jdk test targets (testset=svc)
184my.make.rule.test.targets.svc= \
185 ${my.test.target.set:TESTNAME=jdk_management}, \
186 ${my.test.target.set:TESTNAME=jdk_instrument}, \
187 ${my.test.target.set:TESTNAME=jdk_jmx}, \
188 ${my.test.target.set:TESTNAME=jdk_jdi}, \
Chris Hegartyb26d39f2014-12-03 14:20:21 +0000189 ${my.test.target.set:TESTNAME=svc_tools}, \
190 ${my.make.rule.test.targets.svc.extra}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700191
Tristan Yana78b9852014-12-15 13:09:39 -0800192# JAXP vm test targets (testset=jaxp)
193my.test.targets.jaxp=
194
195# JAXP test targets (testset=jaxp)
196my.make.rule.test.targets.jaxp= \
197 ${my.test.target.set:TESTNAME=jaxp_all}
198
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700199# All vm test targets (testset=all)
200my.test.targets.all= \
201 ${my.test.targets.default}, \
202 ${my.test.target.set:TESTNAME=runThese}, \
203 ${my.test.target.set:TESTNAME=jbb_default}
204
205# All jdk test targets (testset=all)
206my.make.rule.test.targets.all= \
207 ${my.make.rule.test.targets.core}, \
208 ${my.make.rule.test.targets.svc}, \
209 ${my.test.target.set:TESTNAME=jdk_awt}, \
Mikael Vidstedt09b196b2014-07-03 10:23:19 -0700210 ${my.test.target.set:TESTNAME=jdk_beans}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700211 ${my.test.target.set:TESTNAME=jdk_sound}, \
212 ${my.test.target.set:TESTNAME=jdk_swing}
213
214# PIT vm test targets (testset=pit)
215my.test.targets.pit= \
216 ${my.test.targets.all}
217
218# PIT jdk test targets (testset=pit)
219my.make.rule.test.targets.pit= \
220 ${my.test.target.set:TESTNAME=langtools_jtreg}, \
221 ${my.make.rule.test.targets.core}, \
Tristan Yana78b9852014-12-15 13:09:39 -0800222 ${my.make.rule.test.targets.svc} \
223 ${my.make.rule.test.targets.jaxp}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700224
225# JCK test targets in test/Makefile (no windows)
226my.test.target.set.jck= \
227 solaris_sparcv9_5.11-product-c2-JCK7TESTRULE, \
228 solaris_x64_5.11-product-c2-JCK7TESTRULE, \
229 linux_i586_2.6-product-c1-JCK7TESTRULE, \
230 linux_x64_2.6-product-c2-JCK7TESTRULE
231
232# JCK testset targets
233my.make.rule.test.targets.jck= \
234 ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools}, \
235 ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime}, \
236 ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
237
238
239#############
240#
241# Hotspot related settings (testset=hotspot)
242#
243
244# The hotspot build flavors
245my.build.flavors.hotspot= \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300246 debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700247 ${my.additional.build.flavors.hotspot}
248
249# Platforms built for hotspot push jobs
250my.build.targets.hotspot= \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300251 solaris_sparcv9_5.11-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700252 solaris_x64_5.11-{product|fastdebug}, \
253 linux_i586_2.6-{product|fastdebug}, \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300254 linux_x64_2.6-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700255 macosx_x64_10.7-{product|fastdebug}, \
256 windows_i586_6.1-{product|fastdebug}, \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300257 windows_x64_6.1-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700258 solaris_x64_5.11-{debugOpen}, \
259 linux_x64_2.6-{productOpen}, \
260 ${my.additional.build.targets.hotspot}
261
262# Tests to run on the various platforms for hotspot push jobs
263my.test.targets.hotspot.solaris.sparcv9= \
264 solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98, \
265 solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered, \
266 solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700267 solaris_sparcv9_5.11-product-c2-runThese8, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700268 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \
269 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700270 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS, \
271 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1, \
272 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700273 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \
274 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_SerialGC, \
275 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParallelGC, \
276 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_CMS, \
277 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_G1, \
278 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParOldGC
279
280my.test.targets.hotspot.solaris.x64= \
281 solaris_x64_5.11-{product|fastdebug}-c2-jvm98, \
282 solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered, \
283 solaris_x64_5.11-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700284 solaris_x64_5.11-product-c2-runThese8, \
285 solaris_x64_5.11-product-c2-runThese8_Xcomp_lang, \
286 solaris_x64_5.11-product-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700287 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \
288 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700289 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS, \
290 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1, \
291 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700292 solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \
293 solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC, \
Bengt Rutissonf96d0512015-01-07 15:02:33 +0100294 solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC,
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700295
296my.test.targets.hotspot.linux.i586= \
297 linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98, \
298 linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
299 linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700300 linux_i586_2.6-product-c1-runThese8_Xcomp_lang, \
301 linux_i586_2.6-product-c1-runThese8_Xcomp_vm, \
302 linux_i586_2.6-fastdebug-c1-runThese8_Xshare, \
303 linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang, \
304 linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700305 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
306 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700307 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
308 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
309 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700310 linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC, \
311 linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \
312 linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC, \
313 linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS, \
314 linux_i586_2.6-{product|fastdebug}-c1-jbb_G1, \
315 linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC
316
317my.test.targets.hotspot.linux.x64= \
318 linux_x64_2.6-{product|fastdebug}-c2-jvm98, \
319 linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
320 linux_x64_2.6-{product|fastdebug}-c2-scimark, \
321 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC, \
322 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700323 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS, \
324 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1, \
325 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700326 linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \
327 linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC, \
328 linux_x64_2.6-{product|fastdebug}-c2-jbb_G1, \
329 linux_x64_2.6-{product|fastdebug}-c2-jbb_ParOldGC
330
331my.test.targets.hotspot.macosx.x64= \
332 macosx_x64_10.7-{product|fastdebug}-c2-jvm98, \
333 macosx_x64_10.7-{product|fastdebug}-c2-jvm98_nontiered, \
334 macosx_x64_10.7-{product|fastdebug}-c2-scimark, \
335 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_SerialGC, \
336 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700337 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_CMS, \
338 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_G1, \
339 macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700340 macosx_x64_10.7-{product|fastdebug}-c2-jbb_default_nontiered, \
341 macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParallelGC, \
342 macosx_x64_10.7-{product|fastdebug}-c2-jbb_G1, \
343 macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParOldGC
344
345my.test.targets.hotspot.windows.i586= \
346 windows_i586_6.1-{product|fastdebug}-{c1|c2}-jvm98, \
347 windows_i586_6.1-{product|fastdebug}-c2-jvm98_nontiered, \
348 windows_i586_6.1-{product|fastdebug}-{c1|c2}-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700349 windows_i586_6.1-product-{c1|c2}-runThese8, \
350 windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_lang, \
351 windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_vm, \
352 windows_i586_6.1-fastdebug-c1-runThese8_Xshare, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700353 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
354 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700355 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
356 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
357 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700358 windows_i586_6.1-{product|fastdebug}-{c1|c2}-jbb_default, \
359 windows_i586_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \
360 windows_i586_6.1-product-{c1|c2}-jbb_ParallelGC, \
361 windows_i586_6.1-product-{c1|c2}-jbb_CMS, \
362 windows_i586_6.1-product-{c1|c2}-jbb_G1, \
363 windows_i586_6.1-product-{c1|c2}-jbb_ParOldGC
364
365my.test.targets.hotspot.windows.x64= \
366 windows_x64_6.1-{product|fastdebug}-c2-jvm98, \
367 windows_x64_6.1-{product|fastdebug}-c2-jvm98_nontiered, \
368 windows_x64_6.1-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700369 windows_x64_6.1-product-c2-runThese8, \
370 windows_x64_6.1-product-c2-runThese8_Xcomp_lang, \
371 windows_x64_6.1-product-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700372 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_SerialGC, \
373 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700374 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_CMS, \
375 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_G1, \
376 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700377 windows_x64_6.1-{product|fastdebug}-c2-jbb_default, \
378 windows_x64_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \
379 windows_x64_6.1-product-c2-jbb_CMS, \
380 windows_x64_6.1-product-c2-jbb_ParallelGC, \
381 windows_x64_6.1-product-c2-jbb_G1, \
382 windows_x64_6.1-product-c2-jbb_ParOldGC
383
384# Some basic "smoke" tests for OpenJDK builds
385my.test.targets.hotspot.open= \
386 solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98, \
387 linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
388
389# The complete list of test targets for jprt
390my.test.targets.hotspot= \
391 ${my.test.targets.hotspot.open}, \
392 ${my.test.targets.hotspot.solaris.sparcv9}, \
393 ${my.test.targets.hotspot.solaris.x64}, \
394 ${my.test.targets.hotspot.linux.i586}, \
395 ${my.test.targets.hotspot.linux.x64}, \
396 ${my.test.targets.hotspot.macosx.x64}, \
397 ${my.test.targets.hotspot.windows.i586}, \
398 ${my.test.targets.hotspot.windows.x64}, \
399 ${my.test.targets.hotspot.solaris.sparcv9}, \
400 ${my.test.targets.hotspot.solaris.x64}, \
401 ${my.test.targets.hotspot.linux.x64}, \
402 ${my.test.targets.hotspot.windows.i586}, \
403 ${my.test.targets.hotspot.windows.x64}, \
404 ${my.additional.test.targets.hotspot}
405
406
407# Make file based test targets
408
409my.make.rule.test.targets.hotspot.clienttests= \
410 linux_i586_2.6-*-c1-hotspot_clienttest, \
411 windows_i586_6.1-*-c1-hotspot_clienttest
412
413my.make.rule.test.targets.hotspot.servertests= \
414 solaris_sparcv9_5.11-*-c2-hotspot_servertest, \
415 solaris_x64_5.11-*-c2-hotspot_servertest, \
416 linux_i586_2.6-*-c2-hotspot_servertest, \
417 linux_x64_2.6-*-c2-hotspot_servertest, \
418 macosx_x64_10.7-*-c2-hotspot_servertest, \
419 windows_i586_6.1-*-c2-hotspot_servertest, \
420 windows_x64_6.1-*-c2-hotspot_servertest
421
422my.make.rule.test.targets.hotspot.internalvmtests= \
423 solaris_sparcv9_5.11-fastdebug-c2-hotspot_internalvmtests, \
424 solaris_x64_5.11-fastdebug-c2-hotspot_internalvmtests, \
425 linux_i586_2.6-fastdebug-c2-hotspot_internalvmtests, \
426 linux_x64_2.6-fastdebug-c2-hotspot_internalvmtests, \
427 macosx_x64_10.7-fastdebug-c2-hotspot_internalvmtests, \
428 windows_i586_6.1-fastdebug-c2-hotspot_internalvmtests, \
429 windows_x64_6.1-fastdebug-c2-hotspot_internalvmtests
430
Zoltan Majoe56234c2014-08-05 09:05:51 +0200431my.make.rule.test.targets.hotspot.reg.group= \
432 solaris_sparcv9_5.11-fastdebug-c2-GROUP, \
433 solaris_x64_5.11-fastdebug-c2-GROUP, \
434 linux_i586_2.6-fastdebug-c2-GROUP, \
435 linux_x64_2.6-fastdebug-c2-GROUP, \
436 macosx_x64_10.7-fastdebug-c2-GROUP, \
437 windows_i586_6.1-fastdebug-c2-GROUP, \
438 windows_x64_6.1-fastdebug-c2-GROUP, \
439 linux_i586_2.6-fastdebug-c1-GROUP, \
440 windows_i586_6.1-fastdebug-c1-GROUP
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700441
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700442my.make.rule.test.targets.hotspot= \
443 ${my.make.rule.test.targets.hotspot.clienttests}, \
444 ${my.make.rule.test.targets.hotspot.servertests}, \
445 ${my.make.rule.test.targets.hotspot.internalvmtests}, \
446 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_wbapitest}, \
Staffan Larsen5bab4562014-09-22 20:04:40 +0200447 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1}, \
448 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2}, \
449 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3}, \
450 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed}, \
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700451 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc}, \
Bengt Rutisson16f26a82015-01-07 10:17:45 +0100452 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed}, \
Bengt Rutissonf96d0512015-01-07 15:02:33 +0100453 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_gcold}, \
Zoltan Majoe56234c2014-08-05 09:05:51 +0200454 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime}, \
Christian Tornqvist9835d9b2014-08-18 14:30:35 -0700455 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime_closed}, \
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700456 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability}, \
Mikael Aunocb0c3ed2014-11-14 10:29:01 +0100457 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700458 ${my.additional.make.rule.test.targets.hotspot}