author | sjiang |
Wed, 03 Dec 2014 11:38:56 +0100 | |
changeset 27796 | 5052f749052a |
parent 26790 | d0a247d1f2a8 |
child 27588 | 3506509c4f63 |
child 27597 | 1fb6ebaa4f9d |
child 27560 | adc258b13e2c |
permissions | -rw-r--r-- |
0 | 1 |
# |
25042 | 2 |
# Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved. |
0 | 3 |
# 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 |
|
5499 | 7 |
# published by the Free Software Foundation. Oracle designates this |
0 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5499 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
0 | 10 |
# |
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 |
# |
|
5499 | 21 |
# 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. |
|
0 | 24 |
# |
25 |
||
25042 | 26 |
############## |
27 |
# |
|
28 |
# Global settings |
|
29 |
# |
|
0 | 30 |
|
25042 | 31 |
# The current release name |
22032 | 32 |
jprt.tools.default.release=jdk9 |
6243
bc2db16c1a2a
6982946: Change make/jprt.properties to defer to JPRT itself for jdk platform list
ohair
parents:
5499
diff
changeset
|
33 |
|
25042 | 34 |
# Check if this is the equivalent of a hotspot push job |
35 |
# Interpret -testset hotspot to mean exactly that |
|
36 |
my.is.hotspot.job.hotspot=true |
|
37 |
my.is.hotspot.job=${my.is.hotspot.job.${jprt.test.set}} |
|
11619
6583f39d8dff
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11242
diff
changeset
|
38 |
|
25042 | 39 |
# Disable syncing the source after builds and tests are done |
40 |
jprt.sync.push=${my.is.hotspot.job ? false : true} |
|
4947 | 41 |
|
6243
bc2db16c1a2a
6982946: Change make/jprt.properties to defer to JPRT itself for jdk platform list
ohair
parents:
5499
diff
changeset
|
42 |
# Directories to be excluded from the source bundles |
4947 | 43 |
jprt.bundle.exclude.src.dirs=build dist webrev |
44 |
||
25042 | 45 |
# Use configure when building |
22031 | 46 |
jprt.build.use.configure=true |
25042 | 47 |
|
48 |
# Set make target to use for different build flavors |
|
49 |
jprt.build.flavor.debugOpen.target=jprt_bundle |
|
50 |
jprt.build.flavor.fastdebug.target=jprt_bundle |
|
22031 | 51 |
jprt.build.flavor.product.target=jprt_bundle |
25042 | 52 |
jprt.build.flavor.productOpen.target=jprt_bundle |
53 |
||
54 |
# Use these configure args to define debug level |
|
55 |
jprt.debug.build.configure.args=--with-debug-level=slowdebug |
|
56 |
jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug |
|
57 |
jprt.product.build.configure.args=--with-debug-level=release |
|
58 |
jprt.debugOpen.build.configure.args=${jprt.debug.build.configure.args} --enable-openjdk-only |
|
59 |
jprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args} --enable-openjdk-only |
|
60 |
jprt.productOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only |
|
61 |
||
62 |
# Select build flavors and build targets |
|
63 |
jprt.build.flavors=${my.is.hotspot.job ? ${my.build.flavors.hotspot} : ${my.build.flavors.default}} |
|
64 |
jprt.build.targets=${my.is.hotspot.job ? ${my.build.targets.hotspot} : ${my.build.targets.default}} |
|
65 |
||
66 |
# Select test targets - jprt default for jprt.test.set is "default" |
|
67 |
jprt.test.targets=${my.test.targets.${jprt.test.set}} |
|
68 |
jprt.make.rule.test.targets=${my.make.rule.test.targets.${jprt.test.set}} |
|
69 |
||
70 |
# 7155453: Work-around to prevent popups on OSX from blocking test completion |
|
71 |
# but the work-around is added to all platforms to be consistent |
|
72 |
jprt.jbb.options=-Djava.awt.headless=true |
|
73 |
||
74 |
######## |
|
75 |
# |
|
76 |
# Build options (generic) |
|
77 |
# |
|
78 |
||
79 |
# Configure args common to all builds |
|
80 |
# Also allows for additional, testset specific configure arguments to be set |
|
81 |
jprt.build.configure.args= \ |
|
25854 | 82 |
--with-output-sync=recurse \ |
83 |
--with-boot-jdk=$ALT_BOOTDIR \ |
|
84 |
--with-jobs=$ALT_PARALLEL_COMPILE_JOBS \ |
|
25042 | 85 |
${my.additional.build.configure.args.${jprt.test.set}} |
86 |
||
87 |
# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly |
|
88 |
jprt.i586.build.configure.args= \ |
|
89 |
--with-target-bits=32 |
|
90 |
||
91 |
# i586 platforms have both client and server, but to allow for overriding the exact configuration |
|
92 |
# on a per-build flavor basis the value is set for the individual build flavors |
|
93 |
my.i586.default.build.configure.args= \ |
|
94 |
--with-jvm-variants=client,server |
|
95 |
jprt.i586.debug.build.configure.args= \ |
|
96 |
${my.i586.default.build.configure.args} \ |
|
97 |
${jprt.debug.build.configure.args} |
|
98 |
jprt.i586.fastdebug.build.configure.args= \ |
|
99 |
${my.i586.default.build.configure.args} \ |
|
100 |
${jprt.fastdebug.build.configure.args} |
|
101 |
jprt.i586.product.build.configure.args= \ |
|
102 |
${my.i586.default.build.configure.args} \ |
|
103 |
${jprt.product.build.configure.args} |
|
104 |
jprt.i586.debugOpen.build.configure.args= \ |
|
105 |
${my.i586.default.build.configure.args} \ |
|
106 |
${jprt.debugOpen.build.configure.args} |
|
107 |
jprt.i586.fastdebugOpen.build.configure.args= \ |
|
108 |
${my.i586.default.build.configure.args} \ |
|
109 |
${jprt.fastdebugOpen.build.configure.args} |
|
110 |
jprt.i586.productOpen.build.configure.args= \ |
|
111 |
${my.i586.default.build.configure.args} \ |
|
112 |
${jprt.productOpen.build.configure.args} |
|
113 |
||
114 |
######## |
|
115 |
# |
|
116 |
# Build targets and options (default/jdk) |
|
117 |
# |
|
118 |
||
119 |
# The default build flavors |
|
120 |
my.build.flavors.default=fastdebug,product |
|
121 |
||
122 |
# Standard list of jprt build targets for this source tree |
|
123 |
my.build.targets.default= \ |
|
124 |
solaris_sparcv9_5.11-{product|fastdebug}, \ |
|
125 |
solaris_x64_5.11-{product|fastdebug}, \ |
|
126 |
linux_i586_2.6-{product|fastdebug}, \ |
|
127 |
linux_x64_2.6-{product|fastdebug}, \ |
|
128 |
macosx_x64_10.7-{product|fastdebug}, \ |
|
129 |
windows_i586_6.1-{product|fastdebug}, \ |
|
130 |
windows_x64_6.1-{product|fastdebug} |
|
131 |
||
132 |
# Test target list (no fastdebug & limited c2 testing) |
|
133 |
my.test.target.set= \ |
|
134 |
solaris_sparcv9_5.11-product-c2-TESTNAME, \ |
|
135 |
solaris_x64_5.11-product-c2-TESTNAME, \ |
|
136 |
linux_i586_2.6-product-{c1|c2}-TESTNAME, \ |
|
137 |
linux_x64_2.6-product-c2-TESTNAME, \ |
|
138 |
macosx_x64_10.7-product-c2-TESTNAME, \ |
|
139 |
windows_i586_6.1-product-c1-TESTNAME, \ |
|
140 |
windows_x64_6.1-product-c2-TESTNAME |
|
141 |
||
142 |
# Default vm test targets (testset=default) |
|
143 |
my.test.targets.default= \ |
|
144 |
${my.test.target.set:TESTNAME=jvm98}, \ |
|
145 |
${my.test.target.set:TESTNAME=scimark} |
|
146 |
||
147 |
# Default jdk test targets (testset=default) |
|
148 |
my.make.rule.test.targets.default= \ |
|
149 |
${my.test.target.set:TESTNAME=langtools_jtreg}, \ |
|
150 |
${my.test.target.set:TESTNAME=jdk_lang}, \ |
|
151 |
${my.test.target.set:TESTNAME=jdk_math}, \ |
|
152 |
${my.test.target.set:TESTNAME=jdk_util} |
|
153 |
||
154 |
# Default vm test targets (testset=core) |
|
155 |
my.test.targets.core= |
|
156 |
||
157 |
# Core jdk test targets (testset=core) |
|
158 |
my.make.rule.test.targets.core= \ |
|
159 |
${my.test.target.set:TESTNAME=jdk_lang}, \ |
|
160 |
${my.test.target.set:TESTNAME=jdk_math}, \ |
|
161 |
${my.test.target.set:TESTNAME=jdk_util}, \ |
|
162 |
${my.test.target.set:TESTNAME=jdk_io}, \ |
|
163 |
${my.test.target.set:TESTNAME=jdk_net}, \ |
|
164 |
${my.test.target.set:TESTNAME=jdk_nio}, \ |
|
165 |
${my.test.target.set:TESTNAME=jdk_security1}, \ |
|
166 |
${my.test.target.set:TESTNAME=jdk_security2}, \ |
|
167 |
${my.test.target.set:TESTNAME=jdk_security3}, \ |
|
26401
8056c9157546
8057813: Alterations to jdk_security3 test target
coffeys
parents:
26125
diff
changeset
|
168 |
${my.test.target.set:TESTNAME=jdk_security4}, \ |
25042 | 169 |
${my.test.target.set:TESTNAME=jdk_rmi}, \ |
170 |
${my.test.target.set:TESTNAME=jdk_text}, \ |
|
171 |
${my.test.target.set:TESTNAME=jdk_time}, \ |
|
172 |
${my.test.target.set:TESTNAME=jdk_other}, \ |
|
173 |
${my.test.target.set:TESTNAME=core_tools} |
|
174 |
||
175 |
# Svc vm test targets (testset=svc) |
|
176 |
my.test.targets.svc= |
|
177 |
||
178 |
# Core jdk test targets (testset=svc) |
|
179 |
my.make.rule.test.targets.svc= \ |
|
180 |
${my.test.target.set:TESTNAME=jdk_management}, \ |
|
181 |
${my.test.target.set:TESTNAME=jdk_instrument}, \ |
|
182 |
${my.test.target.set:TESTNAME=jdk_jmx}, \ |
|
183 |
${my.test.target.set:TESTNAME=jdk_jdi}, \ |
|
184 |
${my.test.target.set:TESTNAME=jdk_jfr}, \ |
|
185 |
${my.test.target.set:TESTNAME=svc_tools} |
|
186 |
||
187 |
# All vm test targets (testset=all) |
|
188 |
my.test.targets.all= \ |
|
189 |
${my.test.targets.default}, \ |
|
190 |
${my.test.target.set:TESTNAME=runThese}, \ |
|
191 |
${my.test.target.set:TESTNAME=jbb_default} |
|
192 |
||
193 |
# All jdk test targets (testset=all) |
|
194 |
my.make.rule.test.targets.all= \ |
|
195 |
${my.make.rule.test.targets.core}, \ |
|
196 |
${my.make.rule.test.targets.svc}, \ |
|
197 |
${my.test.target.set:TESTNAME=jdk_awt}, \ |
|
25316
7982f0abfcfc
8047154: Testset all fails because of missing jdk_beansX test groups
mikael
parents:
25042
diff
changeset
|
198 |
${my.test.target.set:TESTNAME=jdk_beans}, \ |
25042 | 199 |
${my.test.target.set:TESTNAME=jdk_sound}, \ |
200 |
${my.test.target.set:TESTNAME=jdk_swing} |
|
201 |
||
202 |
# PIT vm test targets (testset=pit) |
|
203 |
my.test.targets.pit= \ |
|
204 |
${my.test.targets.all} |
|
205 |
||
206 |
# PIT jdk test targets (testset=pit) |
|
207 |
my.make.rule.test.targets.pit= \ |
|
208 |
${my.test.target.set:TESTNAME=langtools_jtreg}, \ |
|
209 |
${my.make.rule.test.targets.core}, \ |
|
210 |
${my.make.rule.test.targets.svc} |
|
211 |
||
212 |
# JCK test targets in test/Makefile (no windows) |
|
213 |
my.test.target.set.jck= \ |
|
214 |
solaris_sparcv9_5.11-product-c2-JCK7TESTRULE, \ |
|
215 |
solaris_x64_5.11-product-c2-JCK7TESTRULE, \ |
|
216 |
linux_i586_2.6-product-c1-JCK7TESTRULE, \ |
|
217 |
linux_x64_2.6-product-c2-JCK7TESTRULE |
|
218 |
||
219 |
# JCK testset targets |
|
220 |
my.make.rule.test.targets.jck= \ |
|
221 |
${my.test.target.set.jck:JCK7TESTRULE=jck7devtools}, \ |
|
222 |
${my.test.target.set.jck:JCK7TESTRULE=jck7runtime}, \ |
|
223 |
${my.test.target.set.jck:JCK7TESTRULE=jck7compiler} |
|
224 |
||
225 |
||
226 |
############# |
|
227 |
# |
|
228 |
# Hotspot related settings (testset=hotspot) |
|
229 |
# |
|
230 |
||
231 |
# The hotspot build flavors |
|
232 |
my.build.flavors.hotspot= \ |
|
233 |
debugOpen,fastdebug,product,productOpen, \ |
|
234 |
${my.additional.build.flavors.hotspot} |
|
235 |
||
236 |
# Platforms built for hotspot push jobs |
|
237 |
my.build.targets.hotspot= \ |
|
238 |
solaris_sparcv9_5.11-{product|fastdebug|optimized}, \ |
|
239 |
solaris_x64_5.11-{product|fastdebug}, \ |
|
240 |
linux_i586_2.6-{product|fastdebug}, \ |
|
241 |
linux_x64_2.6-{product|fastdebug|optimized}, \ |
|
242 |
macosx_x64_10.7-{product|fastdebug}, \ |
|
243 |
windows_i586_6.1-{product|fastdebug}, \ |
|
244 |
windows_x64_6.1-{product|fastdebug|optimized}, \ |
|
245 |
solaris_x64_5.11-{debugOpen}, \ |
|
246 |
linux_x64_2.6-{productOpen}, \ |
|
247 |
${my.additional.build.targets.hotspot} |
|
22031 | 248 |
|
25042 | 249 |
# Tests to run on the various platforms for hotspot push jobs |
250 |
my.test.targets.hotspot.solaris.sparcv9= \ |
|
251 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98, \ |
|
252 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
253 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark, \ |
|
25705 | 254 |
solaris_sparcv9_5.11-product-c2-runThese8, \ |
25042 | 255 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
256 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
257 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParNewGC, \ |
|
258 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
259 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1, \ |
|
260 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \ |
|
261 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_SerialGC, \ |
|
262 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_ParallelGC, \ |
|
263 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_ParNewGC, \ |
|
264 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_CMS, \ |
|
265 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_G1, \ |
|
266 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_ParOldGC, \ |
|
267 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
268 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_SerialGC, \ |
|
269 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParallelGC, \ |
|
270 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_CMS, \ |
|
271 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_G1, \ |
|
272 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParOldGC |
|
273 |
||
274 |
my.test.targets.hotspot.solaris.x64= \ |
|
275 |
solaris_x64_5.11-{product|fastdebug}-c2-jvm98, \ |
|
276 |
solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
277 |
solaris_x64_5.11-{product|fastdebug}-c2-scimark, \ |
|
25705 | 278 |
solaris_x64_5.11-product-c2-runThese8, \ |
279 |
solaris_x64_5.11-product-c2-runThese8_Xcomp_lang, \ |
|
280 |
solaris_x64_5.11-product-c2-runThese8_Xcomp_vm, \ |
|
25042 | 281 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
282 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
283 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParNewGC, \ |
|
284 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
285 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1, \ |
|
286 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \ |
|
287 |
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_SerialGC, \ |
|
288 |
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParallelGC, \ |
|
289 |
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParNewGC, \ |
|
290 |
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_CMS, \ |
|
291 |
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_G1, \ |
|
292 |
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParOldGC, \ |
|
293 |
solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
294 |
solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC, \ |
|
295 |
solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC, \ |
|
296 |
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_CMS, \ |
|
297 |
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_G1, \ |
|
298 |
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParOldGC |
|
299 |
||
300 |
my.test.targets.hotspot.linux.i586= \ |
|
301 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98, \ |
|
302 |
linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
303 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark, \ |
|
25705 | 304 |
linux_i586_2.6-product-c1-runThese8_Xcomp_lang, \ |
305 |
linux_i586_2.6-product-c1-runThese8_Xcomp_vm, \ |
|
306 |
linux_i586_2.6-fastdebug-c1-runThese8_Xshare, \ |
|
307 |
linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang, \ |
|
308 |
linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm, \ |
|
25042 | 309 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \ |
310 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \ |
|
311 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \ |
|
312 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \ |
|
313 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1, \ |
|
314 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \ |
|
315 |
linux_i586_2.6-product-{c1|c2}-GCOld_SerialGC, \ |
|
316 |
linux_i586_2.6-product-{c1|c2}-GCOld_ParallelGC, \ |
|
317 |
linux_i586_2.6-product-{c1|c2}-GCOld_ParNewGC, \ |
|
318 |
linux_i586_2.6-product-{c1|c2}-GCOld_CMS, \ |
|
319 |
linux_i586_2.6-product-{c1|c2}-GCOld_G1, \ |
|
320 |
linux_i586_2.6-product-{c1|c2}-GCOld_ParOldGC, \ |
|
321 |
linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC, \ |
|
322 |
linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
323 |
linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC, \ |
|
324 |
linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS, \ |
|
325 |
linux_i586_2.6-{product|fastdebug}-c1-jbb_G1, \ |
|
326 |
linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC |
|
327 |
||
328 |
my.test.targets.hotspot.linux.x64= \ |
|
329 |
linux_x64_2.6-{product|fastdebug}-c2-jvm98, \ |
|
330 |
linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
331 |
linux_x64_2.6-{product|fastdebug}-c2-scimark, \ |
|
332 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
|
333 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
334 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParNewGC, \ |
|
335 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
336 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1, \ |
|
337 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC, \ |
|
338 |
linux_x64_2.6-{product|fastdebug}-c2-GCOld_SerialGC, \ |
|
339 |
linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParallelGC, \ |
|
340 |
linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParNewGC, \ |
|
341 |
linux_x64_2.6-{product|fastdebug}-c2-GCOld_CMS, \ |
|
342 |
linux_x64_2.6-{product|fastdebug}-c2-GCOld_G1, \ |
|
343 |
linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParOldGC, \ |
|
344 |
linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
345 |
linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC, \ |
|
346 |
linux_x64_2.6-{product|fastdebug}-c2-jbb_G1, \ |
|
347 |
linux_x64_2.6-{product|fastdebug}-c2-jbb_ParOldGC |
|
22031 | 348 |
|
25042 | 349 |
my.test.targets.hotspot.macosx.x64= \ |
350 |
macosx_x64_10.7-{product|fastdebug}-c2-jvm98, \ |
|
351 |
macosx_x64_10.7-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
352 |
macosx_x64_10.7-{product|fastdebug}-c2-scimark, \ |
|
353 |
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
|
354 |
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
355 |
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParNewGC, \ |
|
356 |
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
357 |
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_G1, \ |
|
358 |
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParOldGC, \ |
|
359 |
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_SerialGC, \ |
|
360 |
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParallelGC, \ |
|
361 |
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParNewGC, \ |
|
362 |
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_CMS, \ |
|
363 |
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_G1, \ |
|
364 |
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParOldGC, \ |
|
365 |
macosx_x64_10.7-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
366 |
macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParallelGC, \ |
|
367 |
macosx_x64_10.7-{product|fastdebug}-c2-jbb_G1, \ |
|
368 |
macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParOldGC |
|
369 |
||
370 |
my.test.targets.hotspot.windows.i586= \ |
|
371 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-jvm98, \ |
|
372 |
windows_i586_6.1-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
373 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-scimark, \ |
|
25705 | 374 |
windows_i586_6.1-product-{c1|c2}-runThese8, \ |
375 |
windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_lang, \ |
|
376 |
windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_vm, \ |
|
377 |
windows_i586_6.1-fastdebug-c1-runThese8_Xshare, \ |
|
25042 | 378 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \ |
379 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \ |
|
380 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \ |
|
381 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \ |
|
382 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_G1, \ |
|
383 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \ |
|
384 |
windows_i586_6.1-product-{c1|c2}-GCOld_SerialGC, \ |
|
385 |
windows_i586_6.1-product-{c1|c2}-GCOld_ParallelGC, \ |
|
386 |
windows_i586_6.1-product-{c1|c2}-GCOld_ParNewGC, \ |
|
387 |
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 |
|
22031 | 396 |
|
25042 | 397 |
my.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, \ |
|
25705 | 401 |
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, \ |
|
25042 | 404 |
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
405 |
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
406 |
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParNewGC, \ |
|
407 |
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
408 |
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_G1, \ |
|
409 |
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParOldGC, \ |
|
410 |
windows_x64_6.1-{product|fastdebug}-c2-GCOld_SerialGC, \ |
|
411 |
windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParallelGC, \ |
|
412 |
windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParNewGC, \ |
|
413 |
windows_x64_6.1-{product|fastdebug}-c2-GCOld_CMS, \ |
|
414 |
windows_x64_6.1-{product|fastdebug}-c2-GCOld_G1, \ |
|
415 |
windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParOldGC, \ |
|
416 |
windows_x64_6.1-{product|fastdebug}-c2-jbb_default, \ |
|
417 |
windows_x64_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
418 |
windows_x64_6.1-product-c2-jbb_CMS, \ |
|
419 |
windows_x64_6.1-product-c2-jbb_ParallelGC, \ |
|
420 |
windows_x64_6.1-product-c2-jbb_G1, \ |
|
421 |
windows_x64_6.1-product-c2-jbb_ParOldGC |
|
422 |
||
423 |
# Some basic "smoke" tests for OpenJDK builds |
|
424 |
my.test.targets.hotspot.open= \ |
|
425 |
solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98, \ |
|
426 |
linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98 |
|
427 |
||
428 |
# The complete list of test targets for jprt |
|
429 |
my.test.targets.hotspot= \ |
|
430 |
${my.test.targets.hotspot.open}, \ |
|
431 |
${my.test.targets.hotspot.solaris.sparcv9}, \ |
|
432 |
${my.test.targets.hotspot.solaris.x64}, \ |
|
433 |
${my.test.targets.hotspot.linux.i586}, \ |
|
434 |
${my.test.targets.hotspot.linux.x64}, \ |
|
435 |
${my.test.targets.hotspot.macosx.x64}, \ |
|
436 |
${my.test.targets.hotspot.windows.i586}, \ |
|
437 |
${my.test.targets.hotspot.windows.x64}, \ |
|
438 |
${my.test.targets.hotspot.solaris.sparcv9}, \ |
|
439 |
${my.test.targets.hotspot.solaris.x64}, \ |
|
440 |
${my.test.targets.hotspot.linux.x64}, \ |
|
441 |
${my.test.targets.hotspot.windows.i586}, \ |
|
442 |
${my.test.targets.hotspot.windows.x64}, \ |
|
443 |
${my.additional.test.targets.hotspot} |
|
444 |
||
445 |
||
446 |
# Make file based test targets |
|
447 |
||
448 |
my.make.rule.test.targets.hotspot.clienttests= \ |
|
449 |
linux_i586_2.6-*-c1-hotspot_clienttest, \ |
|
450 |
windows_i586_6.1-*-c1-hotspot_clienttest |
|
451 |
||
452 |
my.make.rule.test.targets.hotspot.servertests= \ |
|
453 |
solaris_sparcv9_5.11-*-c2-hotspot_servertest, \ |
|
454 |
solaris_x64_5.11-*-c2-hotspot_servertest, \ |
|
455 |
linux_i586_2.6-*-c2-hotspot_servertest, \ |
|
456 |
linux_x64_2.6-*-c2-hotspot_servertest, \ |
|
457 |
macosx_x64_10.7-*-c2-hotspot_servertest, \ |
|
458 |
windows_i586_6.1-*-c2-hotspot_servertest, \ |
|
459 |
windows_x64_6.1-*-c2-hotspot_servertest |
|
460 |
||
461 |
my.make.rule.test.targets.hotspot.internalvmtests= \ |
|
462 |
solaris_sparcv9_5.11-fastdebug-c2-hotspot_internalvmtests, \ |
|
463 |
solaris_x64_5.11-fastdebug-c2-hotspot_internalvmtests, \ |
|
464 |
linux_i586_2.6-fastdebug-c2-hotspot_internalvmtests, \ |
|
465 |
linux_x64_2.6-fastdebug-c2-hotspot_internalvmtests, \ |
|
466 |
macosx_x64_10.7-fastdebug-c2-hotspot_internalvmtests, \ |
|
467 |
windows_i586_6.1-fastdebug-c2-hotspot_internalvmtests, \ |
|
468 |
windows_x64_6.1-fastdebug-c2-hotspot_internalvmtests |
|
469 |
||
26122
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
470 |
my.make.rule.test.targets.hotspot.reg.group= \ |
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
471 |
solaris_sparcv9_5.11-fastdebug-c2-GROUP, \ |
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
472 |
solaris_x64_5.11-fastdebug-c2-GROUP, \ |
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
473 |
linux_i586_2.6-fastdebug-c2-GROUP, \ |
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
474 |
linux_x64_2.6-fastdebug-c2-GROUP, \ |
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
475 |
macosx_x64_10.7-fastdebug-c2-GROUP, \ |
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
476 |
windows_i586_6.1-fastdebug-c2-GROUP, \ |
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
477 |
windows_x64_6.1-fastdebug-c2-GROUP, \ |
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
478 |
linux_i586_2.6-fastdebug-c1-GROUP, \ |
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
479 |
windows_i586_6.1-fastdebug-c1-GROUP |
25042 | 480 |
|
25615 | 481 |
my.make.rule.test.targets.hotspot= \ |
482 |
${my.make.rule.test.targets.hotspot.clienttests}, \ |
|
483 |
${my.make.rule.test.targets.hotspot.servertests}, \ |
|
484 |
${my.make.rule.test.targets.hotspot.internalvmtests}, \ |
|
485 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_wbapitest}, \ |
|
26790
d0a247d1f2a8
8058863: jdk9/hs-comp fails in jprt with "-testset hotspot" from top-level
sla
parents:
26401
diff
changeset
|
486 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1}, \ |
d0a247d1f2a8
8058863: jdk9/hs-comp fails in jprt with "-testset hotspot" from top-level
sla
parents:
26401
diff
changeset
|
487 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2}, \ |
d0a247d1f2a8
8058863: jdk9/hs-comp fails in jprt with "-testset hotspot" from top-level
sla
parents:
26401
diff
changeset
|
488 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3}, \ |
d0a247d1f2a8
8058863: jdk9/hs-comp fails in jprt with "-testset hotspot" from top-level
sla
parents:
26401
diff
changeset
|
489 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed}, \ |
25615 | 490 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc}, \ |
26122
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
491 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime}, \ |
26120
0fbd39144922
8032999: [TESTBUG] JT-Reg Runtime tests to be run as part of JPRT submit job
ctornqvi
parents:
25705
diff
changeset
|
492 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime_closed}, \ |
25615 | 493 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability}, \ |
25042 | 494 |
${my.additional.make.rule.test.targets.hotspot} |