blob: 0dcd07db50ad4d92106a307a090f9824789613bc [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= \
Chris Hegartyebd8efe2014-08-17 15:51:37 +010093 --with-output-sync=recurse \
94 --with-boot-jdk=$ALT_BOOTDIR \
95 --with-jobs=$ALT_PARALLEL_COMPILE_JOBS \
Ingemar Aberg3bc34402015-02-25 11:04:14 +010096 ${my.additional.build.configure.args.${jprt.test.set}} \
97 ${my.custom.build.configure.args}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -070098
99# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly
100jprt.i586.build.configure.args= \
101 --with-target-bits=32
102
103# i586 platforms have both client and server, but to allow for overriding the exact configuration
104# on a per-build flavor basis the value is set for the individual build flavors
105my.i586.default.build.configure.args= \
106 --with-jvm-variants=client,server
107jprt.i586.debug.build.configure.args= \
108 ${my.i586.default.build.configure.args} \
109 ${jprt.debug.build.configure.args}
110jprt.i586.fastdebug.build.configure.args= \
111 ${my.i586.default.build.configure.args} \
112 ${jprt.fastdebug.build.configure.args}
113jprt.i586.product.build.configure.args= \
114 ${my.i586.default.build.configure.args} \
115 ${jprt.product.build.configure.args}
116jprt.i586.debugOpen.build.configure.args= \
117 ${my.i586.default.build.configure.args} \
118 ${jprt.debugOpen.build.configure.args}
119jprt.i586.fastdebugOpen.build.configure.args= \
120 ${my.i586.default.build.configure.args} \
121 ${jprt.fastdebugOpen.build.configure.args}
122jprt.i586.productOpen.build.configure.args= \
123 ${my.i586.default.build.configure.args} \
124 ${jprt.productOpen.build.configure.args}
125
126########
127#
128# Build targets and options (default/jdk)
129#
130
131# The default build flavors
132my.build.flavors.default=fastdebug,product
133
134# Standard list of jprt build targets for this source tree
135my.build.targets.default= \
136 solaris_sparcv9_5.11-{product|fastdebug}, \
137 solaris_x64_5.11-{product|fastdebug}, \
138 linux_i586_2.6-{product|fastdebug}, \
139 linux_x64_2.6-{product|fastdebug}, \
Tim Bellf5e8a4d2015-03-16 17:59:09 +0100140 macosx_x64_10.9-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700141 windows_i586_6.1-{product|fastdebug}, \
142 windows_x64_6.1-{product|fastdebug}
143
144# Test target list (no fastdebug & limited c2 testing)
145my.test.target.set= \
146 solaris_sparcv9_5.11-product-c2-TESTNAME, \
147 solaris_x64_5.11-product-c2-TESTNAME, \
148 linux_i586_2.6-product-{c1|c2}-TESTNAME, \
149 linux_x64_2.6-product-c2-TESTNAME, \
Tim Bellf5e8a4d2015-03-16 17:59:09 +0100150 macosx_x64_10.9-product-c2-TESTNAME, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700151 windows_i586_6.1-product-c1-TESTNAME, \
152 windows_x64_6.1-product-c2-TESTNAME
153
154# Default vm test targets (testset=default)
155my.test.targets.default= \
156 ${my.test.target.set:TESTNAME=jvm98}, \
157 ${my.test.target.set:TESTNAME=scimark}
158
159# Default jdk test targets (testset=default)
160my.make.rule.test.targets.default= \
161 ${my.test.target.set:TESTNAME=langtools_jtreg}, \
162 ${my.test.target.set:TESTNAME=jdk_lang}, \
163 ${my.test.target.set:TESTNAME=jdk_math}, \
164 ${my.test.target.set:TESTNAME=jdk_util}
Magnus Ihse Bursiec4ced972014-11-27 15:41:56 +0100165
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700166# Default vm test targets (testset=core)
167my.test.targets.core=
168
169# Core jdk test targets (testset=core)
170my.make.rule.test.targets.core= \
171 ${my.test.target.set:TESTNAME=jdk_lang}, \
172 ${my.test.target.set:TESTNAME=jdk_math}, \
173 ${my.test.target.set:TESTNAME=jdk_util}, \
174 ${my.test.target.set:TESTNAME=jdk_io}, \
175 ${my.test.target.set:TESTNAME=jdk_net}, \
176 ${my.test.target.set:TESTNAME=jdk_nio}, \
177 ${my.test.target.set:TESTNAME=jdk_security1}, \
178 ${my.test.target.set:TESTNAME=jdk_security2}, \
179 ${my.test.target.set:TESTNAME=jdk_security3}, \
Sean Coffey5edf3d92014-09-10 16:13:35 +0100180 ${my.test.target.set:TESTNAME=jdk_security4}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700181 ${my.test.target.set:TESTNAME=jdk_rmi}, \
182 ${my.test.target.set:TESTNAME=jdk_text}, \
183 ${my.test.target.set:TESTNAME=jdk_time}, \
184 ${my.test.target.set:TESTNAME=jdk_other}, \
185 ${my.test.target.set:TESTNAME=core_tools}
186
187# Svc vm test targets (testset=svc)
188my.test.targets.svc=
189
190# Core jdk test targets (testset=svc)
191my.make.rule.test.targets.svc= \
192 ${my.test.target.set:TESTNAME=jdk_management}, \
193 ${my.test.target.set:TESTNAME=jdk_instrument}, \
194 ${my.test.target.set:TESTNAME=jdk_jmx}, \
195 ${my.test.target.set:TESTNAME=jdk_jdi}, \
Chris Hegartyb26d39f2014-12-03 14:20:21 +0000196 ${my.test.target.set:TESTNAME=svc_tools}, \
197 ${my.make.rule.test.targets.svc.extra}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700198
Tristan Yana78b9852014-12-15 13:09:39 -0800199# JAXP vm test targets (testset=jaxp)
200my.test.targets.jaxp=
201
202# JAXP test targets (testset=jaxp)
203my.make.rule.test.targets.jaxp= \
204 ${my.test.target.set:TESTNAME=jaxp_all}
205
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700206# All vm test targets (testset=all)
207my.test.targets.all= \
208 ${my.test.targets.default}, \
209 ${my.test.target.set:TESTNAME=runThese}, \
210 ${my.test.target.set:TESTNAME=jbb_default}
211
212# All jdk test targets (testset=all)
213my.make.rule.test.targets.all= \
214 ${my.make.rule.test.targets.core}, \
215 ${my.make.rule.test.targets.svc}, \
216 ${my.test.target.set:TESTNAME=jdk_awt}, \
Mikael Vidstedt09b196b2014-07-03 10:23:19 -0700217 ${my.test.target.set:TESTNAME=jdk_beans}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700218 ${my.test.target.set:TESTNAME=jdk_sound}, \
219 ${my.test.target.set:TESTNAME=jdk_swing}
220
221# PIT vm test targets (testset=pit)
222my.test.targets.pit= \
223 ${my.test.targets.all}
224
225# PIT jdk test targets (testset=pit)
226my.make.rule.test.targets.pit= \
227 ${my.test.target.set:TESTNAME=langtools_jtreg}, \
228 ${my.make.rule.test.targets.core}, \
Tristan Yana78b9852014-12-15 13:09:39 -0800229 ${my.make.rule.test.targets.svc} \
230 ${my.make.rule.test.targets.jaxp}
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700231
232# JCK test targets in test/Makefile (no windows)
233my.test.target.set.jck= \
234 solaris_sparcv9_5.11-product-c2-JCK7TESTRULE, \
235 solaris_x64_5.11-product-c2-JCK7TESTRULE, \
236 linux_i586_2.6-product-c1-JCK7TESTRULE, \
237 linux_x64_2.6-product-c2-JCK7TESTRULE
238
239# JCK testset targets
240my.make.rule.test.targets.jck= \
241 ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools}, \
242 ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime}, \
243 ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
244
245
246#############
247#
248# Hotspot related settings (testset=hotspot)
249#
250
251# The hotspot build flavors
252my.build.flavors.hotspot= \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300253 debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700254 ${my.additional.build.flavors.hotspot}
255
256# Platforms built for hotspot push jobs
257my.build.targets.hotspot= \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300258 solaris_sparcv9_5.11-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700259 solaris_x64_5.11-{product|fastdebug}, \
260 linux_i586_2.6-{product|fastdebug}, \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300261 linux_x64_2.6-{product|fastdebug}, \
Tim Bellf5e8a4d2015-03-16 17:59:09 +0100262 macosx_x64_10.9-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700263 windows_i586_6.1-{product|fastdebug}, \
Igor Ignatyev913c598d2014-11-08 16:01:10 +0300264 windows_x64_6.1-{product|fastdebug}, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700265 solaris_x64_5.11-{debugOpen}, \
266 linux_x64_2.6-{productOpen}, \
267 ${my.additional.build.targets.hotspot}
268
269# Tests to run on the various platforms for hotspot push jobs
270my.test.targets.hotspot.solaris.sparcv9= \
271 solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98, \
272 solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered, \
273 solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700274 solaris_sparcv9_5.11-product-c2-runThese8, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700275 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \
276 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700277 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS, \
278 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1, \
279 solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700280 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \
281 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_SerialGC, \
282 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParallelGC, \
283 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_CMS, \
284 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_G1, \
285 solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParOldGC
286
287my.test.targets.hotspot.solaris.x64= \
288 solaris_x64_5.11-{product|fastdebug}-c2-jvm98, \
289 solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered, \
290 solaris_x64_5.11-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700291 solaris_x64_5.11-product-c2-runThese8, \
292 solaris_x64_5.11-product-c2-runThese8_Xcomp_lang, \
293 solaris_x64_5.11-product-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700294 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \
295 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700296 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS, \
297 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1, \
298 solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700299 solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \
300 solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC, \
Bengt Rutissonf96d0512015-01-07 15:02:33 +0100301 solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC,
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700302
303my.test.targets.hotspot.linux.i586= \
304 linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98, \
305 linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
306 linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700307 linux_i586_2.6-product-c1-runThese8_Xcomp_lang, \
308 linux_i586_2.6-product-c1-runThese8_Xcomp_vm, \
309 linux_i586_2.6-fastdebug-c1-runThese8_Xshare, \
310 linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang, \
311 linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700312 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
313 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700314 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
315 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
316 linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700317 linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC, \
318 linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \
319 linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC, \
320 linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS, \
321 linux_i586_2.6-{product|fastdebug}-c1-jbb_G1, \
322 linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC
323
324my.test.targets.hotspot.linux.x64= \
325 linux_x64_2.6-{product|fastdebug}-c2-jvm98, \
326 linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
327 linux_x64_2.6-{product|fastdebug}-c2-scimark, \
328 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC, \
329 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700330 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS, \
331 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1, \
332 linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700333 linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \
334 linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC, \
335 linux_x64_2.6-{product|fastdebug}-c2-jbb_G1, \
336 linux_x64_2.6-{product|fastdebug}-c2-jbb_ParOldGC
337
338my.test.targets.hotspot.macosx.x64= \
Tim Bellf5e8a4d2015-03-16 17:59:09 +0100339 macosx_x64_10.9-{product|fastdebug}-c2-jvm98, \
340 macosx_x64_10.9-{product|fastdebug}-c2-jvm98_nontiered, \
341 macosx_x64_10.9-{product|fastdebug}-c2-scimark, \
342 macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_SerialGC, \
343 macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParallelGC, \
344 macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_CMS, \
345 macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_G1, \
346 macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParOldGC, \
347 macosx_x64_10.9-{product|fastdebug}-c2-jbb_default_nontiered, \
348 macosx_x64_10.9-{product|fastdebug}-c2-jbb_ParallelGC, \
349 macosx_x64_10.9-{product|fastdebug}-c2-jbb_G1, \
350 macosx_x64_10.9-{product|fastdebug}-c2-jbb_ParOldGC
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700351
352my.test.targets.hotspot.windows.i586= \
353 windows_i586_6.1-{product|fastdebug}-{c1|c2}-jvm98, \
354 windows_i586_6.1-{product|fastdebug}-c2-jvm98_nontiered, \
355 windows_i586_6.1-{product|fastdebug}-{c1|c2}-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700356 windows_i586_6.1-product-{c1|c2}-runThese8, \
357 windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_lang, \
358 windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_vm, \
359 windows_i586_6.1-fastdebug-c1-runThese8_Xshare, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700360 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
361 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700362 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
363 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
364 windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700365 windows_i586_6.1-{product|fastdebug}-{c1|c2}-jbb_default, \
366 windows_i586_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \
367 windows_i586_6.1-product-{c1|c2}-jbb_ParallelGC, \
368 windows_i586_6.1-product-{c1|c2}-jbb_CMS, \
369 windows_i586_6.1-product-{c1|c2}-jbb_G1, \
370 windows_i586_6.1-product-{c1|c2}-jbb_ParOldGC
371
372my.test.targets.hotspot.windows.x64= \
373 windows_x64_6.1-{product|fastdebug}-c2-jvm98, \
374 windows_x64_6.1-{product|fastdebug}-c2-jvm98_nontiered, \
375 windows_x64_6.1-{product|fastdebug}-c2-scimark, \
Mikael Vidstedta720c932014-07-16 15:04:21 -0700376 windows_x64_6.1-product-c2-runThese8, \
377 windows_x64_6.1-product-c2-runThese8_Xcomp_lang, \
378 windows_x64_6.1-product-c2-runThese8_Xcomp_vm, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700379 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_SerialGC, \
380 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParallelGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700381 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_CMS, \
382 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_G1, \
383 windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParOldGC, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700384 windows_x64_6.1-{product|fastdebug}-c2-jbb_default, \
385 windows_x64_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \
386 windows_x64_6.1-product-c2-jbb_CMS, \
387 windows_x64_6.1-product-c2-jbb_ParallelGC, \
388 windows_x64_6.1-product-c2-jbb_G1, \
389 windows_x64_6.1-product-c2-jbb_ParOldGC
390
391# Some basic "smoke" tests for OpenJDK builds
392my.test.targets.hotspot.open= \
393 solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98, \
394 linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
395
396# The complete list of test targets for jprt
397my.test.targets.hotspot= \
398 ${my.test.targets.hotspot.open}, \
399 ${my.test.targets.hotspot.solaris.sparcv9}, \
400 ${my.test.targets.hotspot.solaris.x64}, \
401 ${my.test.targets.hotspot.linux.i586}, \
402 ${my.test.targets.hotspot.linux.x64}, \
403 ${my.test.targets.hotspot.macosx.x64}, \
404 ${my.test.targets.hotspot.windows.i586}, \
405 ${my.test.targets.hotspot.windows.x64}, \
406 ${my.test.targets.hotspot.solaris.sparcv9}, \
407 ${my.test.targets.hotspot.solaris.x64}, \
408 ${my.test.targets.hotspot.linux.x64}, \
409 ${my.test.targets.hotspot.windows.i586}, \
410 ${my.test.targets.hotspot.windows.x64}, \
411 ${my.additional.test.targets.hotspot}
412
413
414# Make file based test targets
415
Mikael Vidstedtd933f612015-04-17 16:08:41 -0700416my.make.rule.test.targets.hotspot.basicvmtests= \
417 linux_i586_2.6-*-default-hotspot_basicvmtest, \
418 linux_x64_2.6-*-default-hotspot_basicvmtest, \
419 macosx_x64_10.9-*-default-hotspot_basicvmtest, \
420 solaris_sparcv9_5.11-*-default-hotspot_basicvmtest, \
421 solaris_x64_5.11-*-default-hotspot_basicvmtest, \
422 windows_i586_6.1-*-default-hotspot_basicvmtest, \
423 windows_x64_6.1-*-default-hotspot_basicvmtest
424
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700425my.make.rule.test.targets.hotspot.internalvmtests= \
426 solaris_sparcv9_5.11-fastdebug-c2-hotspot_internalvmtests, \
427 solaris_x64_5.11-fastdebug-c2-hotspot_internalvmtests, \
428 linux_i586_2.6-fastdebug-c2-hotspot_internalvmtests, \
429 linux_x64_2.6-fastdebug-c2-hotspot_internalvmtests, \
Tim Bellf5e8a4d2015-03-16 17:59:09 +0100430 macosx_x64_10.9-fastdebug-c2-hotspot_internalvmtests, \
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700431 windows_i586_6.1-fastdebug-c2-hotspot_internalvmtests, \
432 windows_x64_6.1-fastdebug-c2-hotspot_internalvmtests
433
Zoltan Majoe56234c2014-08-05 09:05:51 +0200434my.make.rule.test.targets.hotspot.reg.group= \
435 solaris_sparcv9_5.11-fastdebug-c2-GROUP, \
436 solaris_x64_5.11-fastdebug-c2-GROUP, \
437 linux_i586_2.6-fastdebug-c2-GROUP, \
438 linux_x64_2.6-fastdebug-c2-GROUP, \
Tim Bellf5e8a4d2015-03-16 17:59:09 +0100439 macosx_x64_10.9-fastdebug-c2-GROUP, \
Zoltan Majoe56234c2014-08-05 09:05:51 +0200440 windows_i586_6.1-fastdebug-c2-GROUP, \
441 windows_x64_6.1-fastdebug-c2-GROUP, \
442 linux_i586_2.6-fastdebug-c1-GROUP, \
443 windows_i586_6.1-fastdebug-c1-GROUP
Mikael Vidstedt40c9be92014-06-24 20:29:52 -0700444
Mikael Vidstedtb5264b32015-04-14 22:46:16 -0700445# Hotspot jtreg tests
446my.make.rule.test.targets.hotspot.reg= \
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700447 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_wbapitest}, \
Staffan Larsen5bab4562014-09-22 20:04:40 +0200448 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1}, \
449 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2}, \
450 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3}, \
451 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed}, \
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700452 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc}, \
Bengt Rutisson16f26a82015-01-07 10:17:45 +0100453 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed}, \
Bengt Rutissonf96d0512015-01-07 15:02:33 +0100454 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_gcold}, \
Zoltan Majoe56234c2014-08-05 09:05:51 +0200455 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime}, \
Christian Tornqvist9835d9b2014-08-18 14:30:35 -0700456 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime_closed}, \
Mikael Vidstedt27cc5d82014-07-11 13:49:07 -0700457 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability}, \
Mikael Aunocb0c3ed2014-11-14 10:29:01 +0100458 ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity}, \
Mikael Vidstedtb5264b32015-04-14 22:46:16 -0700459 ${my.additional.make.rule.test.targets.hotspot.reg}
460
461# Other Makefile based Hotspot tests
462my.make.rule.test.targets.hotspot.other= \
Mikael Vidstedtd933f612015-04-17 16:08:41 -0700463 ${my.make.rule.test.targets.hotspot.basicvmtests}, \
Mikael Vidstedtb5264b32015-04-14 22:46:16 -0700464 ${my.make.rule.test.targets.hotspot.internalvmtests}, \
465 ${my.additional.make.rule.test.targets.hotspot.other}
466
467# All the makefile based tests to run
468my.make.rule.test.targets.hotspot= \
469 ${my.make.rule.test.targets.hotspot.reg} \
470 ${my.make.rule.test.targets.hotspot.other}
471
472# Install the test bundle for the testset hotspot jtreg tests
473# (but not for the other Makefile based tests)
474my.jprt.test.bundle.targets.hotspot=${my.make.rule.test.targets.hotspot.reg}
Magnus Ihse Bursief6875fe2015-02-27 11:56:57 +0100475
476# Native jdk and hotspot test targets (testset=nativesanity)
477my.make.rule.test.targets.nativesanity= \
478 ${my.test.target.set:TESTNAME=jdk_native_sanity}, \
479 ${my.test.target.set:TESTNAME=hotspot_native_sanity}
Mikael Vidstedtb5264b32015-04-14 22:46:16 -0700480
481# Install the test bundle for the nativesanity jtreg tests
482my.jprt.test.bundle.targets.nativesanity=${my.make.rule.test.targets.nativesanity}