author | vlivanov |
Fri, 19 Feb 2016 20:40:20 +0300 | |
changeset 36300 | 5b47f168b948 |
parent 35037 | 0798876d7dd5 |
child 35748 | c4b6c7386de8 |
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 |
|
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
37 |
# Allow concurrent changes to be merged in prior to pushing |
35023
ee10ca0129b2
8145828: JPRT hotspot push jobs should allow merge on push
mikael
parents:
34600
diff
changeset
|
38 |
jprt.sync.push=true |
4947 | 39 |
|
6243
bc2db16c1a2a
6982946: Change make/jprt.properties to defer to JPRT itself for jdk platform list
ohair
parents:
5499
diff
changeset
|
40 |
# Directories to be excluded from the source bundles |
4947 | 41 |
jprt.bundle.exclude.src.dirs=build dist webrev |
42 |
||
25042 | 43 |
# Use configure when building |
22031 | 44 |
jprt.build.use.configure=true |
25042 | 45 |
|
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
46 |
# Disable the need for preinstalled Xcode |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
47 |
jprt.macosx.jdk9.target.attribute.compilerXcode511.appliesTo.builds=none |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
48 |
|
30087 | 49 |
# Set up the run flavors (jvm variants) |
50 |
jprt.run.flavors=c1,c2,default,${my.additional.run.flavors} |
|
51 |
||
25042 | 52 |
# Set make target to use for different build flavors |
53 |
jprt.build.flavor.debugOpen.target=jprt_bundle |
|
54 |
jprt.build.flavor.fastdebug.target=jprt_bundle |
|
22031 | 55 |
jprt.build.flavor.product.target=jprt_bundle |
25042 | 56 |
jprt.build.flavor.productOpen.target=jprt_bundle |
27588 | 57 |
jprt.build.flavor.optimized.target=jprt_bundle |
58 |
jprt.build.flavor.optimizedOpen.target=jprt_bundle |
|
25042 | 59 |
|
60 |
# Use these configure args to define debug level |
|
61 |
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
|
62 |
jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug --disable-precompiled-headers |
25042 | 63 |
jprt.product.build.configure.args=--with-debug-level=release |
27588 | 64 |
jprt.optimized.build.configure.args=--with-debug-level=optimized |
25042 | 65 |
jprt.debugOpen.build.configure.args=${jprt.debug.build.configure.args} --enable-openjdk-only |
66 |
jprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args} --enable-openjdk-only |
|
67 |
jprt.productOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only |
|
27588 | 68 |
jprt.optimizedOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only |
25042 | 69 |
|
34599
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
70 |
|
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
71 |
# hotspot testset has custom build flavors and build targets |
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
72 |
my.jprt.testsetHasCustomBuildFlavors.hotspot=true |
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
73 |
my.jprt.testsetHasCustomBuildTargets.hotspot=true |
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
74 |
|
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
75 |
# determine if the specified testset has custom build flavors or build targets |
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
76 |
my.jprt.testsetHasCustomBuildFlavors=${my.jprt.testsetHasCustomBuildFlavors.${jprt.test.set}} |
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
77 |
my.jprt.testsetHasCustomBuildTargets=${my.jprt.testsetHasCustomBuildTargets.${jprt.test.set}} |
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
78 |
|
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
79 |
# Select build flavors and build targets based on the specified testset |
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
80 |
jprt.build.flavors=${my.jprt.testsetHasCustomBuildFlavors ? \ |
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
81 |
${my.build.flavors.${jprt.test.set}} : ${my.build.flavors.default}} |
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
82 |
jprt.build.targets=${my.jprt.testsetHasCustomBuildTargets ? \ |
d4e9a69a3cf8
8144677: jprt.properties should allow creating a user specified testset with custom build flavors and build targets
cjplummer
parents:
33439
diff
changeset
|
83 |
${my.build.targets.${jprt.test.set}} : ${my.build.targets.default}} |
25042 | 84 |
|
85 |
# Select test targets - jprt default for jprt.test.set is "default" |
|
86 |
jprt.test.targets=${my.test.targets.${jprt.test.set}} |
|
87 |
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
|
88 |
jprt.test.bundle.targets=${my.jprt.test.bundle.targets.${jprt.test.set}} |
25042 | 89 |
|
90 |
# 7155453: Work-around to prevent popups on OSX from blocking test completion |
|
91 |
# but the work-around is added to all platforms to be consistent |
|
92 |
jprt.jbb.options=-Djava.awt.headless=true |
|
93 |
||
94 |
######## |
|
95 |
# |
|
96 |
# Build options (generic) |
|
97 |
# |
|
98 |
||
99 |
# Configure args common to all builds |
|
100 |
# Also allows for additional, testset specific configure arguments to be set |
|
101 |
jprt.build.configure.args= \ |
|
33928
d2c9fee88260
8087328: Move debuglevel info in version string from PRE to OPT
erikj
parents:
33926
diff
changeset
|
102 |
--with-output-sync=recurse \ |
d2c9fee88260
8087328: Move debuglevel info in version string from PRE to OPT
erikj
parents:
33926
diff
changeset
|
103 |
--with-boot-jdk=$ALT_BOOTDIR \ |
d2c9fee88260
8087328: Move debuglevel info in version string from PRE to OPT
erikj
parents:
33926
diff
changeset
|
104 |
--with-jobs=$ALT_PARALLEL_COMPILE_JOBS \ |
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
105 |
--with-version-opt=$JPRT_JOB_ID \ |
33952 | 106 |
MAKE=$JPRT_MAKE \ |
29063
42142426273c
8073231: Add convenient way of adding custom configure options to jprt
ihse
parents:
28348
diff
changeset
|
107 |
${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
|
108 |
${my.custom.build.configure.args} |
25042 | 109 |
|
110 |
# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly |
|
111 |
jprt.i586.build.configure.args= \ |
|
112 |
--with-target-bits=32 |
|
113 |
||
114 |
# i586 platforms have both client and server, but to allow for overriding the exact configuration |
|
115 |
# on a per-build flavor basis the value is set for the individual build flavors |
|
116 |
my.i586.default.build.configure.args= \ |
|
117 |
--with-jvm-variants=client,server |
|
118 |
jprt.i586.debug.build.configure.args= \ |
|
119 |
${my.i586.default.build.configure.args} \ |
|
120 |
${jprt.debug.build.configure.args} |
|
121 |
jprt.i586.fastdebug.build.configure.args= \ |
|
122 |
${my.i586.default.build.configure.args} \ |
|
123 |
${jprt.fastdebug.build.configure.args} |
|
124 |
jprt.i586.product.build.configure.args= \ |
|
125 |
${my.i586.default.build.configure.args} \ |
|
126 |
${jprt.product.build.configure.args} |
|
127 |
jprt.i586.debugOpen.build.configure.args= \ |
|
128 |
${my.i586.default.build.configure.args} \ |
|
129 |
${jprt.debugOpen.build.configure.args} |
|
130 |
jprt.i586.fastdebugOpen.build.configure.args= \ |
|
131 |
${my.i586.default.build.configure.args} \ |
|
132 |
${jprt.fastdebugOpen.build.configure.args} |
|
133 |
jprt.i586.productOpen.build.configure.args= \ |
|
134 |
${my.i586.default.build.configure.args} \ |
|
31766
3f6852163e6d
8131128: Merge error in jprt.properties leads to missing devkit argument
dcubed
parents:
31576
diff
changeset
|
135 |
${jprt.productOpen.build.configure.args} |
33029
06a8c5e5959b
8139735: Switch compilers in JPRT for windows and linux
erikj
parents:
31766
diff
changeset
|
136 |
jprt.linux_i586.build.configure.args= \ |
06a8c5e5959b
8139735: Switch compilers in JPRT for windows and linux
erikj
parents:
31766
diff
changeset
|
137 |
--with-devkit=$GCC492_OEL64_HOME \ |
06a8c5e5959b
8139735: Switch compilers in JPRT for windows and linux
erikj
parents:
31766
diff
changeset
|
138 |
${jprt.i586.build.configure.args} |
06a8c5e5959b
8139735: Switch compilers in JPRT for windows and linux
erikj
parents:
31766
diff
changeset
|
139 |
jprt.linux_x64.build.configure.args= \ |
06a8c5e5959b
8139735: Switch compilers in JPRT for windows and linux
erikj
parents:
31766
diff
changeset
|
140 |
--with-devkit=$GCC492_OEL64_HOME |
33439 | 141 |
jprt.macosx_x64.build.configure.args= \ |
142 |
--with-devkit=$XCODE63_MACOSX109_HOME |
|
34595
09596fe63e2d
8145391: Updated jprt.properties, devtools, jib and readme with SS12u4
erikj
parents:
33953
diff
changeset
|
143 |
jprt.solaris.build.configure.args= \ |
09596fe63e2d
8145391: Updated jprt.properties, devtools, jib and readme with SS12u4
erikj
parents:
33953
diff
changeset
|
144 |
--with-devkit=$SS124_11u1_HOME |
31766
3f6852163e6d
8131128: Merge error in jprt.properties leads to missing devkit argument
dcubed
parents:
31576
diff
changeset
|
145 |
jprt.windows_i586.build.configure.args= \ |
33029
06a8c5e5959b
8139735: Switch compilers in JPRT for windows and linux
erikj
parents:
31766
diff
changeset
|
146 |
--with-devkit=$VS2013SP4_HOME \ |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
147 |
${jprt.i586.build.configure.args} |
31766
3f6852163e6d
8131128: Merge error in jprt.properties leads to missing devkit argument
dcubed
parents:
31576
diff
changeset
|
148 |
jprt.windows_x64.build.configure.args= \ |
33029
06a8c5e5959b
8139735: Switch compilers in JPRT for windows and linux
erikj
parents:
31766
diff
changeset
|
149 |
--with-devkit=$VS2013SP4_HOME |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29156
diff
changeset
|
150 |
|
25042 | 151 |
######## |
152 |
# |
|
153 |
# Build targets and options (default/jdk) |
|
154 |
# |
|
155 |
||
156 |
# The default build flavors |
|
157 |
my.build.flavors.default=fastdebug,product |
|
158 |
||
159 |
# Standard list of jprt build targets for this source tree |
|
160 |
my.build.targets.default= \ |
|
161 |
solaris_sparcv9_5.11-{product|fastdebug}, \ |
|
162 |
solaris_x64_5.11-{product|fastdebug}, \ |
|
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
163 |
linux_i586_3.8-{product|fastdebug}, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
164 |
linux_x64_3.8-{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
|
165 |
macosx_x64_10.9-{product|fastdebug}, \ |
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
166 |
windows_i586_6.3-{product|fastdebug}, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
167 |
windows_x64_6.3-{product|fastdebug} |
25042 | 168 |
|
169 |
# Test target list (no fastdebug & limited c2 testing) |
|
170 |
my.test.target.set= \ |
|
171 |
solaris_sparcv9_5.11-product-c2-TESTNAME, \ |
|
172 |
solaris_x64_5.11-product-c2-TESTNAME, \ |
|
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
173 |
linux_i586_3.8-product-{c1|c2}-TESTNAME, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
174 |
linux_x64_3.8-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
|
175 |
macosx_x64_10.9-product-c2-TESTNAME, \ |
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
176 |
windows_i586_6.3-product-c1-TESTNAME, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
177 |
windows_x64_6.3-product-c2-TESTNAME |
25042 | 178 |
|
179 |
# Default vm test targets (testset=default) |
|
180 |
my.test.targets.default= \ |
|
181 |
${my.test.target.set:TESTNAME=jvm98}, \ |
|
182 |
${my.test.target.set:TESTNAME=scimark} |
|
183 |
||
184 |
# Default jdk test targets (testset=default) |
|
185 |
my.make.rule.test.targets.default= \ |
|
186 |
${my.test.target.set:TESTNAME=langtools_jtreg}, \ |
|
187 |
${my.test.target.set:TESTNAME=jdk_lang}, \ |
|
188 |
${my.test.target.set:TESTNAME=jdk_math}, \ |
|
189 |
${my.test.target.set:TESTNAME=jdk_util} |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27588
diff
changeset
|
190 |
|
25042 | 191 |
# Default vm test targets (testset=core) |
192 |
my.test.targets.core= |
|
193 |
||
194 |
# Core jdk test targets (testset=core) |
|
195 |
my.make.rule.test.targets.core= \ |
|
196 |
${my.test.target.set:TESTNAME=jdk_lang}, \ |
|
197 |
${my.test.target.set:TESTNAME=jdk_math}, \ |
|
198 |
${my.test.target.set:TESTNAME=jdk_util}, \ |
|
199 |
${my.test.target.set:TESTNAME=jdk_io}, \ |
|
200 |
${my.test.target.set:TESTNAME=jdk_net}, \ |
|
201 |
${my.test.target.set:TESTNAME=jdk_nio}, \ |
|
202 |
${my.test.target.set:TESTNAME=jdk_security1}, \ |
|
203 |
${my.test.target.set:TESTNAME=jdk_security2}, \ |
|
204 |
${my.test.target.set:TESTNAME=jdk_security3}, \ |
|
26401
8056c9157546
8057813: Alterations to jdk_security3 test target
coffeys
parents:
26125
diff
changeset
|
205 |
${my.test.target.set:TESTNAME=jdk_security4}, \ |
25042 | 206 |
${my.test.target.set:TESTNAME=jdk_rmi}, \ |
207 |
${my.test.target.set:TESTNAME=jdk_text}, \ |
|
208 |
${my.test.target.set:TESTNAME=jdk_time}, \ |
|
209 |
${my.test.target.set:TESTNAME=jdk_other}, \ |
|
210 |
${my.test.target.set:TESTNAME=core_tools} |
|
211 |
||
212 |
# Svc vm test targets (testset=svc) |
|
213 |
my.test.targets.svc= |
|
214 |
||
215 |
# Core jdk test targets (testset=svc) |
|
216 |
my.make.rule.test.targets.svc= \ |
|
217 |
${my.test.target.set:TESTNAME=jdk_management}, \ |
|
218 |
${my.test.target.set:TESTNAME=jdk_instrument}, \ |
|
219 |
${my.test.target.set:TESTNAME=jdk_jmx}, \ |
|
220 |
${my.test.target.set:TESTNAME=jdk_jdi}, \ |
|
27560 | 221 |
${my.test.target.set:TESTNAME=svc_tools}, \ |
222 |
${my.make.rule.test.targets.svc.extra} |
|
25042 | 223 |
|
28006
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
224 |
# JAXP vm test targets (testset=jaxp) |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
225 |
my.test.targets.jaxp= |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
226 |
|
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
227 |
# JAXP test targets (testset=jaxp) |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
228 |
my.make.rule.test.targets.jaxp= \ |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
229 |
${my.test.target.set:TESTNAME=jaxp_all} |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
230 |
|
25042 | 231 |
# All vm test targets (testset=all) |
232 |
my.test.targets.all= \ |
|
233 |
${my.test.targets.default}, \ |
|
234 |
${my.test.target.set:TESTNAME=runThese}, \ |
|
235 |
${my.test.target.set:TESTNAME=jbb_default} |
|
236 |
||
237 |
# All jdk test targets (testset=all) |
|
238 |
my.make.rule.test.targets.all= \ |
|
239 |
${my.make.rule.test.targets.core}, \ |
|
240 |
${my.make.rule.test.targets.svc}, \ |
|
241 |
${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
|
242 |
${my.test.target.set:TESTNAME=jdk_beans}, \ |
25042 | 243 |
${my.test.target.set:TESTNAME=jdk_sound}, \ |
244 |
${my.test.target.set:TESTNAME=jdk_swing} |
|
245 |
||
246 |
# PIT vm test targets (testset=pit) |
|
247 |
my.test.targets.pit= \ |
|
248 |
${my.test.targets.all} |
|
249 |
||
250 |
# PIT jdk test targets (testset=pit) |
|
251 |
my.make.rule.test.targets.pit= \ |
|
252 |
${my.test.target.set:TESTNAME=langtools_jtreg}, \ |
|
253 |
${my.make.rule.test.targets.core}, \ |
|
28006
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
254 |
${my.make.rule.test.targets.svc} \ |
ebad70f3aa9f
8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents:
27869
diff
changeset
|
255 |
${my.make.rule.test.targets.jaxp} |
25042 | 256 |
|
257 |
# JCK test targets in test/Makefile (no windows) |
|
258 |
my.test.target.set.jck= \ |
|
259 |
solaris_sparcv9_5.11-product-c2-JCK7TESTRULE, \ |
|
260 |
solaris_x64_5.11-product-c2-JCK7TESTRULE, \ |
|
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
261 |
linux_i586_3.8-product-c1-JCK7TESTRULE, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
262 |
linux_x64_3.8-product-c2-JCK7TESTRULE |
25042 | 263 |
|
264 |
# JCK testset targets |
|
265 |
my.make.rule.test.targets.jck= \ |
|
266 |
${my.test.target.set.jck:JCK7TESTRULE=jck7devtools}, \ |
|
267 |
${my.test.target.set.jck:JCK7TESTRULE=jck7runtime}, \ |
|
268 |
${my.test.target.set.jck:JCK7TESTRULE=jck7compiler} |
|
269 |
||
270 |
||
271 |
############# |
|
272 |
# |
|
273 |
# Hotspot related settings (testset=hotspot) |
|
274 |
# |
|
275 |
||
276 |
# The hotspot build flavors |
|
277 |
my.build.flavors.hotspot= \ |
|
27588 | 278 |
debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \ |
25042 | 279 |
${my.additional.build.flavors.hotspot} |
280 |
||
281 |
# Platforms built for hotspot push jobs |
|
282 |
my.build.targets.hotspot= \ |
|
27588 | 283 |
solaris_sparcv9_5.11-{product|fastdebug}, \ |
25042 | 284 |
solaris_x64_5.11-{product|fastdebug}, \ |
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
285 |
linux_i586_3.8-{product|fastdebug}, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
286 |
linux_x64_3.8-{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
|
287 |
macosx_x64_10.9-{product|fastdebug}, \ |
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
288 |
windows_i586_6.3-{product|fastdebug}, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
289 |
windows_x64_6.3-{product|fastdebug}, \ |
25042 | 290 |
solaris_x64_5.11-{debugOpen}, \ |
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
291 |
linux_x64_3.8-{productOpen}, \ |
25042 | 292 |
${my.additional.build.targets.hotspot} |
22031 | 293 |
|
25042 | 294 |
# Tests to run on the various platforms for hotspot push jobs |
295 |
my.test.targets.hotspot.solaris.sparcv9= \ |
|
296 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98, \ |
|
297 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
298 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark, \ |
|
25705 | 299 |
solaris_sparcv9_5.11-product-c2-runThese8, \ |
25042 | 300 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
301 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
302 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
31569 | 303 |
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1 |
25042 | 304 |
|
305 |
my.test.targets.hotspot.solaris.x64= \ |
|
306 |
solaris_x64_5.11-{product|fastdebug}-c2-jvm98, \ |
|
307 |
solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered, \ |
|
308 |
solaris_x64_5.11-{product|fastdebug}-c2-scimark, \ |
|
25705 | 309 |
solaris_x64_5.11-product-c2-runThese8, \ |
310 |
solaris_x64_5.11-product-c2-runThese8_Xcomp_lang, \ |
|
311 |
solaris_x64_5.11-product-c2-runThese8_Xcomp_vm, \ |
|
25042 | 312 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
313 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
|
314 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS, \ |
|
31569 | 315 |
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1 |
25042 | 316 |
|
317 |
my.test.targets.hotspot.linux.i586= \ |
|
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
318 |
linux_i586_3.8-{product|fastdebug}-{c1|c2}-jvm98, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
319 |
linux_i586_3.8-{product|fastdebug}-c2-jvm98_nontiered, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
320 |
linux_i586_3.8-{product|fastdebug}-{c1|c2}-scimark, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
321 |
linux_i586_3.8-product-c1-runThese8_Xcomp_lang, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
322 |
linux_i586_3.8-product-c1-runThese8_Xcomp_vm, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
323 |
linux_i586_3.8-fastdebug-c1-runThese8_Xshare, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
324 |
linux_i586_3.8-fastdebug-c2-runThese8_Xcomp_lang, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
325 |
linux_i586_3.8-fastdebug-c2-runThese8_Xcomp_vm, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
326 |
linux_i586_3.8-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
327 |
linux_i586_3.8-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
328 |
linux_i586_3.8-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
329 |
linux_i586_3.8-{product|fastdebug}-{c1|c2}-GCBasher_G1 |
25042 | 330 |
|
331 |
my.test.targets.hotspot.linux.x64= \ |
|
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
332 |
linux_x64_3.8-{product|fastdebug}-c2-jvm98, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
333 |
linux_x64_3.8-{product|fastdebug}-c2-jvm98_nontiered, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
334 |
linux_x64_3.8-{product|fastdebug}-c2-scimark, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
335 |
linux_x64_3.8-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
336 |
linux_x64_3.8-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
337 |
linux_x64_3.8-{product|fastdebug}-c2-GCBasher_CMS, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
338 |
linux_x64_3.8-{product|fastdebug}-c2-GCBasher_G1 |
22031 | 339 |
|
25042 | 340 |
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
|
341 |
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
|
342 |
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
|
343 |
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
|
344 |
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
|
345 |
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
|
346 |
macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_CMS, \ |
31569 | 347 |
macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_G1 |
25042 | 348 |
|
349 |
my.test.targets.hotspot.windows.i586= \ |
|
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
350 |
windows_i586_6.3-{product|fastdebug}-{c1|c2}-jvm98, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
351 |
windows_i586_6.3-{product|fastdebug}-c2-jvm98_nontiered, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
352 |
windows_i586_6.3-{product|fastdebug}-{c1|c2}-scimark, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
353 |
windows_i586_6.3-product-{c1|c2}-runThese8, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
354 |
windows_i586_6.3-product-{c1|c2}-runThese8_Xcomp_lang, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
355 |
windows_i586_6.3-product-{c1|c2}-runThese8_Xcomp_vm, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
356 |
windows_i586_6.3-fastdebug-c1-runThese8_Xshare, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
357 |
windows_i586_6.3-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
358 |
windows_i586_6.3-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
359 |
windows_i586_6.3-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
360 |
windows_i586_6.3-{product|fastdebug}-{c1|c2}-GCBasher_G1 |
22031 | 361 |
|
25042 | 362 |
my.test.targets.hotspot.windows.x64= \ |
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
363 |
windows_x64_6.3-{product|fastdebug}-c2-jvm98, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
364 |
windows_x64_6.3-{product|fastdebug}-c2-jvm98_nontiered, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
365 |
windows_x64_6.3-{product|fastdebug}-c2-scimark, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
366 |
windows_x64_6.3-product-c2-runThese8, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
367 |
windows_x64_6.3-product-c2-runThese8_Xcomp_lang, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
368 |
windows_x64_6.3-product-c2-runThese8_Xcomp_vm, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
369 |
windows_x64_6.3-{product|fastdebug}-c2-GCBasher_SerialGC, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
370 |
windows_x64_6.3-{product|fastdebug}-c2-GCBasher_ParallelGC, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
371 |
windows_x64_6.3-{product|fastdebug}-c2-GCBasher_CMS, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
372 |
windows_x64_6.3-{product|fastdebug}-c2-GCBasher_G1 |
25042 | 373 |
|
374 |
# Some basic "smoke" tests for OpenJDK builds |
|
375 |
my.test.targets.hotspot.open= \ |
|
376 |
solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98, \ |
|
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
377 |
linux_x64_3.8-{productOpen|fastdebugOpen}-c2-jvm98 |
25042 | 378 |
|
379 |
# The complete list of test targets for jprt |
|
380 |
my.test.targets.hotspot= \ |
|
381 |
${my.test.targets.hotspot.open}, \ |
|
382 |
${my.test.targets.hotspot.solaris.sparcv9}, \ |
|
383 |
${my.test.targets.hotspot.solaris.x64}, \ |
|
384 |
${my.test.targets.hotspot.linux.i586}, \ |
|
385 |
${my.test.targets.hotspot.linux.x64}, \ |
|
386 |
${my.test.targets.hotspot.macosx.x64}, \ |
|
387 |
${my.test.targets.hotspot.windows.i586}, \ |
|
388 |
${my.test.targets.hotspot.windows.x64}, \ |
|
389 |
${my.test.targets.hotspot.solaris.sparcv9}, \ |
|
390 |
${my.test.targets.hotspot.solaris.x64}, \ |
|
391 |
${my.test.targets.hotspot.linux.x64}, \ |
|
392 |
${my.test.targets.hotspot.windows.i586}, \ |
|
393 |
${my.test.targets.hotspot.windows.x64}, \ |
|
394 |
${my.additional.test.targets.hotspot} |
|
395 |
||
396 |
||
397 |
# Make file based test targets |
|
398 |
||
30087 | 399 |
my.make.rule.test.targets.hotspot.basicvmtests= \ |
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
400 |
linux_i586_3.8-*-default-hotspot_basicvmtest, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
401 |
linux_x64_3.8-*-default-hotspot_basicvmtest, \ |
30087 | 402 |
macosx_x64_10.9-*-default-hotspot_basicvmtest, \ |
403 |
solaris_sparcv9_5.11-*-default-hotspot_basicvmtest, \ |
|
404 |
solaris_x64_5.11-*-default-hotspot_basicvmtest, \ |
|
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
405 |
windows_i586_6.3-*-default-hotspot_basicvmtest, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
406 |
windows_x64_6.3-*-default-hotspot_basicvmtest |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
407 |
|
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= \ |
e09fcc75f284
8054013: run hotspot JTREG compiler tests only on fastdebug platforms and also on macosx
anoll
parents:
25705
diff
changeset
|
409 |
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
|
410 |
solaris_x64_5.11-fastdebug-c2-GROUP, \ |
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
411 |
linux_i586_3.8-fastdebug-c2-GROUP, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
412 |
linux_x64_3.8-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
|
413 |
macosx_x64_10.9-fastdebug-c2-GROUP, \ |
35037
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
414 |
windows_i586_6.3-fastdebug-c2-GROUP, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
415 |
windows_x64_6.3-fastdebug-c2-GROUP, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
416 |
linux_i586_3.8-fastdebug-c1-GROUP, \ |
0798876d7dd5
8147950: Change JPRT to use new platforms for Linux, Windows and Macosx
erikj
parents:
35025
diff
changeset
|
417 |
windows_i586_6.3-fastdebug-c1-GROUP |
25042 | 418 |
|
30080
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
419 |
# Hotspot jtreg tests |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
420 |
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
|
421 |
${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
|
422 |
${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
|
423 |
${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
|
424 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed}, \ |
25615 | 425 |
${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
|
426 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed}, \ |
28348 | 427 |
${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
|
428 |
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime}, \ |
25615 | 429 |
${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
|
430 |
${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
|
431 |
${my.additional.make.rule.test.targets.hotspot.reg} |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
432 |
|
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
433 |
# Other Makefile based Hotspot tests |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
434 |
my.make.rule.test.targets.hotspot.other= \ |
30087 | 435 |
${my.make.rule.test.targets.hotspot.basicvmtests}, \ |
30080
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
436 |
${my.additional.make.rule.test.targets.hotspot.other} |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
437 |
|
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
438 |
# All the makefile based tests to run |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
439 |
my.make.rule.test.targets.hotspot= \ |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
440 |
${my.make.rule.test.targets.hotspot.reg} \ |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
441 |
${my.make.rule.test.targets.hotspot.other} |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
442 |
|
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
443 |
# 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
|
444 |
# (but not for the other Makefile based tests) |
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
445 |
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
|
446 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29063
diff
changeset
|
447 |
# Native jdk and hotspot test targets (testset=nativesanity) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29063
diff
changeset
|
448 |
my.make.rule.test.targets.nativesanity= \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29063
diff
changeset
|
449 |
${my.test.target.set:TESTNAME=jdk_native_sanity}, \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29063
diff
changeset
|
450 |
${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
|
451 |
|
d1f391a851bc
8077524: Enable selective test bundle installation for jprt test targets
mikael
parents:
29669
diff
changeset
|
452 |
# 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
|
453 |
my.jprt.test.bundle.targets.nativesanity=${my.make.rule.test.targets.nativesanity} |