jprt.properties revision 1833:5825bc3649dd
1#
2# Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved.
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
7# published by the Free Software Foundation.  Oracle designates this
8# particular file as subject to the "Classpath" exception as provided
9# by Oracle in the LICENSE file that accompanied this code.
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#
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.
24#
25
26##############
27#
28# Global settings
29#
30
31# Install test bundle for targets in jprt.test.bundle.targets set
32jprt.selective.test.bundle.installation=true
33
34# The current release name
35jprt.tools.default.release=jdk9
36
37# Check if this is the equivalent of a hotspot push job
38# Interpret -testset hotspot to mean exactly that
39my.is.hotspot.job.hotspot=true
40my.is.hotspot.job=${my.is.hotspot.job.${jprt.test.set}}
41
42# Disable syncing the source after builds and tests are done
43jprt.sync.push=${my.is.hotspot.job ? false : true}
44
45# Directories to be excluded from the source bundles
46jprt.bundle.exclude.src.dirs=build dist webrev
47
48# Use configure when building
49jprt.build.use.configure=true
50
51# Set up the run flavors (jvm variants)
52jprt.run.flavors=c1,c2,default,${my.additional.run.flavors}
53
54# Set make target to use for different build flavors
55jprt.build.flavor.debugOpen.target=jprt_bundle
56jprt.build.flavor.fastdebug.target=jprt_bundle
57jprt.build.flavor.product.target=jprt_bundle
58jprt.build.flavor.productOpen.target=jprt_bundle
59jprt.build.flavor.optimized.target=jprt_bundle
60jprt.build.flavor.optimizedOpen.target=jprt_bundle
61
62# Use these configure args to define debug level
63jprt.debug.build.configure.args=--with-debug-level=slowdebug
64jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug --disable-precompiled-headers
65jprt.product.build.configure.args=--with-debug-level=release
66jprt.optimized.build.configure.args=--with-debug-level=optimized
67jprt.debugOpen.build.configure.args=${jprt.debug.build.configure.args} --enable-openjdk-only
68jprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args} --enable-openjdk-only
69jprt.productOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
70jprt.optimizedOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
71
72
73# hotspot testset has custom build flavors and build targets
74my.jprt.testsetHasCustomBuildFlavors.hotspot=true
75my.jprt.testsetHasCustomBuildTargets.hotspot=true
76
77# determine if the specified testset has custom build flavors or build targets
78my.jprt.testsetHasCustomBuildFlavors=${my.jprt.testsetHasCustomBuildFlavors.${jprt.test.set}}
79my.jprt.testsetHasCustomBuildTargets=${my.jprt.testsetHasCustomBuildTargets.${jprt.test.set}}
80
81# Select build flavors and build targets based on the specified testset
82jprt.build.flavors=${my.jprt.testsetHasCustomBuildFlavors ? \
83    ${my.build.flavors.${jprt.test.set}} : ${my.build.flavors.default}}
84jprt.build.targets=${my.jprt.testsetHasCustomBuildTargets ? \
85    ${my.build.targets.${jprt.test.set}} : ${my.build.targets.default}}
86
87# Select test targets - jprt default for jprt.test.set is "default"
88jprt.test.targets=${my.test.targets.${jprt.test.set}}
89jprt.make.rule.test.targets=${my.make.rule.test.targets.${jprt.test.set}}
90jprt.test.bundle.targets=${my.jprt.test.bundle.targets.${jprt.test.set}}
91
92# 7155453: Work-around to prevent popups on OSX from blocking test completion
93# but the work-around is added to all platforms to be consistent
94jprt.jbb.options=-Djava.awt.headless=true
95
96########
97#
98# Build options (generic)
99#
100
101# Configure args common to all builds
102# Also allows for additional, testset specific configure arguments to be set
103jprt.build.configure.args=						\
104    --with-output-sync=recurse						\
105    --with-boot-jdk=$ALT_BOOTDIR					\
106    --with-jobs=$ALT_PARALLEL_COMPILE_JOBS				\
107    --with-version-opt=$JPRT_JOB_ID				 	\
108    MAKE=$JPRT_MAKE                                                     \
109    ${my.additional.build.configure.args.${jprt.test.set}}		\
110    ${my.custom.build.configure.args}
111
112# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly
113jprt.i586.build.configure.args=						\
114    --with-target-bits=32
115
116# i586 platforms have both client and server, but to allow for overriding the exact configuration
117# on a per-build flavor basis the value is set for the individual build flavors
118my.i586.default.build.configure.args=					\
119    --with-jvm-variants=client,server
120jprt.i586.debug.build.configure.args=					\
121    ${my.i586.default.build.configure.args}				\
122    ${jprt.debug.build.configure.args}
123jprt.i586.fastdebug.build.configure.args=				\
124    ${my.i586.default.build.configure.args}				\
125    ${jprt.fastdebug.build.configure.args}
126jprt.i586.product.build.configure.args=					\
127    ${my.i586.default.build.configure.args}				\
128    ${jprt.product.build.configure.args}
129jprt.i586.debugOpen.build.configure.args=				\
130    ${my.i586.default.build.configure.args}				\
131    ${jprt.debugOpen.build.configure.args}
132jprt.i586.fastdebugOpen.build.configure.args=				\
133    ${my.i586.default.build.configure.args}				\
134    ${jprt.fastdebugOpen.build.configure.args}
135jprt.i586.productOpen.build.configure.args=				\
136    ${my.i586.default.build.configure.args}				\
137    ${jprt.productOpen.build.configure.args}
138jprt.linux_i586.build.configure.args=					\
139    --with-devkit=$GCC492_OEL64_HOME					\
140    ${jprt.i586.build.configure.args}
141jprt.linux_x64.build.configure.args=					\
142    --with-devkit=$GCC492_OEL64_HOME
143jprt.macosx_x64.build.configure.args=					\
144    --with-devkit=$XCODE63_MACOSX109_HOME
145jprt.windows_i586.build.configure.args=					\
146    --with-devkit=$VS2013SP4_HOME					\
147    ${jprt.i586.build.configure.args}
148jprt.windows_x64.build.configure.args=					\
149    --with-devkit=$VS2013SP4_HOME
150
151########
152#
153# Build targets and options (default/jdk)
154#
155
156# The default build flavors
157my.build.flavors.default=fastdebug,product
158
159# Standard list of jprt build targets for this source tree
160my.build.targets.default=						\
161    solaris_sparcv9_5.11-{product|fastdebug},				\
162    solaris_x64_5.11-{product|fastdebug},				\
163    linux_i586_2.6-{product|fastdebug},					\
164    linux_x64_2.6-{product|fastdebug},					\
165    macosx_x64_10.9-{product|fastdebug},				\
166    windows_i586_6.2-{product|fastdebug},				\
167    windows_x64_6.2-{product|fastdebug}
168
169# Test target list (no fastdebug & limited c2 testing)
170my.test.target.set=							\
171    solaris_sparcv9_5.11-product-c2-TESTNAME,				\
172    solaris_x64_5.11-product-c2-TESTNAME,				\
173    linux_i586_2.6-product-{c1|c2}-TESTNAME,				\
174    linux_x64_2.6-product-c2-TESTNAME,					\
175    macosx_x64_10.9-product-c2-TESTNAME,				\
176    windows_i586_6.2-product-c1-TESTNAME,				\
177    windows_x64_6.2-product-c2-TESTNAME
178
179# Default vm test targets (testset=default)
180my.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)
185my.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}
190
191# Default vm test targets (testset=core)
192my.test.targets.core=
193
194# Core jdk test targets (testset=core)
195my.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},			\
205    ${my.test.target.set:TESTNAME=jdk_security4},			\
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)
213my.test.targets.svc=
214
215# Core jdk test targets (testset=svc)
216my.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},				\
221    ${my.test.target.set:TESTNAME=svc_tools},                           \
222    ${my.make.rule.test.targets.svc.extra}
223
224# JAXP vm test targets (testset=jaxp)
225my.test.targets.jaxp=
226
227# JAXP test targets (testset=jaxp)
228my.make.rule.test.targets.jaxp=						\
229    ${my.test.target.set:TESTNAME=jaxp_all}
230
231# All vm test targets (testset=all)
232my.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)
238my.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},				\
242    ${my.test.target.set:TESTNAME=jdk_beans},				\
243    ${my.test.target.set:TESTNAME=jdk_sound},				\
244    ${my.test.target.set:TESTNAME=jdk_swing}
245
246# PIT vm test targets (testset=pit)
247my.test.targets.pit=							\
248   ${my.test.targets.all}
249
250# PIT jdk test targets (testset=pit)
251my.make.rule.test.targets.pit=						\
252    ${my.test.target.set:TESTNAME=langtools_jtreg},			\
253    ${my.make.rule.test.targets.core},					\
254    ${my.make.rule.test.targets.svc}                                    \
255    ${my.make.rule.test.targets.jaxp}
256
257# JCK test targets in test/Makefile (no windows)
258my.test.target.set.jck=							\
259    solaris_sparcv9_5.11-product-c2-JCK7TESTRULE,			\
260    solaris_x64_5.11-product-c2-JCK7TESTRULE,				\
261    linux_i586_2.6-product-c1-JCK7TESTRULE,				\
262    linux_x64_2.6-product-c2-JCK7TESTRULE
263
264# JCK testset targets
265my.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
277my.build.flavors.hotspot=						\
278    debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
279    ${my.additional.build.flavors.hotspot}
280
281# Platforms built for hotspot push jobs
282my.build.targets.hotspot=						\
283    solaris_sparcv9_5.11-{product|fastdebug},			\
284    solaris_x64_5.11-{product|fastdebug},				\
285    linux_i586_2.6-{product|fastdebug},					\
286    linux_x64_2.6-{product|fastdebug},			\
287    macosx_x64_10.9-{product|fastdebug},				\
288    windows_i586_6.2-{product|fastdebug},				\
289    windows_x64_6.2-{product|fastdebug},			\
290    solaris_x64_5.11-{debugOpen},					\
291    linux_x64_2.6-{productOpen},					\
292    ${my.additional.build.targets.hotspot}
293
294# Tests to run on the various platforms for hotspot push jobs
295my.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,		\
299    solaris_sparcv9_5.11-product-c2-runThese8,				\
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,		\
303    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1
304
305my.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,			\
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,			\
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,		\
315    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1
316
317my.test.targets.hotspot.linux.i586=					\
318    linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98,			\
319    linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered,		\
320    linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark,			\
321    linux_i586_2.6-product-c1-runThese8_Xcomp_lang,			\
322    linux_i586_2.6-product-c1-runThese8_Xcomp_vm,			\
323    linux_i586_2.6-fastdebug-c1-runThese8_Xshare,			\
324    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang,			\
325    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm,			\
326    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
327    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
328    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
329    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1
330
331my.test.targets.hotspot.linux.x64=					\
332    linux_x64_2.6-{product|fastdebug}-c2-jvm98,				\
333    linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered,		\
334    linux_x64_2.6-{product|fastdebug}-c2-scimark,			\
335    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC,		\
336    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
337    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS,			\
338    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1
339
340my.test.targets.hotspot.macosx.x64=					\
341    macosx_x64_10.9-{product|fastdebug}-c2-jvm98,			\
342    macosx_x64_10.9-{product|fastdebug}-c2-jvm98_nontiered,		\
343    macosx_x64_10.9-{product|fastdebug}-c2-scimark,			\
344    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_SerialGC,		\
345    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
346    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_CMS,		\
347    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_G1
348
349my.test.targets.hotspot.windows.i586=					\
350    windows_i586_6.2-{product|fastdebug}-{c1|c2}-jvm98,			\
351    windows_i586_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
352    windows_i586_6.2-{product|fastdebug}-{c1|c2}-scimark,		\
353    windows_i586_6.2-product-{c1|c2}-runThese8,				\
354    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_lang,		\
355    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_vm,		\
356    windows_i586_6.2-fastdebug-c1-runThese8_Xshare,			\
357    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
358    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
359    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
360    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_G1
361
362my.test.targets.hotspot.windows.x64=					\
363    windows_x64_6.2-{product|fastdebug}-c2-jvm98,			\
364    windows_x64_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
365    windows_x64_6.2-{product|fastdebug}-c2-scimark,			\
366    windows_x64_6.2-product-c2-runThese8,				\
367    windows_x64_6.2-product-c2-runThese8_Xcomp_lang,			\
368    windows_x64_6.2-product-c2-runThese8_Xcomp_vm,			\
369    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_SerialGC,		\
370    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
371    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_CMS,		\
372    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_G1
373
374# Some basic "smoke" tests for OpenJDK builds
375my.test.targets.hotspot.open=						\
376    solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98,		\
377    linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
378
379# The complete list of test targets for jprt
380my.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
399my.make.rule.test.targets.hotspot.basicvmtests=                         \
400  linux_i586_2.6-*-default-hotspot_basicvmtest,                         \
401  linux_x64_2.6-*-default-hotspot_basicvmtest,                          \
402  macosx_x64_10.9-*-default-hotspot_basicvmtest,                        \
403  solaris_sparcv9_5.11-*-default-hotspot_basicvmtest,                   \
404  solaris_x64_5.11-*-default-hotspot_basicvmtest,                       \
405  windows_i586_6.2-*-default-hotspot_basicvmtest,                       \
406  windows_x64_6.2-*-default-hotspot_basicvmtest
407  
408my.make.rule.test.targets.hotspot.reg.group=				\
409  solaris_sparcv9_5.11-fastdebug-c2-GROUP,				\
410  solaris_x64_5.11-fastdebug-c2-GROUP,					\
411  linux_i586_2.6-fastdebug-c2-GROUP,					\
412  linux_x64_2.6-fastdebug-c2-GROUP,					\
413  macosx_x64_10.9-fastdebug-c2-GROUP,					\
414  windows_i586_6.2-fastdebug-c2-GROUP,					\
415  windows_x64_6.2-fastdebug-c2-GROUP,					\
416  linux_i586_2.6-fastdebug-c1-GROUP,					\
417  windows_i586_6.2-fastdebug-c1-GROUP
418
419# Hotspot jtreg tests
420my.make.rule.test.targets.hotspot.reg=						\
421  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1},	\
422  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2},	\
423  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3},	\
424  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed},	\
425  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc},		\
426  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed},       \
427  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_gcold},        \
428  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime},		\
429  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability},	\
430  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity},		\
431  ${my.additional.make.rule.test.targets.hotspot.reg}
432
433# Other Makefile based Hotspot tests
434my.make.rule.test.targets.hotspot.other=                                \
435  ${my.make.rule.test.targets.hotspot.basicvmtests},                    \
436  ${my.additional.make.rule.test.targets.hotspot.other}
437
438# All the makefile based tests to run
439my.make.rule.test.targets.hotspot=                                      \
440  ${my.make.rule.test.targets.hotspot.reg}                              \
441  ${my.make.rule.test.targets.hotspot.other}
442
443# Install the test bundle for the testset hotspot jtreg tests
444# (but not for the other Makefile based tests)
445my.jprt.test.bundle.targets.hotspot=${my.make.rule.test.targets.hotspot.reg}
446
447# Native jdk and hotspot test targets (testset=nativesanity)
448my.make.rule.test.targets.nativesanity=					\
449    ${my.test.target.set:TESTNAME=jdk_native_sanity},			\
450    ${my.test.target.set:TESTNAME=hotspot_native_sanity}
451
452# Install the test bundle for the nativesanity jtreg tests
453my.jprt.test.bundle.targets.nativesanity=${my.make.rule.test.targets.nativesanity}
454