author | attila |
Fri, 20 Feb 2015 15:47:28 +0100 | |
changeset 29133 | 1cd7d8af99ba |
parent 28348 | 8d988e8f3c2e |
child 29063 | 42142426273c |
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 |
27588 | 53 |
jprt.build.flavor.optimized.target=jprt_bundle |
54 |
jprt.build.flavor.optimizedOpen.target=jprt_bundle |
|
25042 | 55 |
|
56 |
# Use these configure args to define debug level |
|
57 |
jprt.debug.build.configure.args=--with-debug-level=slowdebug |
|
58 |
jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug |
|
59 |
jprt.product.build.configure.args=--with-debug-level=release |
|
27588 | 60 |
jprt.optimized.build.configure.args=--with-debug-level=optimized |
25042 | 61 |
jprt.debugOpen.build.configure.args=${jprt.debug.build.configure.args} --enable-openjdk-only |
62 |
jprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args} --enable-openjdk-only |
|
63 |
jprt.productOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only |
|
27588 | 64 |
jprt.optimizedOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only |
25042 | 65 |
|
66 |
# Select build flavors and build targets |
|
67 |
jprt.build.flavors=${my.is.hotspot.job ? ${my.build.flavors.hotspot} : ${my.build.flavors.default}} |
|
68 |
jprt.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" |
|
71 |
jprt.test.targets=${my.test.targets.${jprt.test.set}} |
|
72 |
jprt.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 |
|
76 |
jprt.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 |
|
85 |
jprt.build.configure.args= \ |
|
25854 | 86 |
--with-output-sync=recurse \ |
87 |
--with-boot-jdk=$ALT_BOOTDIR \ |
|
88 |
--with-jobs=$ALT_PARALLEL_COMPILE_JOBS \ |
|
25042 | 89 |
${my.additional.build.configure.args.${jprt.test.set}} |
90 |
||
91 |
# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly |
|
92 |
jprt.i586.build.configure.args= \ |
|
93 |
--with-target-bits=32 |
|
94 |
||
95 |
# i586 platforms have both client and server, but to allow for overriding the exact configuration |
|
96 |
# on a per-build flavor basis the value is set for the individual build flavors |
|
97 |
my.i586.default.build.configure.args= \ |
|
98 |
--with-jvm-variants=client,server |
|
99 |
jprt.i586.debug.build.configure.args= \ |
|
100 |
${my.i586.default.build.configure.args} \ |
|
101 |
${jprt.debug.build.configure.args} |
|
102 |
jprt.i586.fastdebug.build.configure.args= \ |
|
103 |
${my.i586.default.build.configure.args} \ |
|
104 |
${jprt.fastdebug.build.configure.args} |
|
105 |
jprt.i586.product.build.configure.args= \ |
|
106 |
${my.i586.default.build.configure.args} \ |
|
107 |
${jprt.product.build.configure.args} |
|
108 |
jprt.i586.debugOpen.build.configure.args= \ |
|
109 |
${my.i586.default.build.configure.args} \ |
|
110 |
${jprt.debugOpen.build.configure.args} |
|
111 |
jprt.i586.fastdebugOpen.build.configure.args= \ |
|
112 |
${my.i586.default.build.configure.args} \ |
|
113 |
${jprt.fastdebugOpen.build.configure.args} |
|
114 |
jprt.i586.productOpen.build.configure.args= \ |
|
115 |
${my.i586.default.build.configure.args} \ |
|
116 |
${jprt.productOpen.build.configure.args} |
|
117 |
||
118 |
######## |
|
119 |
# |
|
120 |
# Build targets and options (default/jdk) |
|
121 |
# |
|
122 |
||
123 |
# The default build flavors |
|
124 |
my.build.flavors.default=fastdebug,product |
|
125 |
||
126 |
# Standard list of jprt build targets for this source tree |
|
127 |
my.build.targets.default= \ |
|
128 |
solaris_sparcv9_5.11-{product|fastdebug}, \ |
|
129 |
solaris_x64_5.11-{product|fastdebug}, \ |
|
130 |
linux_i586_2.6-{product|fastdebug}, \ |
|
131 |
linux_x64_2.6-{product|fastdebug}, \ |
|
132 |
macosx_x64_10.7-{product|fastdebug}, \ |
|
133 |
windows_i586_6.1-{product|fastdebug}, \ |
|
134 |
windows_x64_6.1-{product|fastdebug} |
|
135 |
||
136 |
# Test target list (no fastdebug & limited c2 testing) |
|
137 |
my.test.target.set= \ |
|
138 |
solaris_sparcv9_5.11-product-c2-TESTNAME, \ |
|
139 |
solaris_x64_5.11-product-c2-TESTNAME, \ |
|
140 |
linux_i586_2.6-product-{c1|c2}-TESTNAME, \ |
|
141 |
linux_x64_2.6-product-c2-TESTNAME, \ |
|
142 |
macosx_x64_10.7-product-c2-TESTNAME, \ |
|
143 |
windows_i586_6.1-product-c1-TESTNAME, \ |
|
144 |
windows_x64_6.1-product-c2-TESTNAME |
|
145 |
||
146 |
# Default vm test targets (testset=default) |
|
147 |
my.test.targets.default= \ |
|
148 |
${my.test.target.set:TESTNAME=jvm98}, \ |
|
149 |
${my.test.target.set:TESTNAME=scimark} |
|
150 |
||
151 |
# Default jdk test targets (testset=default) |
|
152 |
my.make.rule.test.targets.default= \ |
|
153 |
${my.test.target.set:TESTNAME=langtools_jtreg}, \ |
|
154 |
${my.test.target.set:TESTNAME=jdk_lang}, \ |
|
155 |
${my.test.target.set:TESTNAME=jdk_math}, \ |
|
156 |
${my.test.target.set:TESTNAME=jdk_util} |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27588
diff
changeset
|
157 |
|
25042 | 158 |
# Default vm test targets (testset=core) |
159 |
my.test.targets.core= |
|
160 |
||
161 |
# Core jdk test targets (testset=core) |
|
162 |
my.make.rule.test.targets.core= \ |
|
163 |
${my.test.target.set:TESTNAME=jdk_lang}, \ |
|
164 |
${my.test.target.set:TESTNAME=jdk_math}, \ |
|
165 |
${my.test.target.set:TESTNAME=jdk_util}, \ |
|
166 |
${my.test.target.set:TESTNAME=jdk_io}, \ |
|
167 |
${my.test.target.set:TESTNAME=jdk_net}, \ |
|
168 |
${my.test.target.set:TESTNAME=jdk_nio}, \ |
|
169 |
${my.test.target.set:TESTNAME=jdk_security1}, \ |
|
170 |
${my.test.target.set:TESTNAME=jdk_security2}, \ |
|
171 |
${my.test.target.set:TESTNAME=jdk_security3}, \ |
|
26401
8056c9157546
8057813: Alterations to jdk_security3 test target
coffeys
parents:
26125
diff
changeset
|
172 |
${my.test.target.set:TESTNAME=jdk_security4}, \ |
25042 | 173 |
${my.test.target.set:TESTNAME=jdk_rmi}, \ |
174 |
${my.test.target.set:TESTNAME=jdk_text}, \ |
|
175 |
${my.test.target.set:TESTNAME=jdk_time}, \ |
|
176 |
${my.test.target.set:TESTNAME=jdk_other}, \ |
|
177 |
${my.test.target.set:TESTNAME=core_tools} |
|
178 |
||
179 |
# Svc vm test targets (testset=svc) |
|
180 |
my.test.targets.svc= |
|
181 |
||
182 |
# Core jdk test targets (testset=svc) |
|
183 |
my.make.rule.test.targets.svc= \ |
|
184 |
${my.test.target.set:TESTNAME=jdk_management}, \ |
|
185 |
${my.test.target.set:TESTNAME=jdk_instrument}, \ |
|
186 |
${my.test.target.set:TESTNAME=jdk_jmx}, \ |
|
187 |
${my.test.target.set:TESTNAME=jdk_jdi}, \ |
|
27560 | 188 |
${my.test.target.set:TESTNAME=svc_tools}, \ |
189 |
${my.make.rule.test.targets.svc.extra} |
|
25042 | 190 |
|
28006
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
191 |
# JAXP vm test targets (testset=jaxp) |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
192 |
my.test.targets.jaxp= |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
193 |
|
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
194 |
# JAXP test targets (testset=jaxp) |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
195 |
my.make.rule.test.targets.jaxp= \ |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
196 |
${my.test.target.set:TESTNAME=jaxp_all} |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
197 |
|
25042 | 198 |
# All vm test targets (testset=all) |
199 |
my.test.targets.all= \ |
|
200 |
${my.test.targets.default}, \ |
|
201 |
${my.test.target.set:TESTNAME=runThese}, \ |
|
202 |
${my.test.target.set:TESTNAME=jbb_default} |
|
203 |
||
204 |
# All jdk test targets (testset=all) |
|
205 |
my.make.rule.test.targets.all= \ |
|
206 |
${my.make.rule.test.targets.core}, \ |
|
207 |
${my.make.rule.test.targets.svc}, \ |
|
208 |
${my.test.target.set:TESTNAME=jdk_awt}, \ |
|
25316
7982f0abfcfc
8047154: Testset all fails because of missing jdk_beansX test groups
mikael
parents:
25042
diff
changeset
|
209 |
${my.test.target.set:TESTNAME=jdk_beans}, \ |
25042 | 210 |
${my.test.target.set:TESTNAME=jdk_sound}, \ |
211 |
${my.test.target.set:TESTNAME=jdk_swing} |
|
212 |
||
213 |
# PIT vm test targets (testset=pit) |
|
214 |
my.test.targets.pit= \ |
|
215 |
${my.test.targets.all} |
|
216 |
||
217 |
# PIT jdk test targets (testset=pit) |
|
218 |
my.make.rule.test.targets.pit= \ |
|
219 |
${my.test.target.set:TESTNAME=langtools_jtreg}, \ |
|
220 |
${my.make.rule.test.targets.core}, \ |
|
28006
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
221 |
${my.make.rule.test.targets.svc} \ |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
222 |
${my.make.rule.test.targets.jaxp} |
25042 | 223 |
|
224 |
# JCK test targets in test/Makefile (no windows) |
|
225 |
my.test.target.set.jck= \ |
|
226 |
solaris_sparcv9_5.11-product-c2-JCK7TESTRULE, \ |
|
227 |
solaris_x64_5.11-product-c2-JCK7TESTRULE, \ |
|
228 |
linux_i586_2.6-product-c1-JCK7TESTRULE, \ |
|
229 |
linux_x64_2.6-product-c2-JCK7TESTRULE |
|
230 |
||
231 |
# JCK testset targets |
|
232 |
my.make.rule.test.targets.jck= \ |
|
233 |
${my.test.target.set.jck:JCK7TESTRULE=jck7devtools}, \ |
|
234 |
${my.test.target.set.jck:JCK7TESTRULE=jck7runtime}, \ |
|
235 |
${my.test.target.set.jck:JCK7TESTRULE=jck7compiler} |
|
236 |
||
237 |
||
238 |
############# |
|
239 |
# |
|
240 |
# Hotspot related settings (testset=hotspot) |
|
241 |
# |
|
242 |
||
243 |
# The hotspot build flavors |
|
244 |
my.build.flavors.hotspot= \ |
|
27588 | 245 |
debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \ |
25042 | 246 |
${my.additional.build.flavors.hotspot} |
247 |
||
248 |
# Platforms built for hotspot push jobs |
|
249 |
my.build.targets.hotspot= \ |
|
27588 | 250 |
solaris_sparcv9_5.11-{product|fastdebug}, \ |
25042 | 251 |
solaris_x64_5.11-{product|fastdebug}, \ |
252 |
linux_i586_2.6-{product|fastdebug}, \ |
|
27588 | 253 |
linux_x64_2.6-{product|fastdebug}, \ |
25042 | 254 |
macosx_x64_10.7-{product|fastdebug}, \ |
255 |
windows_i586_6.1-{product|fastdebug}, \ |
|
27588 | 256 |
windows_x64_6.1-{product|fastdebug}, \ |
25042 | 257 |
solaris_x64_5.11-{debugOpen}, \ |
258 |
linux_x64_2.6-{productOpen}, \ |
|
259 |
${my.additional.build.targets.hotspot} |
|
22031 | 260 |
|
25042 | 261 |
# Tests to run on the various platforms for hotspot push jobs |
262 |
my.test.targets.hotspot.solaris.sparcv9= \ |
|
263 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98, \ |
|
264 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
265 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark, \ |
|
25705 | 266 |
solaris_sparcv9_5.11-product-c2-runThese8, \ |
25042 | 267 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
268 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
269 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
270 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1, \ |
|
271 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \ |
|
272 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
273 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_SerialGC, \ |
|
274 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParallelGC, \ |
|
275 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_CMS, \ |
|
276 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_G1, \ |
|
277 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParOldGC |
|
278 |
||
279 |
my.test.targets.hotspot.solaris.x64= \ |
|
280 |
solaris_x64_5.11-{product|fastdebug}-c2-jvm98, \ |
|
281 |
solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
282 |
solaris_x64_5.11-{product|fastdebug}-c2-scimark, \ |
|
25705 | 283 |
solaris_x64_5.11-product-c2-runThese8, \ |
284 |
solaris_x64_5.11-product-c2-runThese8_Xcomp_lang, \ |
|
285 |
solaris_x64_5.11-product-c2-runThese8_Xcomp_vm, \ |
|
25042 | 286 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
287 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
288 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
289 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1, \ |
|
290 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \ |
|
291 |
solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
292 |
solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC, \ |
|
28348 | 293 |
solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC, |
25042 | 294 |
|
295 |
my.test.targets.hotspot.linux.i586= \ |
|
296 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98, \ |
|
297 |
linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
298 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark, \ |
|
25705 | 299 |
linux_i586_2.6-product-c1-runThese8_Xcomp_lang, \ |
300 |
linux_i586_2.6-product-c1-runThese8_Xcomp_vm, \ |
|
301 |
linux_i586_2.6-fastdebug-c1-runThese8_Xshare, \ |
|
302 |
linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang, \ |
|
303 |
linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm, \ |
|
25042 | 304 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \ |
305 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \ |
|
306 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \ |
|
307 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1, \ |
|
308 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \ |
|
309 |
linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC, \ |
|
310 |
linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
311 |
linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC, \ |
|
312 |
linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS, \ |
|
313 |
linux_i586_2.6-{product|fastdebug}-c1-jbb_G1, \ |
|
314 |
linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC |
|
315 |
||
316 |
my.test.targets.hotspot.linux.x64= \ |
|
317 |
linux_x64_2.6-{product|fastdebug}-c2-jvm98, \ |
|
318 |
linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
319 |
linux_x64_2.6-{product|fastdebug}-c2-scimark, \ |
|
320 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
|
321 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
322 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
323 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1, \ |
|
324 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC, \ |
|
325 |
linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
326 |
linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC, \ |
|
327 |
linux_x64_2.6-{product|fastdebug}-c2-jbb_G1, \ |
|
328 |
linux_x64_2.6-{product|fastdebug}-c2-jbb_ParOldGC |
|
22031 | 329 |
|
25042 | 330 |
my.test.targets.hotspot.macosx.x64= \ |
331 |
macosx_x64_10.7-{product|fastdebug}-c2-jvm98, \ |
|
332 |
macosx_x64_10.7-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
333 |
macosx_x64_10.7-{product|fastdebug}-c2-scimark, \ |
|
334 |
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
|
335 |
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
336 |
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
337 |
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_G1, \ |
|
338 |
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParOldGC, \ |
|
339 |
macosx_x64_10.7-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
340 |
macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParallelGC, \ |
|
341 |
macosx_x64_10.7-{product|fastdebug}-c2-jbb_G1, \ |
|
342 |
macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParOldGC |
|
343 |
||
344 |
my.test.targets.hotspot.windows.i586= \ |
|
345 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-jvm98, \ |
|
346 |
windows_i586_6.1-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
347 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-scimark, \ |
|
25705 | 348 |
windows_i586_6.1-product-{c1|c2}-runThese8, \ |
349 |
windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_lang, \ |
|
350 |
windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_vm, \ |
|
351 |
windows_i586_6.1-fastdebug-c1-runThese8_Xshare, \ |
|
25042 | 352 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \ |
353 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \ |
|
354 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \ |
|
355 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_G1, \ |
|
356 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \ |
|
357 |
windows_i586_6.1-{product|fastdebug}-{c1|c2}-jbb_default, \ |
|
358 |
windows_i586_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
359 |
windows_i586_6.1-product-{c1|c2}-jbb_ParallelGC, \ |
|
360 |
windows_i586_6.1-product-{c1|c2}-jbb_CMS, \ |
|
361 |
windows_i586_6.1-product-{c1|c2}-jbb_G1, \ |
|
362 |
windows_i586_6.1-product-{c1|c2}-jbb_ParOldGC |
|
22031 | 363 |
|
25042 | 364 |
my.test.targets.hotspot.windows.x64= \ |
365 |
windows_x64_6.1-{product|fastdebug}-c2-jvm98, \ |
|
366 |
windows_x64_6.1-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
367 |
windows_x64_6.1-{product|fastdebug}-c2-scimark, \ |
|
25705 | 368 |
windows_x64_6.1-product-c2-runThese8, \ |
369 |
windows_x64_6.1-product-c2-runThese8_Xcomp_lang, \ |
|
370 |
windows_x64_6.1-product-c2-runThese8_Xcomp_vm, \ |
|
25042 | 371 |
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
372 |
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
373 |
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
374 |
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_G1, \ |
|
375 |
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParOldGC, \ |
|
376 |
windows_x64_6.1-{product|fastdebug}-c2-jbb_default, \ |
|
377 |
windows_x64_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \ |
|
378 |
windows_x64_6.1-product-c2-jbb_CMS, \ |
|
379 |
windows_x64_6.1-product-c2-jbb_ParallelGC, \ |
|
380 |
windows_x64_6.1-product-c2-jbb_G1, \ |
|
381 |
windows_x64_6.1-product-c2-jbb_ParOldGC |
|
382 |
||
383 |
# Some basic "smoke" tests for OpenJDK builds |
|
384 |
my.test.targets.hotspot.open= \ |
|
385 |
solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98, \ |
|
386 |
linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98 |
|
387 |
||
388 |
# The complete list of test targets for jprt |
|
389 |
my.test.targets.hotspot= \ |
|
390 |
${my.test.targets.hotspot.open}, \ |
|
391 |
${my.test.targets.hotspot.solaris.sparcv9}, \ |
|
392 |
${my.test.targets.hotspot.solaris.x64}, \ |
|
393 |
${my.test.targets.hotspot.linux.i586}, \ |
|
394 |
${my.test.targets.hotspot.linux.x64}, \ |
|
395 |
${my.test.targets.hotspot.macosx.x64}, \ |
|
396 |
${my.test.targets.hotspot.windows.i586}, \ |
|
397 |
${my.test.targets.hotspot.windows.x64}, \ |
|
398 |
${my.test.targets.hotspot.solaris.sparcv9}, \ |
|
399 |
${my.test.targets.hotspot.solaris.x64}, \ |
|
400 |
${my.test.targets.hotspot.linux.x64}, \ |
|
401 |
${my.test.targets.hotspot.windows.i586}, \ |
|
402 |
${my.test.targets.hotspot.windows.x64}, \ |
|
403 |
${my.additional.test.targets.hotspot} |
|
404 |
||
405 |
||
406 |
# Make file based test targets |
|
407 |
||
408 |
my.make.rule.test.targets.hotspot.clienttests= \ |
|
409 |
linux_i586_2.6-*-c1-hotspot_clienttest, \ |
|
410 |
windows_i586_6.1-*-c1-hotspot_clienttest |
|
411 |
||
412 |
my.make.rule.test.targets.hotspot.servertests= \ |
|
413 |
solaris_sparcv9_5.11-*-c2-hotspot_servertest, \ |
|
414 |
solaris_x64_5.11-*-c2-hotspot_servertest, \ |
|
415 |
linux_i586_2.6-*-c2-hotspot_servertest, \ |
|
416 |
linux_x64_2.6-*-c2-hotspot_servertest, \ |
|
417 |
macosx_x64_10.7-*-c2-hotspot_servertest, \ |
|
418 |
windows_i586_6.1-*-c2-hotspot_servertest, \ |
|
419 |
windows_x64_6.1-*-c2-hotspot_servertest |
|
420 |
||
421 |
my.make.rule.test.targets.hotspot.internalvmtests= \ |
|
422 |
solaris_sparcv9_5.11-fastdebug-c2-hotspot_internalvmtests, \ |
|
423 |
solaris_x64_5.11-fastdebug-c2-hotspot_internalvmtests, \ |
|
424 |
linux_i586_2.6-fastdebug-c2-hotspot_internalvmtests, \ |
|
425 |
linux_x64_2.6-fastdebug-c2-hotspot_internalvmtests, \ |
|
426 |
macosx_x64_10.7-fastdebug-c2-hotspot_internalvmtests, \ |
|
427 |
windows_i586_6.1-fastdebug-c2-hotspot_internalvmtests, \ |
|
428 |
windows_x64_6.1-fastdebug-c2-hotspot_internalvmtests |
|
429 |
||
26122
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
430 |
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
|
431 |
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
|
432 |
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
|
433 |
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
|
434 |
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
|
435 |
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
|
436 |
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
|
437 |
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
|
438 |
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
|
439 |
windows_i586_6.1-fastdebug-c1-GROUP |
25042 | 440 |
|
25615 | 441 |
my.make.rule.test.targets.hotspot= \ |
442 |
${my.make.rule.test.targets.hotspot.clienttests}, \ |
|
443 |
${my.make.rule.test.targets.hotspot.servertests}, \ |
|
444 |
${my.make.rule.test.targets.hotspot.internalvmtests}, \ |
|
445 |
${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
|
446 |
${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
|
447 |
${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
|
448 |
${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
|
449 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed}, \ |
25615 | 450 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc}, \ |
28347
c9619558f413
8067676: Add applicable closed gc jtreg tests to run in JPRT
brutisso
parents:
28006
diff
changeset
|
451 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed}, \ |
28348 | 452 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_gcold}, \ |
26122
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
453 |
${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
|
454 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime_closed}, \ |
25615 | 455 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability}, \ |
27597
1fb6ebaa4f9d
8064799: [TESTBUG] JT-Reg Serviceability tests to be run as part of JPRT submit job
miauno
parents:
26790
diff
changeset
|
456 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity}, \ |
25042 | 457 |
${my.additional.make.rule.test.targets.hotspot} |