blob: f26449b512f4dab35a2003b64f47bcfad8f920bc [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 Vidstedtb5264b32015-04-14 22:46:16 -070031# Install test bundle for targets in jprt.test.bundle.targets set
32jprt.selective.test.bundle.installation=true
Magnus Ihse Bursief6875fe2015-02-27 11:56:57 +010033
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070034# The current release name
Erik Joelssond914e2b2013-12-19 14:11:12 +010035jprt.tools.default.release=jdk9
J. Duke686d76f2007-12-01 00:00:00 +000036
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070037# Check if this is the equivalent of a hotspot push job
38# Interpret -testset hotspot to mean exactly that
39my.is.hotspot.job.hotspot=true
40my.is.hotspot.job=${my.is.hotspot.job.${jprt.test.set}}
Kelly O'Hairec348ed2013-01-04 21:04:03 -080041
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070042# Disable syncing the source after builds and tests are done
43jprt.sync.push=${my.is.hotspot.job ? false : true}
Kelly O'Hair891aa6b2010-03-06 15:00:40 -080044
Kelly O'Hair68ba7cf2010-09-07 15:13:58 -070045# Directories to be excluded from the source bundles
Kelly O'Hair891aa6b2010-03-06 15:00:40 -080046jprt.bundle.exclude.src.dirs=build dist webrev
J. Duke686d76f2007-12-01 00:00:00 +000047
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070048# Use configure when building
Erik Joelssond9706a02013-12-17 11:09:26 +010049jprt.build.use.configure=true
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070050
Mikael Vidstedtd933f612015-04-17 16:08:41 -070051# Set up the run flavors (jvm variants)
52jprt.run.flavors=c1,c2,default,${my.additional.run.flavors}
53
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070054# Set make target to use for different build flavors
55jprt.build.flavor.debugOpen.target=jprt_bundle
Erik Joelssond9706a02013-12-17 11:09:26 +010056jprt.build.flavor.fastdebug.target=jprt_bundle
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070057jprt.build.flavor.product.target=jprt_bundle
58jprt.build.flavor.productOpen.target=jprt_bundle
Igor Ignatyev913c598d2014-11-08 16:01:10 +030059jprt.build.flavor.optimized.target=jprt_bundle
60jprt.build.flavor.optimizedOpen.target=jprt_bundle
Erik Joelssond9706a02013-12-17 11:09:26 +010061
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070062# Use these configure args to define debug level
Erik Joelssond9706a02013-12-17 11:09:26 +010063jprt.debug.build.configure.args=--with-debug-level=slowdebug
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070064jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug
65jprt.product.build.configure.args=--with-debug-level=release
Igor Ignatyev913c598d2014-11-08 16:01:10 +030066jprt.optimized.build.configure.args=--with-debug-level=optimized
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070067jprt.debugOpen.build.configure.args=${jprt.debug.build.configure.args} --enable-openjdk-only
68jprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args} --enable-openjdk-only
69jprt.productOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
Igor Ignatyev913c598d2014-11-08 16:01:10 +030070jprt.optimizedOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070071
72# Select build flavors and build targets
73jprt.build.flavors=${my.is.hotspot.job ? ${my.build.flavors.hotspot} : ${my.build.flavors.default}}
74jprt.build.targets=${my.is.hotspot.job ? ${my.build.targets.hotspot} : ${my.build.targets.default}}
75
76# Select test targets - jprt default for jprt.test.set is "default"
77jprt.test.targets=${my.test.targets.${jprt.test.set}}
78jprt.make.rule.test.targets=${my.make.rule.test.targets.${jprt.test.set}}
Mikael Vidstedtb5264b32015-04-14 22:46:16 -070079jprt.test.bundle.targets=${my.jprt.test.bundle.targets.${jprt.test.set}}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070080
81# 7155453: Work-around to prevent popups on OSX from blocking test completion
82# but the work-around is added to all platforms to be consistent
83jprt.jbb.options=-Djava.awt.headless=true
84
85########
86#
87# Build options (generic)
88#
89
90# Configure args common to all builds
91# Also allows for additional, testset specific configure arguments to be set
92jprt.build.configure.args= \
Erik Joelssonedacc922015-06-26 10:02:21 +020093 --with-output-sync=recurse \
94 --with-boot-jdk=$ALT_BOOTDIR \
95 --with-jobs=$ALT_PARALLEL_COMPILE_JOBS \
96 --with-version-opt-base=$JPRT_JOB_ID \
Ingemar Aberg3bc34402015-02-25 11:04:14 +010097 ${my.additional.build.configure.args.${jprt.test.set}} \
98 ${my.custom.build.configure.args}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070099
100# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly
101jprt.i586.build.configure.args= \
102 --with-target-bits=32
103
104# i586 platforms have both client and server, but to allow for overriding the exact configuration
105# on a per-build flavor basis the value is set for the individual build flavors
106my.i586.default.build.configure.args= \
107 --with-jvm-variants=client,server
108jprt.i586.debug.build.configure.args= \
109 ${my.i586.default.build.configure.args} \
110 ${jprt.debug.build.configure.args}
111jprt.i586.fastdebug.build.configure.args= \
112 ${my.i586.default.build.configure.args} \
113 ${jprt.fastdebug.build.configure.args}
114jprt.i586.product.build.configure.args= \
115 ${my.i586.default.build.configure.args} \
116 ${jprt.product.build.configure.args}
117jprt.i586.debugOpen.build.configure.args= \
118 ${my.i586.default.build.configure.args} \
119 ${jprt.debugOpen.build.configure.args}
120jprt.i586.fastdebugOpen.build.configure.args= \
121 ${my.i586.default.build.configure.args} \
122 ${jprt.fastdebugOpen.build.configure.args}
123jprt.i586.productOpen.build.configure.args= \
124 ${my.i586.default.build.configure.args} \
125 ${jprt.productOpen.build.configure.args}
126
Erik Joelssonb26b2b82015-04-03 08:45:08 -0700127jprt.windows_i586_6.2.build.configure.args= \
128 --with-toolchain-version=2013 \
129 ${jprt.i586.build.configure.args}
130jprt.windows_x64_6.2.build.configure.args= \
131 --with-toolchain-version=2013
132
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700133########
134#
135# Build targets and options (default/jdk)
136#
137
138# The default build flavors
139my.build.flavors.default=fastdebug,product
140
141# Standard list of jprt build targets for this source tree
142my.build.targets.default= \
143 solaris_sparcv9_5.11-{product|fastdebug}, \
144 solaris_x64_5.11-{product|fastdebug}, \
145 linux_i586_2.6-{product|fastdebug}, \
146 linux_x64_2.6-{product|fastdebug}, \
Tim Bellf5e8a4d2015-03-16 17:59:09 +0100147 macosx_x64_10.9-{product|fastdebug}, \
Erik Joelssonb26b2b82015-04-03 08:45:08 -0700148 windows_i586_6.2-{product|fastdebug}, \
149 windows_x64_6.2-{product|fastdebug}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700150
151# Test target list (no fastdebug & limited c2 testing)
152my.test.target.set= \
153 solaris_sparcv9_5.11-product-c2-TESTNAME, \
154 solaris_x64_5.11-product-c2-TESTNAME, \
155 linux_i586_2.6-product-{c1|c2}-TESTNAME, \
156 linux_x64_2.6-product-c2-TESTNAME, \
Tim Bellf5e8a4d2015-03-16 17:59:09 +0100157 macosx_x64_10.9-product-c2-TESTNAME, \
Erik Joelssonb26b2b82015-04-03 08:45:08 -0700158 windows_i586_6.2-product-c1-TESTNAME, \
159 windows_x64_6.2-product-c2-TESTNAME
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700160
161# Default vm test targets (testset=default)
162my.test.targets.default= \
163 ${my.test.target.set:TESTNAME=jvm98}, \
164 ${my.test.target.set:TESTNAME=scimark}
165
166# Default jdk test targets (testset=default)
167my.make.rule.test.targets.default= \
168 ${my.test.target.set:TESTNAME=langtools_jtreg}, \
169 ${my.test.target.set:TESTNAME=jdk_lang}, \
170 ${my.test.target.set:TESTNAME=jdk_math}, \
171 ${my.test.target.set:TESTNAME=jdk_util}
Magnus Ihse Bursiec4ced972014-11-27 15:41:56 +0100172
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700173# Default vm test targets (testset=core)
174my.test.targets.core=
175
176# Core jdk test targets (testset=core)
177my.make.rule.test.targets.core= \
178 ${my.test.target.set:TESTNAME=jdk_lang}, \
179 ${my.test.target.set:TESTNAME=jdk_math}, \
180 ${my.test.target.set:TESTNAME=jdk_util}, \
181 ${my.test.target.set:TESTNAME=jdk_io}, \
182 ${my.test.target.set:TESTNAME=jdk_net}, \
183 ${my.test.target.set:TESTNAME=jdk_nio}, \
184 ${my.test.target.set:TESTNAME=jdk_security1}, \
185 ${my.test.target.set:TESTNAME=jdk_security2}, \
186 ${my.test.target.set:TESTNAME=jdk_security3}, \
Sean Coffey5edf3d92014-09-10 16:13:35 +0100187 ${my.test.target.set:TESTNAME=jdk_security4}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700188 ${my.test.target.set:TESTNAME=jdk_rmi}, \
189 ${my.test.target.set:TESTNAME=jdk_text}, \
190 ${my.test.target.set:TESTNAME=jdk_time}, \
191 ${my.test.target.set:TESTNAME=jdk_other}, \
192 ${my.test.target.set:TESTNAME=core_tools}
193
194# Svc vm test targets (testset=svc)
195my.test.targets.svc=
196
197# Core jdk test targets (testset=svc)
198my.make.rule.test.targets.svc= \
199 ${my.test.target.set:TESTNAME=jdk_management}, \
200 ${my.test.target.set:TESTNAME=jdk_instrument}, \
201 ${my.test.target.set:TESTNAME=jdk_jmx}, \
202 ${my.test.target.set:TESTNAME=jdk_jdi}, \
Chris Hegartyb26d39f2014-12-03 14:20:21 +0000203 ${my.test.target.set:TESTNAME=svc_tools}, \
204 ${my.make.rule.test.targets.svc.extra}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700205
Tristan Yana78b9852014-12-15 13:09:39 -0800206# JAXP vm test targets (testset=jaxp)
207my.test.targets.jaxp=
208
209# JAXP test targets (testset=jaxp)
210my.make.rule.test.targets.jaxp= \
211 ${my.test.target.set:TESTNAME=jaxp_all}
212
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700213# All vm test targets (testset=all)
214my.test.targets.all= \
215 ${my.test.targets.default}, \
216 ${my.test.target.set:TESTNAME=runThese}, \
217 ${my.test.target.set:TESTNAME=jbb_default}
218
219# All jdk test targets (testset=all)
220my.make.rule.test.targets.all= \
221 ${my.make.rule.test.targets.core}, \
222 ${my.make.rule.test.targets.svc}, \
223 ${my.test.target.set:TESTNAME=jdk_awt}, \
Mikael Vidstedt09b196b2014-07-03 10:23:19 -0700224 ${my.test.target.set:TESTNAME=jdk_beans}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700225 ${my.test.target.set:TESTNAME=jdk_sound}, \
226 ${my.test.target.set:TESTNAME=jdk_swing}
227
228# PIT vm test targets (testset=pit)
229my.test.targets.pit= \
230 ${my.test.targets.all}
231
232# PIT jdk test targets (testset=pit)
233my.make.rule.test.targets.pit= \
234 ${my.test.target.set:TESTNAME=langtools_jtreg}, \
235 ${my.make.rule.test.targets.core}, \
Tristan Yana78b9852014-12-15 13:09:39 -0800236 ${my.make.rule.test.targets.svc} \
237 ${my.make.rule.test.targets.jaxp}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700238
239# JCK test targets in test/Makefile (no windows)
240my.test.target.set.jck= \
241 solaris_sparcv9_5.11-product-c2-JCK7TESTRULE, \
242 solaris_x64_5.11-product-c2-JCK7TESTRULE, \
243 linux_i586_2.6-product-c1-JCK7TESTRULE, \
244 linux_x64_2.6-product-c2-JCK7TESTRULE
245
246# JCK testset targets
247my.make.rule.test.targets.jck= \
248 ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools}, \
249 ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime}, \
250 ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
251
252
253#############
254#
255# Hotspot related settings (testset=hotspot)
256#
257
258# The hotspot build flavors
259my.build.flavors.hotspot= \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300260 debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700261 ${my.additional.build.flavors.hotspot}
262
263# Platforms built for hotspot push jobs
264my.build.targets.hotspot= \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300265 solaris_sparcv9_5.11-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700266 solaris_x64_5.11-{product|fastdebug}, \
267 linux_i586_2.6-{product|fastdebug}, \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300268 linux_x64_2.6-{product|fastdebug}, \
Tim Bellf5e8a4d2015-03-16 17:59:09 +0100269 macosx_x64_10.9-{product|fastdebug}, \
Erik Joelssonb26b2b82015-04-03 08:45:08 -0700270 windows_i586_6.2-{product|fastdebug}, \
271 windows_x64_6.2-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700272 solaris_x64_5.11-{debugOpen}, \
273 linux_x64_2.6-{productOpen}, \
274 ${my.additional.build.targets.hotspot}
275
276# Tests to run on the various platforms for hotspot push jobs
277my.test.targets.hotspot.solaris.sparcv9= \
278 solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98, \
279 solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered, \
280 solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700281 solaris_sparcv9_5.11-product-c2-runThese8, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700282 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \
283 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700284 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS, \
285 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1, \
286 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700287 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \
288 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_SerialGC, \
289 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParallelGC, \
290 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_CMS, \
291 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_G1, \
292 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParOldGC
293
294my.test.targets.hotspot.solaris.x64= \
295 solaris_x64_5.11-{product|fastdebug}-c2-jvm98, \
296 solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered, \
297 solaris_x64_5.11-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700298 solaris_x64_5.11-product-c2-runThese8, \
299 solaris_x64_5.11-product-c2-runThese8_Xcomp_lang, \
300 solaris_x64_5.11-product-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700301 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \
302 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700303 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS, \
304 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1, \
305 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700306 solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \
307 solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC, \
Bengt Rutissonf96d0512015-01-07 15:02:33 +0100308 solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC,
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700309
310my.test.targets.hotspot.linux.i586= \
311 linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98, \
312 linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
313 linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700314 linux_i586_2.6-product-c1-runThese8_Xcomp_lang, \
315 linux_i586_2.6-product-c1-runThese8_Xcomp_vm, \
316 linux_i586_2.6-fastdebug-c1-runThese8_Xshare, \
317 linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang, \
318 linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700319 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
320 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700321 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
322 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
323 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700324 linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC, \
325 linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \
326 linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC, \
327 linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS, \
328 linux_i586_2.6-{product|fastdebug}-c1-jbb_G1, \
329 linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC
330
331my.test.targets.hotspot.linux.x64= \
332 linux_x64_2.6-{product|fastdebug}-c2-jvm98, \
333 linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
334 linux_x64_2.6-{product|fastdebug}-c2-scimark, \
335 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC, \
336 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700337 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS, \
338 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1, \
339 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700340 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= \
Tim Bellf5e8a4d2015-03-16 17:59:09 +0100346 macosx_x64_10.9-{product|fastdebug}-c2-jvm98, \
347 macosx_x64_10.9-{product|fastdebug}-c2-jvm98_nontiered, \
348 macosx_x64_10.9-{product|fastdebug}-c2-scimark, \
349 macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_SerialGC, \
350 macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParallelGC, \
351 macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_CMS, \
352 macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_G1, \
353 macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParOldGC, \
354 macosx_x64_10.9-{product|fastdebug}-c2-jbb_default_nontiered, \
355 macosx_x64_10.9-{product|fastdebug}-c2-jbb_ParallelGC, \
356 macosx_x64_10.9-{product|fastdebug}-c2-jbb_G1, \
357 macosx_x64_10.9-{product|fastdebug}-c2-jbb_ParOldGC
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700358
359my.test.targets.hotspot.windows.i586= \
Erik Joelssonb26b2b82015-04-03 08:45:08 -0700360 windows_i586_6.2-{product|fastdebug}-{c1|c2}-jvm98, \
361 windows_i586_6.2-{product|fastdebug}-c2-jvm98_nontiered, \
362 windows_i586_6.2-{product|fastdebug}-{c1|c2}-scimark, \
363 windows_i586_6.2-product-{c1|c2}-runThese8, \
364 windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_lang, \
365 windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_vm, \
366 windows_i586_6.2-fastdebug-c1-runThese8_Xshare, \
367 windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
368 windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
369 windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
370 windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
371 windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
372 windows_i586_6.2-{product|fastdebug}-{c1|c2}-jbb_default, \
373 windows_i586_6.2-{product|fastdebug}-c2-jbb_default_nontiered, \
374 windows_i586_6.2-product-{c1|c2}-jbb_ParallelGC, \
375 windows_i586_6.2-product-{c1|c2}-jbb_CMS, \
376 windows_i586_6.2-product-{c1|c2}-jbb_G1, \
377 windows_i586_6.2-product-{c1|c2}-jbb_ParOldGC
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700378
379my.test.targets.hotspot.windows.x64= \
Erik Joelssonb26b2b82015-04-03 08:45:08 -0700380 windows_x64_6.2-{product|fastdebug}-c2-jvm98, \
381 windows_x64_6.2-{product|fastdebug}-c2-jvm98_nontiered, \
382 windows_x64_6.2-{product|fastdebug}-c2-scimark, \
383 windows_x64_6.2-product-c2-runThese8, \
384 windows_x64_6.2-product-c2-runThese8_Xcomp_lang, \
385 windows_x64_6.2-product-c2-runThese8_Xcomp_vm, \
386 windows_x64_6.2-{product|fastdebug}-c2-GCBasher_SerialGC, \
387 windows_x64_6.2-{product|fastdebug}-c2-GCBasher_ParallelGC, \
388 windows_x64_6.2-{product|fastdebug}-c2-GCBasher_CMS, \
389 windows_x64_6.2-{product|fastdebug}-c2-GCBasher_G1, \
390 windows_x64_6.2-{product|fastdebug}-c2-GCBasher_ParOldGC, \
391 windows_x64_6.2-{product|fastdebug}-c2-jbb_default, \
392 windows_x64_6.2-{product|fastdebug}-c2-jbb_default_nontiered, \
393 windows_x64_6.2-product-c2-jbb_CMS, \
394 windows_x64_6.2-product-c2-jbb_ParallelGC, \
395 windows_x64_6.2-product-c2-jbb_G1, \
396 windows_x64_6.2-product-c2-jbb_ParOldGC
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700397
398# Some basic "smoke" tests for OpenJDK builds
399my.test.targets.hotspot.open= \
400 solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98, \
401 linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
402
403# The complete list of test targets for jprt
404my.test.targets.hotspot= \
405 ${my.test.targets.hotspot.open}, \
406 ${my.test.targets.hotspot.solaris.sparcv9}, \
407 ${my.test.targets.hotspot.solaris.x64}, \
408 ${my.test.targets.hotspot.linux.i586}, \
409 ${my.test.targets.hotspot.linux.x64}, \
410 ${my.test.targets.hotspot.macosx.x64}, \
411 ${my.test.targets.hotspot.windows.i586}, \
412 ${my.test.targets.hotspot.windows.x64}, \
413 ${my.test.targets.hotspot.solaris.sparcv9}, \
414 ${my.test.targets.hotspot.solaris.x64}, \
415 ${my.test.targets.hotspot.linux.x64}, \
416 ${my.test.targets.hotspot.windows.i586}, \
417 ${my.test.targets.hotspot.windows.x64}, \
418 ${my.additional.test.targets.hotspot}
419
420
421# Make file based test targets
422
Mikael Vidstedtd933f612015-04-17 16:08:41 -0700423my.make.rule.test.targets.hotspot.basicvmtests= \
424 linux_i586_2.6-*-default-hotspot_basicvmtest, \
425 linux_x64_2.6-*-default-hotspot_basicvmtest, \
426 macosx_x64_10.9-*-default-hotspot_basicvmtest, \
427 solaris_sparcv9_5.11-*-default-hotspot_basicvmtest, \
428 solaris_x64_5.11-*-default-hotspot_basicvmtest, \
Alejandro Murillo1f1263c2015-05-01 03:56:01 -0700429 windows_i586_6.2-*-default-hotspot_basicvmtest, \
430 windows_x64_6.2-*-default-hotspot_basicvmtest
Mikael Vidstedtd933f612015-04-17 16:08:41 -0700431
Zoltan Majoe56234c2014-08-05 09:05:51 +0200432my.make.rule.test.targets.hotspot.reg.group= \
433 solaris_sparcv9_5.11-fastdebug-c2-GROUP, \
434 solaris_x64_5.11-fastdebug-c2-GROUP, \
435 linux_i586_2.6-fastdebug-c2-GROUP, \
436 linux_x64_2.6-fastdebug-c2-GROUP, \
Tim Bellf5e8a4d2015-03-16 17:59:09 +0100437 macosx_x64_10.9-fastdebug-c2-GROUP, \
Erik Joelssonb26b2b82015-04-03 08:45:08 -0700438 windows_i586_6.2-fastdebug-c2-GROUP, \
439 windows_x64_6.2-fastdebug-c2-GROUP, \
Zoltan Majoe56234c2014-08-05 09:05:51 +0200440 linux_i586_2.6-fastdebug-c1-GROUP, \
Erik Joelssonb26b2b82015-04-03 08:45:08 -0700441 windows_i586_6.2-fastdebug-c1-GROUP
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700442
Mikael Vidstedtb5264b32015-04-14 22:46:16 -0700443# Hotspot jtreg tests
444my.make.rule.test.targets.hotspot.reg= \
Staffan Larsen5bab4562014-09-22 20:04:40 +0200445 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1}, \
446 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2}, \
447 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3}, \
448 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed}, \
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700449 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc}, \
Bengt Rutisson16f26a82015-01-07 10:17:45 +0100450 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed}, \
Bengt Rutissonf96d0512015-01-07 15:02:33 +0100451 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_gcold}, \
Zoltan Majoe56234c2014-08-05 09:05:51 +0200452 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime}, \
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700453 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability}, \
Mikael Aunocb0c3ed2014-11-14 10:29:01 +0100454 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity}, \
Mikael Vidstedtb5264b32015-04-14 22:46:16 -0700455 ${my.additional.make.rule.test.targets.hotspot.reg}
456
457# Other Makefile based Hotspot tests
458my.make.rule.test.targets.hotspot.other= \
Mikael Vidstedtd933f612015-04-17 16:08:41 -0700459 ${my.make.rule.test.targets.hotspot.basicvmtests}, \
Mikael Vidstedtb5264b32015-04-14 22:46:16 -0700460 ${my.additional.make.rule.test.targets.hotspot.other}
461
462# All the makefile based tests to run
463my.make.rule.test.targets.hotspot= \
464 ${my.make.rule.test.targets.hotspot.reg} \
465 ${my.make.rule.test.targets.hotspot.other}
466
467# Install the test bundle for the testset hotspot jtreg tests
468# (but not for the other Makefile based tests)
469my.jprt.test.bundle.targets.hotspot=${my.make.rule.test.targets.hotspot.reg}
Magnus Ihse Bursief6875fe2015-02-27 11:56:57 +0100470
471# Native jdk and hotspot test targets (testset=nativesanity)
472my.make.rule.test.targets.nativesanity= \
473 ${my.test.target.set:TESTNAME=jdk_native_sanity}, \
474 ${my.test.target.set:TESTNAME=hotspot_native_sanity}
Mikael Vidstedtb5264b32015-04-14 22:46:16 -0700475
476# Install the test bundle for the nativesanity jtreg tests
477my.jprt.test.bundle.targets.nativesanity=${my.make.rule.test.targets.nativesanity}