author | smarks |
Tue, 04 Aug 2015 14:45:38 -0700 | |
changeset 32017 | f58d32041dd8 |
parent 31766 | 3f6852163e6d |
child 33935 | 32c3292b80db |
child 33029 | 06a8c5e5959b |
child 33033 | 74889aa3f5af |
permissions | -rw-r--r-- |
0 | 1 |
# |
29063
42142426273c
8073231: Add convenient way of adding custom configure options to jprt
ihse
parents:
28348
diff
changeset
|
2 |
# Copyright (c) 2006, 2015, 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 |
|
30080
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
31 |
# Install test bundle for targets in jprt.test.bundle.targets set |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
32 |
jprt.selective.test.bundle.installation=true |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29063
diff
changeset
|
33 |
|
25042 | 34 |
# The current release name |
22032 | 35 |
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
|
36 |
|
25042 | 37 |
# Check if this is the equivalent of a hotspot push job |
38 |
# Interpret -testset hotspot to mean exactly that |
|
39 |
my.is.hotspot.job.hotspot=true |
|
40 |
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
|
41 |
|
25042 | 42 |
# Disable syncing the source after builds and tests are done |
43 |
jprt.sync.push=${my.is.hotspot.job ? false : true} |
|
4947 | 44 |
|
6243
bc2db16c1a2a
6982946: Change make/jprt.properties to defer to JPRT itself for jdk platform list
ohair
parents:
5499
diff
changeset
|
45 |
# Directories to be excluded from the source bundles |
4947 | 46 |
jprt.bundle.exclude.src.dirs=build dist webrev |
47 |
||
25042 | 48 |
# Use configure when building |
22031 | 49 |
jprt.build.use.configure=true |
25042 | 50 |
|
30087 | 51 |
# Set up the run flavors (jvm variants) |
52 |
jprt.run.flavors=c1,c2,default,${my.additional.run.flavors} |
|
53 |
||
25042 | 54 |
# Set make target to use for different build flavors |
55 |
jprt.build.flavor.debugOpen.target=jprt_bundle |
|
56 |
jprt.build.flavor.fastdebug.target=jprt_bundle |
|
22031 | 57 |
jprt.build.flavor.product.target=jprt_bundle |
25042 | 58 |
jprt.build.flavor.productOpen.target=jprt_bundle |
27588 | 59 |
jprt.build.flavor.optimized.target=jprt_bundle |
60 |
jprt.build.flavor.optimizedOpen.target=jprt_bundle |
|
25042 | 61 |
|
62 |
# Use these configure args to define debug level |
|
63 |
jprt.debug.build.configure.args=--with-debug-level=slowdebug |
|
31576
e9ea6d99c16c
8076581: Need a NON-PCH build to quickly detect missing dependencies in the source base
dholmes
parents:
31575
diff
changeset
|
64 |
jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug --disable-precompiled-headers |
25042 | 65 |
jprt.product.build.configure.args=--with-debug-level=release |
27588 | 66 |
jprt.optimized.build.configure.args=--with-debug-level=optimized |
25042 | 67 |
jprt.debugOpen.build.configure.args=${jprt.debug.build.configure.args} --enable-openjdk-only |
68 |
jprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args} --enable-openjdk-only |
|
69 |
jprt.productOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only |
|
27588 | 70 |
jprt.optimizedOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only |
25042 | 71 |
|
72 |
# Select build flavors and build targets |
|
73 |
jprt.build.flavors=${my.is.hotspot.job ? ${my.build.flavors.hotspot} : ${my.build.flavors.default}} |
|
74 |
jprt.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" |
|
77 |
jprt.test.targets=${my.test.targets.${jprt.test.set}} |
|
78 |
jprt.make.rule.test.targets=${my.make.rule.test.targets.${jprt.test.set}} |
|
30080
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
79 |
jprt.test.bundle.targets=${my.jprt.test.bundle.targets.${jprt.test.set}} |
25042 | 80 |
|
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 |
|
83 |
jprt.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 |
|
92 |
jprt.build.configure.args= \ |
|
25854 | 93 |
--with-output-sync=recurse \ |
94 |
--with-boot-jdk=$ALT_BOOTDIR \ |
|
95 |
--with-jobs=$ALT_PARALLEL_COMPILE_JOBS \ |
|
29063
42142426273c
8073231: Add convenient way of adding custom configure options to jprt
ihse
parents:
28348
diff
changeset
|
96 |
${my.additional.build.configure.args.${jprt.test.set}} \ |
42142426273c
8073231: Add convenient way of adding custom configure options to jprt
ihse
parents:
28348
diff
changeset
|
97 |
${my.custom.build.configure.args} |
25042 | 98 |
|
99 |
# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly |
|
100 |
jprt.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 |
|
105 |
my.i586.default.build.configure.args= \ |
|
106 |
--with-jvm-variants=client,server |
|
107 |
jprt.i586.debug.build.configure.args= \ |
|
108 |
${my.i586.default.build.configure.args} \ |
|
109 |
${jprt.debug.build.configure.args} |
|
110 |
jprt.i586.fastdebug.build.configure.args= \ |
|
111 |
${my.i586.default.build.configure.args} \ |
|
112 |
${jprt.fastdebug.build.configure.args} |
|
113 |
jprt.i586.product.build.configure.args= \ |
|
114 |
${my.i586.default.build.configure.args} \ |
|
115 |
${jprt.product.build.configure.args} |
|
116 |
jprt.i586.debugOpen.build.configure.args= \ |
|
117 |
${my.i586.default.build.configure.args} \ |
|
118 |
${jprt.debugOpen.build.configure.args} |
|
119 |
jprt.i586.fastdebugOpen.build.configure.args= \ |
|
120 |
${my.i586.default.build.configure.args} \ |
|
121 |
${jprt.fastdebugOpen.build.configure.args} |
|
122 |
jprt.i586.productOpen.build.configure.args= \ |
|
123 |
${my.i586.default.build.configure.args} \ |
|
31766
3f6852163e6d
8131128: Merge error in jprt.properties leads to missing devkit argument
dcubed
parents:
31576
diff
changeset
|
124 |
${jprt.productOpen.build.configure.args} |
3f6852163e6d
8131128: Merge error in jprt.properties leads to missing devkit argument
dcubed
parents:
31576
diff
changeset
|
125 |
jprt.windows_i586.build.configure.args= \ |
3f6852163e6d
8131128: Merge error in jprt.properties leads to missing devkit argument
dcubed
parents:
31576
diff
changeset
|
126 |
--with-devkit=$VS2013_HOME \ |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
127 |
${jprt.i586.build.configure.args} |
31766
3f6852163e6d
8131128: Merge error in jprt.properties leads to missing devkit argument
dcubed
parents:
31576
diff
changeset
|
128 |
jprt.windows_x64.build.configure.args= \ |
31306
1755c790b94f
8129969: Switch JPRT configuration to use devkits for Windows and Macosx
erikj
parents:
30545
diff
changeset
|
129 |
--with-devkit=$VS2013_HOME |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
130 |
|
25042 | 131 |
######## |
132 |
# |
|
133 |
# Build targets and options (default/jdk) |
|
134 |
# |
|
135 |
||
136 |
# The default build flavors |
|
137 |
my.build.flavors.default=fastdebug,product |
|
138 |
||
139 |
# Standard list of jprt build targets for this source tree |
|
140 |
my.build.targets.default= \ |
|
141 |
solaris_sparcv9_5.11-{product|fastdebug}, \ |
|
142 |
solaris_x64_5.11-{product|fastdebug}, \ |
|
143 |
linux_i586_2.6-{product|fastdebug}, \ |
|
144 |
linux_x64_2.6-{product|fastdebug}, \ |
|
29669
d3148063d225
8061346: Source changes needed to build JDK 9 with Mac OS9 'Maverics' and clang/Xcode 5.1.1
tbell
parents:
29156
diff
changeset
|
145 |
macosx_x64_10.9-{product|fastdebug}, \ |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
146 |
windows_i586_6.2-{product|fastdebug}, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
147 |
windows_x64_6.2-{product|fastdebug} |
25042 | 148 |
|
149 |
# Test target list (no fastdebug & limited c2 testing) |
|
150 |
my.test.target.set= \ |
|
151 |
solaris_sparcv9_5.11-product-c2-TESTNAME, \ |
|
152 |
solaris_x64_5.11-product-c2-TESTNAME, \ |
|
153 |
linux_i586_2.6-product-{c1|c2}-TESTNAME, \ |
|
154 |
linux_x64_2.6-product-c2-TESTNAME, \ |
|
29669
d3148063d225
8061346: Source changes needed to build JDK 9 with Mac OS9 'Maverics' and clang/Xcode 5.1.1
tbell
parents:
29156
diff
changeset
|
155 |
macosx_x64_10.9-product-c2-TESTNAME, \ |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
156 |
windows_i586_6.2-product-c1-TESTNAME, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
157 |
windows_x64_6.2-product-c2-TESTNAME |
25042 | 158 |
|
159 |
# Default vm test targets (testset=default) |
|
160 |
my.test.targets.default= \ |
|
161 |
${my.test.target.set:TESTNAME=jvm98}, \ |
|
162 |
${my.test.target.set:TESTNAME=scimark} |
|
163 |
||
164 |
# Default jdk test targets (testset=default) |
|
165 |
my.make.rule.test.targets.default= \ |
|
166 |
${my.test.target.set:TESTNAME=langtools_jtreg}, \ |
|
167 |
${my.test.target.set:TESTNAME=jdk_lang}, \ |
|
168 |
${my.test.target.set:TESTNAME=jdk_math}, \ |
|
169 |
${my.test.target.set:TESTNAME=jdk_util} |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27588
diff
changeset
|
170 |
|
25042 | 171 |
# Default vm test targets (testset=core) |
172 |
my.test.targets.core= |
|
173 |
||
174 |
# Core jdk test targets (testset=core) |
|
175 |
my.make.rule.test.targets.core= \ |
|
176 |
${my.test.target.set:TESTNAME=jdk_lang}, \ |
|
177 |
${my.test.target.set:TESTNAME=jdk_math}, \ |
|
178 |
${my.test.target.set:TESTNAME=jdk_util}, \ |
|
179 |
${my.test.target.set:TESTNAME=jdk_io}, \ |
|
180 |
${my.test.target.set:TESTNAME=jdk_net}, \ |
|
181 |
${my.test.target.set:TESTNAME=jdk_nio}, \ |
|
182 |
${my.test.target.set:TESTNAME=jdk_security1}, \ |
|
183 |
${my.test.target.set:TESTNAME=jdk_security2}, \ |
|
184 |
${my.test.target.set:TESTNAME=jdk_security3}, \ |
|
26401
8056c9157546
8057813: Alterations to jdk_security3 test target
coffeys
parents:
26125
diff
changeset
|
185 |
${my.test.target.set:TESTNAME=jdk_security4}, \ |
25042 | 186 |
${my.test.target.set:TESTNAME=jdk_rmi}, \ |
187 |
${my.test.target.set:TESTNAME=jdk_text}, \ |
|
188 |
${my.test.target.set:TESTNAME=jdk_time}, \ |
|
189 |
${my.test.target.set:TESTNAME=jdk_other}, \ |
|
190 |
${my.test.target.set:TESTNAME=core_tools} |
|
191 |
||
192 |
# Svc vm test targets (testset=svc) |
|
193 |
my.test.targets.svc= |
|
194 |
||
195 |
# Core jdk test targets (testset=svc) |
|
196 |
my.make.rule.test.targets.svc= \ |
|
197 |
${my.test.target.set:TESTNAME=jdk_management}, \ |
|
198 |
${my.test.target.set:TESTNAME=jdk_instrument}, \ |
|
199 |
${my.test.target.set:TESTNAME=jdk_jmx}, \ |
|
200 |
${my.test.target.set:TESTNAME=jdk_jdi}, \ |
|
27560 | 201 |
${my.test.target.set:TESTNAME=svc_tools}, \ |
202 |
${my.make.rule.test.targets.svc.extra} |
|
25042 | 203 |
|
28006
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
204 |
# JAXP vm test targets (testset=jaxp) |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
205 |
my.test.targets.jaxp= |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
206 |
|
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
207 |
# JAXP test targets (testset=jaxp) |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
208 |
my.make.rule.test.targets.jaxp= \ |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
209 |
${my.test.target.set:TESTNAME=jaxp_all} |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
210 |
|
25042 | 211 |
# All vm test targets (testset=all) |
212 |
my.test.targets.all= \ |
|
213 |
${my.test.targets.default}, \ |
|
214 |
${my.test.target.set:TESTNAME=runThese}, \ |
|
215 |
${my.test.target.set:TESTNAME=jbb_default} |
|
216 |
||
217 |
# All jdk test targets (testset=all) |
|
218 |
my.make.rule.test.targets.all= \ |
|
219 |
${my.make.rule.test.targets.core}, \ |
|
220 |
${my.make.rule.test.targets.svc}, \ |
|
221 |
${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
|
222 |
${my.test.target.set:TESTNAME=jdk_beans}, \ |
25042 | 223 |
${my.test.target.set:TESTNAME=jdk_sound}, \ |
224 |
${my.test.target.set:TESTNAME=jdk_swing} |
|
225 |
||
226 |
# PIT vm test targets (testset=pit) |
|
227 |
my.test.targets.pit= \ |
|
228 |
${my.test.targets.all} |
|
229 |
||
230 |
# PIT jdk test targets (testset=pit) |
|
231 |
my.make.rule.test.targets.pit= \ |
|
232 |
${my.test.target.set:TESTNAME=langtools_jtreg}, \ |
|
233 |
${my.make.rule.test.targets.core}, \ |
|
28006
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
234 |
${my.make.rule.test.targets.svc} \ |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
235 |
${my.make.rule.test.targets.jaxp} |
25042 | 236 |
|
237 |
# JCK test targets in test/Makefile (no windows) |
|
238 |
my.test.target.set.jck= \ |
|
239 |
solaris_sparcv9_5.11-product-c2-JCK7TESTRULE, \ |
|
240 |
solaris_x64_5.11-product-c2-JCK7TESTRULE, \ |
|
241 |
linux_i586_2.6-product-c1-JCK7TESTRULE, \ |
|
242 |
linux_x64_2.6-product-c2-JCK7TESTRULE |
|
243 |
||
244 |
# JCK testset targets |
|
245 |
my.make.rule.test.targets.jck= \ |
|
246 |
${my.test.target.set.jck:JCK7TESTRULE=jck7devtools}, \ |
|
247 |
${my.test.target.set.jck:JCK7TESTRULE=jck7runtime}, \ |
|
248 |
${my.test.target.set.jck:JCK7TESTRULE=jck7compiler} |
|
249 |
||
250 |
||
251 |
############# |
|
252 |
# |
|
253 |
# Hotspot related settings (testset=hotspot) |
|
254 |
# |
|
255 |
||
256 |
# The hotspot build flavors |
|
257 |
my.build.flavors.hotspot= \ |
|
27588 | 258 |
debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \ |
25042 | 259 |
${my.additional.build.flavors.hotspot} |
260 |
||
261 |
# Platforms built for hotspot push jobs |
|
262 |
my.build.targets.hotspot= \ |
|
27588 | 263 |
solaris_sparcv9_5.11-{product|fastdebug}, \ |
25042 | 264 |
solaris_x64_5.11-{product|fastdebug}, \ |
265 |
linux_i586_2.6-{product|fastdebug}, \ |
|
27588 | 266 |
linux_x64_2.6-{product|fastdebug}, \ |
29669
d3148063d225
8061346: Source changes needed to build JDK 9 with Mac OS9 'Maverics' and clang/Xcode 5.1.1
tbell
parents:
29156
diff
changeset
|
267 |
macosx_x64_10.9-{product|fastdebug}, \ |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
268 |
windows_i586_6.2-{product|fastdebug}, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
269 |
windows_x64_6.2-{product|fastdebug}, \ |
25042 | 270 |
solaris_x64_5.11-{debugOpen}, \ |
271 |
linux_x64_2.6-{productOpen}, \ |
|
272 |
${my.additional.build.targets.hotspot} |
|
22031 | 273 |
|
25042 | 274 |
# Tests to run on the various platforms for hotspot push jobs |
275 |
my.test.targets.hotspot.solaris.sparcv9= \ |
|
276 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98, \ |
|
277 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
278 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark, \ |
|
25705 | 279 |
solaris_sparcv9_5.11-product-c2-runThese8, \ |
25042 | 280 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
281 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
282 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
31569 | 283 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1 |
25042 | 284 |
|
285 |
my.test.targets.hotspot.solaris.x64= \ |
|
286 |
solaris_x64_5.11-{product|fastdebug}-c2-jvm98, \ |
|
287 |
solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
288 |
solaris_x64_5.11-{product|fastdebug}-c2-scimark, \ |
|
25705 | 289 |
solaris_x64_5.11-product-c2-runThese8, \ |
290 |
solaris_x64_5.11-product-c2-runThese8_Xcomp_lang, \ |
|
291 |
solaris_x64_5.11-product-c2-runThese8_Xcomp_vm, \ |
|
25042 | 292 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
293 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
294 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
31569 | 295 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1 |
25042 | 296 |
|
297 |
my.test.targets.hotspot.linux.i586= \ |
|
298 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98, \ |
|
299 |
linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
300 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark, \ |
|
25705 | 301 |
linux_i586_2.6-product-c1-runThese8_Xcomp_lang, \ |
302 |
linux_i586_2.6-product-c1-runThese8_Xcomp_vm, \ |
|
303 |
linux_i586_2.6-fastdebug-c1-runThese8_Xshare, \ |
|
304 |
linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang, \ |
|
305 |
linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm, \ |
|
25042 | 306 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \ |
307 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \ |
|
308 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \ |
|
31569 | 309 |
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1 |
25042 | 310 |
|
311 |
my.test.targets.hotspot.linux.x64= \ |
|
312 |
linux_x64_2.6-{product|fastdebug}-c2-jvm98, \ |
|
313 |
linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
314 |
linux_x64_2.6-{product|fastdebug}-c2-scimark, \ |
|
315 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
|
316 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
317 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
31569 | 318 |
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1 |
22031 | 319 |
|
25042 | 320 |
my.test.targets.hotspot.macosx.x64= \ |
29669
d3148063d225
8061346: Source changes needed to build JDK 9 with Mac OS9 'Maverics' and clang/Xcode 5.1.1
tbell
parents:
29156
diff
changeset
|
321 |
macosx_x64_10.9-{product|fastdebug}-c2-jvm98, \ |
d3148063d225
8061346: Source changes needed to build JDK 9 with Mac OS9 'Maverics' and clang/Xcode 5.1.1
tbell
parents:
29156
diff
changeset
|
322 |
macosx_x64_10.9-{product|fastdebug}-c2-jvm98_nontiered, \ |
d3148063d225
8061346: Source changes needed to build JDK 9 with Mac OS9 'Maverics' and clang/Xcode 5.1.1
tbell
parents:
29156
diff
changeset
|
323 |
macosx_x64_10.9-{product|fastdebug}-c2-scimark, \ |
d3148063d225
8061346: Source changes needed to build JDK 9 with Mac OS9 'Maverics' and clang/Xcode 5.1.1
tbell
parents:
29156
diff
changeset
|
324 |
macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
d3148063d225
8061346: Source changes needed to build JDK 9 with Mac OS9 'Maverics' and clang/Xcode 5.1.1
tbell
parents:
29156
diff
changeset
|
325 |
macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
d3148063d225
8061346: Source changes needed to build JDK 9 with Mac OS9 'Maverics' and clang/Xcode 5.1.1
tbell
parents:
29156
diff
changeset
|
326 |
macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_CMS, \ |
31569 | 327 |
macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_G1 |
25042 | 328 |
|
329 |
my.test.targets.hotspot.windows.i586= \ |
|
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
330 |
windows_i586_6.2-{product|fastdebug}-{c1|c2}-jvm98, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
331 |
windows_i586_6.2-{product|fastdebug}-c2-jvm98_nontiered, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
332 |
windows_i586_6.2-{product|fastdebug}-{c1|c2}-scimark, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
333 |
windows_i586_6.2-product-{c1|c2}-runThese8, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
334 |
windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_lang, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
335 |
windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_vm, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
336 |
windows_i586_6.2-fastdebug-c1-runThese8_Xshare, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
337 |
windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
338 |
windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
339 |
windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \ |
31569 | 340 |
windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_G1 |
22031 | 341 |
|
25042 | 342 |
my.test.targets.hotspot.windows.x64= \ |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
343 |
windows_x64_6.2-{product|fastdebug}-c2-jvm98, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
344 |
windows_x64_6.2-{product|fastdebug}-c2-jvm98_nontiered, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
345 |
windows_x64_6.2-{product|fastdebug}-c2-scimark, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
346 |
windows_x64_6.2-product-c2-runThese8, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
347 |
windows_x64_6.2-product-c2-runThese8_Xcomp_lang, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
348 |
windows_x64_6.2-product-c2-runThese8_Xcomp_vm, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
349 |
windows_x64_6.2-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
350 |
windows_x64_6.2-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
351 |
windows_x64_6.2-{product|fastdebug}-c2-GCBasher_CMS, \ |
31569 | 352 |
windows_x64_6.2-{product|fastdebug}-c2-GCBasher_G1 |
25042 | 353 |
|
354 |
# Some basic "smoke" tests for OpenJDK builds |
|
355 |
my.test.targets.hotspot.open= \ |
|
356 |
solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98, \ |
|
357 |
linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98 |
|
358 |
||
359 |
# The complete list of test targets for jprt |
|
360 |
my.test.targets.hotspot= \ |
|
361 |
${my.test.targets.hotspot.open}, \ |
|
362 |
${my.test.targets.hotspot.solaris.sparcv9}, \ |
|
363 |
${my.test.targets.hotspot.solaris.x64}, \ |
|
364 |
${my.test.targets.hotspot.linux.i586}, \ |
|
365 |
${my.test.targets.hotspot.linux.x64}, \ |
|
366 |
${my.test.targets.hotspot.macosx.x64}, \ |
|
367 |
${my.test.targets.hotspot.windows.i586}, \ |
|
368 |
${my.test.targets.hotspot.windows.x64}, \ |
|
369 |
${my.test.targets.hotspot.solaris.sparcv9}, \ |
|
370 |
${my.test.targets.hotspot.solaris.x64}, \ |
|
371 |
${my.test.targets.hotspot.linux.x64}, \ |
|
372 |
${my.test.targets.hotspot.windows.i586}, \ |
|
373 |
${my.test.targets.hotspot.windows.x64}, \ |
|
374 |
${my.additional.test.targets.hotspot} |
|
375 |
||
376 |
||
377 |
# Make file based test targets |
|
378 |
||
30087 | 379 |
my.make.rule.test.targets.hotspot.basicvmtests= \ |
380 |
linux_i586_2.6-*-default-hotspot_basicvmtest, \ |
|
381 |
linux_x64_2.6-*-default-hotspot_basicvmtest, \ |
|
382 |
macosx_x64_10.9-*-default-hotspot_basicvmtest, \ |
|
383 |
solaris_sparcv9_5.11-*-default-hotspot_basicvmtest, \ |
|
384 |
solaris_x64_5.11-*-default-hotspot_basicvmtest, \ |
|
30091 | 385 |
windows_i586_6.2-*-default-hotspot_basicvmtest, \ |
386 |
windows_x64_6.2-*-default-hotspot_basicvmtest |
|
30087 | 387 |
|
26122
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
388 |
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
|
389 |
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
|
390 |
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
|
391 |
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
|
392 |
linux_x64_2.6-fastdebug-c2-GROUP, \ |
29669
d3148063d225
8061346: Source changes needed to build JDK 9 with Mac OS9 'Maverics' and clang/Xcode 5.1.1
tbell
parents:
29156
diff
changeset
|
393 |
macosx_x64_10.9-fastdebug-c2-GROUP, \ |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
394 |
windows_i586_6.2-fastdebug-c2-GROUP, \ |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
395 |
windows_x64_6.2-fastdebug-c2-GROUP, \ |
26122
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
396 |
linux_i586_2.6-fastdebug-c1-GROUP, \ |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
397 |
windows_i586_6.2-fastdebug-c1-GROUP |
25042 | 398 |
|
30080
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
399 |
# Hotspot jtreg tests |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
400 |
my.make.rule.test.targets.hotspot.reg= \ |
26790
d0a247d1f2a8
8058863: jdk9/hs-comp fails in jprt with "-testset hotspot" from top-level
sla
parents:
26401
diff
changeset
|
401 |
${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
|
402 |
${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
|
403 |
${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
|
404 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed}, \ |
25615 | 405 |
${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
|
406 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed}, \ |
28348 | 407 |
${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
|
408 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime}, \ |
25615 | 409 |
${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
|
410 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity}, \ |
30080
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
411 |
${my.additional.make.rule.test.targets.hotspot.reg} |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
412 |
|
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
413 |
# Other Makefile based Hotspot tests |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
414 |
my.make.rule.test.targets.hotspot.other= \ |
30087 | 415 |
${my.make.rule.test.targets.hotspot.basicvmtests}, \ |
30080
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
416 |
${my.additional.make.rule.test.targets.hotspot.other} |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
417 |
|
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
418 |
# All the makefile based tests to run |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
419 |
my.make.rule.test.targets.hotspot= \ |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
420 |
${my.make.rule.test.targets.hotspot.reg} \ |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
421 |
${my.make.rule.test.targets.hotspot.other} |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
422 |
|
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
423 |
# Install the test bundle for the testset hotspot jtreg tests |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
424 |
# (but not for the other Makefile based tests) |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
425 |
my.jprt.test.bundle.targets.hotspot=${my.make.rule.test.targets.hotspot.reg} |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29063
diff
changeset
|
426 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29063
diff
changeset
|
427 |
# Native jdk and hotspot test targets (testset=nativesanity) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29063
diff
changeset
|
428 |
my.make.rule.test.targets.nativesanity= \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29063
diff
changeset
|
429 |
${my.test.target.set:TESTNAME=jdk_native_sanity}, \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29063
diff
changeset
|
430 |
${my.test.target.set:TESTNAME=hotspot_native_sanity} |
30080
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
431 |
|
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
432 |
# Install the test bundle for the nativesanity jtreg tests |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
433 |
my.jprt.test.bundle.targets.nativesanity=${my.make.rule.test.targets.nativesanity} |