jprt.properties revision 1877:4be1cd68310d
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# Allow concurrent changes to be merged in prior to pushing 
38jprt.sync.push=true
39
40# Directories to be excluded from the source bundles
41jprt.bundle.exclude.src.dirs=build dist webrev
42
43# Use configure when building
44jprt.build.use.configure=true
45
46# Set up the run flavors (jvm variants)
47jprt.run.flavors=c1,c2,default,${my.additional.run.flavors}
48
49# Set make target to use for different build flavors
50jprt.build.flavor.debugOpen.target=jprt_bundle
51jprt.build.flavor.fastdebug.target=jprt_bundle
52jprt.build.flavor.product.target=jprt_bundle
53jprt.build.flavor.productOpen.target=jprt_bundle
54jprt.build.flavor.optimized.target=jprt_bundle
55jprt.build.flavor.optimizedOpen.target=jprt_bundle
56
57# Use these configure args to define debug level
58jprt.debug.build.configure.args=--with-debug-level=slowdebug
59jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug --disable-precompiled-headers
60jprt.product.build.configure.args=--with-debug-level=release
61jprt.optimized.build.configure.args=--with-debug-level=optimized
62jprt.debugOpen.build.configure.args=${jprt.debug.build.configure.args} --enable-openjdk-only
63jprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args} --enable-openjdk-only
64jprt.productOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
65jprt.optimizedOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
66
67
68# hotspot testset has custom build flavors and build targets
69my.jprt.testsetHasCustomBuildFlavors.hotspot=true
70my.jprt.testsetHasCustomBuildTargets.hotspot=true
71
72# determine if the specified testset has custom build flavors or build targets
73my.jprt.testsetHasCustomBuildFlavors=${my.jprt.testsetHasCustomBuildFlavors.${jprt.test.set}}
74my.jprt.testsetHasCustomBuildTargets=${my.jprt.testsetHasCustomBuildTargets.${jprt.test.set}}
75
76# Select build flavors and build targets based on the specified testset
77jprt.build.flavors=${my.jprt.testsetHasCustomBuildFlavors ? \
78    ${my.build.flavors.${jprt.test.set}} : ${my.build.flavors.default}}
79jprt.build.targets=${my.jprt.testsetHasCustomBuildTargets ? \
80    ${my.build.targets.${jprt.test.set}} : ${my.build.targets.default}}
81
82# Select test targets - jprt default for jprt.test.set is "default"
83jprt.test.targets=${my.test.targets.${jprt.test.set}}
84jprt.make.rule.test.targets=${my.make.rule.test.targets.${jprt.test.set}}
85jprt.test.bundle.targets=${my.jprt.test.bundle.targets.${jprt.test.set}}
86
87# 7155453: Work-around to prevent popups on OSX from blocking test completion
88# but the work-around is added to all platforms to be consistent
89jprt.jbb.options=-Djava.awt.headless=true
90
91########
92#
93# Build options (generic)
94#
95
96# Configure args common to all builds
97# Also allows for additional, testset specific configure arguments to be set
98jprt.build.configure.args=						\
99    --with-output-sync=recurse						\
100    --with-boot-jdk=$ALT_BOOTDIR					\
101    --with-jobs=$ALT_PARALLEL_COMPILE_JOBS				\
102    --with-version-opt=$JPRT_JOB_ID				 	\
103    MAKE=$JPRT_MAKE                                                     \
104    ${my.additional.build.configure.args.${jprt.test.set}}		\
105    ${my.custom.build.configure.args}
106
107# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly
108jprt.i586.build.configure.args=						\
109    --with-target-bits=32
110
111# i586 platforms have both client and server, but to allow for overriding the exact configuration
112# on a per-build flavor basis the value is set for the individual build flavors
113my.i586.default.build.configure.args=					\
114    --with-jvm-variants=client,server
115jprt.i586.debug.build.configure.args=					\
116    ${my.i586.default.build.configure.args}				\
117    ${jprt.debug.build.configure.args}
118jprt.i586.fastdebug.build.configure.args=				\
119    ${my.i586.default.build.configure.args}				\
120    ${jprt.fastdebug.build.configure.args}
121jprt.i586.product.build.configure.args=					\
122    ${my.i586.default.build.configure.args}				\
123    ${jprt.product.build.configure.args}
124jprt.i586.debugOpen.build.configure.args=				\
125    ${my.i586.default.build.configure.args}				\
126    ${jprt.debugOpen.build.configure.args}
127jprt.i586.fastdebugOpen.build.configure.args=				\
128    ${my.i586.default.build.configure.args}				\
129    ${jprt.fastdebugOpen.build.configure.args}
130jprt.i586.productOpen.build.configure.args=				\
131    ${my.i586.default.build.configure.args}				\
132    ${jprt.productOpen.build.configure.args}
133jprt.linux_i586.build.configure.args=					\
134    --with-devkit=$GCC492_OEL64_HOME					\
135    ${jprt.i586.build.configure.args}
136jprt.linux_x64.build.configure.args=					\
137    --with-devkit=$GCC492_OEL64_HOME
138jprt.macosx_x64.build.configure.args=					\
139    --with-devkit=$XCODE63_MACOSX109_HOME
140jprt.windows_i586.build.configure.args=					\
141    --with-devkit=$VS2013SP4_HOME					\
142    ${jprt.i586.build.configure.args}
143jprt.windows_x64.build.configure.args=					\
144    --with-devkit=$VS2013SP4_HOME
145
146########
147#
148# Build targets and options (default/jdk)
149#
150
151# The default build flavors
152my.build.flavors.default=fastdebug,product
153
154# Standard list of jprt build targets for this source tree
155my.build.targets.default=						\
156    solaris_sparcv9_5.11-{product|fastdebug},				\
157    solaris_x64_5.11-{product|fastdebug},				\
158    linux_i586_2.6-{product|fastdebug},					\
159    linux_x64_2.6-{product|fastdebug},					\
160    macosx_x64_10.9-{product|fastdebug},				\
161    windows_i586_6.2-{product|fastdebug},				\
162    windows_x64_6.2-{product|fastdebug}
163
164# Test target list (no fastdebug & limited c2 testing)
165my.test.target.set=							\
166    solaris_sparcv9_5.11-product-c2-TESTNAME,				\
167    solaris_x64_5.11-product-c2-TESTNAME,				\
168    linux_i586_2.6-product-{c1|c2}-TESTNAME,				\
169    linux_x64_2.6-product-c2-TESTNAME,					\
170    macosx_x64_10.9-product-c2-TESTNAME,				\
171    windows_i586_6.2-product-c1-TESTNAME,				\
172    windows_x64_6.2-product-c2-TESTNAME
173
174# Default vm test targets (testset=default)
175my.test.targets.default=						\
176    ${my.test.target.set:TESTNAME=jvm98},				\
177    ${my.test.target.set:TESTNAME=scimark}
178
179# Default jdk test targets (testset=default)
180my.make.rule.test.targets.default=					\
181    ${my.test.target.set:TESTNAME=langtools_jtreg},			\
182    ${my.test.target.set:TESTNAME=jdk_lang},				\
183    ${my.test.target.set:TESTNAME=jdk_math},				\
184    ${my.test.target.set:TESTNAME=jdk_util}
185
186# Default vm test targets (testset=core)
187my.test.targets.core=
188
189# Core jdk test targets (testset=core)
190my.make.rule.test.targets.core=						\
191    ${my.test.target.set:TESTNAME=jdk_lang},				\
192    ${my.test.target.set:TESTNAME=jdk_math},				\
193    ${my.test.target.set:TESTNAME=jdk_util},				\
194    ${my.test.target.set:TESTNAME=jdk_io},				\
195    ${my.test.target.set:TESTNAME=jdk_net},				\
196    ${my.test.target.set:TESTNAME=jdk_nio},				\
197    ${my.test.target.set:TESTNAME=jdk_security1},			\
198    ${my.test.target.set:TESTNAME=jdk_security2},			\
199    ${my.test.target.set:TESTNAME=jdk_security3},			\
200    ${my.test.target.set:TESTNAME=jdk_security4},			\
201    ${my.test.target.set:TESTNAME=jdk_rmi},				\
202    ${my.test.target.set:TESTNAME=jdk_text},				\
203    ${my.test.target.set:TESTNAME=jdk_time},				\
204    ${my.test.target.set:TESTNAME=jdk_other},				\
205    ${my.test.target.set:TESTNAME=core_tools}
206
207# Svc vm test targets (testset=svc)
208my.test.targets.svc=
209
210# Core jdk test targets (testset=svc)
211my.make.rule.test.targets.svc=						\
212    ${my.test.target.set:TESTNAME=jdk_management},			\
213    ${my.test.target.set:TESTNAME=jdk_instrument},			\
214    ${my.test.target.set:TESTNAME=jdk_jmx},				\
215    ${my.test.target.set:TESTNAME=jdk_jdi},				\
216    ${my.test.target.set:TESTNAME=svc_tools},                           \
217    ${my.make.rule.test.targets.svc.extra}
218
219# JAXP vm test targets (testset=jaxp)
220my.test.targets.jaxp=
221
222# JAXP test targets (testset=jaxp)
223my.make.rule.test.targets.jaxp=						\
224    ${my.test.target.set:TESTNAME=jaxp_all}
225
226# All vm test targets (testset=all)
227my.test.targets.all=							\
228    ${my.test.targets.default},						\
229    ${my.test.target.set:TESTNAME=runThese},				\
230    ${my.test.target.set:TESTNAME=jbb_default}
231
232# All jdk test targets (testset=all)
233my.make.rule.test.targets.all=						\
234    ${my.make.rule.test.targets.core},					\
235    ${my.make.rule.test.targets.svc},					\
236    ${my.test.target.set:TESTNAME=jdk_awt},				\
237    ${my.test.target.set:TESTNAME=jdk_beans},				\
238    ${my.test.target.set:TESTNAME=jdk_sound},				\
239    ${my.test.target.set:TESTNAME=jdk_swing}
240
241# PIT vm test targets (testset=pit)
242my.test.targets.pit=							\
243   ${my.test.targets.all}
244
245# PIT jdk test targets (testset=pit)
246my.make.rule.test.targets.pit=						\
247    ${my.test.target.set:TESTNAME=langtools_jtreg},			\
248    ${my.make.rule.test.targets.core},					\
249    ${my.make.rule.test.targets.svc}                                    \
250    ${my.make.rule.test.targets.jaxp}
251
252# JCK test targets in test/Makefile (no windows)
253my.test.target.set.jck=							\
254    solaris_sparcv9_5.11-product-c2-JCK7TESTRULE,			\
255    solaris_x64_5.11-product-c2-JCK7TESTRULE,				\
256    linux_i586_2.6-product-c1-JCK7TESTRULE,				\
257    linux_x64_2.6-product-c2-JCK7TESTRULE
258
259# JCK testset targets
260my.make.rule.test.targets.jck=						\
261    ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools},		\
262    ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime},			\
263    ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
264
265
266#############
267#
268# Hotspot related settings (testset=hotspot)
269#
270
271# The hotspot build flavors
272my.build.flavors.hotspot=						\
273    debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
274    ${my.additional.build.flavors.hotspot}
275
276# Platforms built for hotspot push jobs
277my.build.targets.hotspot=						\
278    solaris_sparcv9_5.11-{product|fastdebug},			\
279    solaris_x64_5.11-{product|fastdebug},				\
280    linux_i586_2.6-{product|fastdebug},					\
281    linux_x64_2.6-{product|fastdebug},			\
282    macosx_x64_10.9-{product|fastdebug},				\
283    windows_i586_6.2-{product|fastdebug},				\
284    windows_x64_6.2-{product|fastdebug},			\
285    solaris_x64_5.11-{debugOpen},					\
286    linux_x64_2.6-{productOpen},					\
287    ${my.additional.build.targets.hotspot}
288
289# Tests to run on the various platforms for hotspot push jobs
290my.test.targets.hotspot.solaris.sparcv9=				\
291    solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98,			\
292    solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered,	\
293    solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark,		\
294    solaris_sparcv9_5.11-product-c2-runThese8,				\
295    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,	\
296    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,	\
297    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS,		\
298    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1
299
300my.test.targets.hotspot.solaris.x64=					\
301    solaris_x64_5.11-{product|fastdebug}-c2-jvm98,			\
302    solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered,		\
303    solaris_x64_5.11-{product|fastdebug}-c2-scimark,			\
304    solaris_x64_5.11-product-c2-runThese8,				\
305    solaris_x64_5.11-product-c2-runThese8_Xcomp_lang,			\
306    solaris_x64_5.11-product-c2-runThese8_Xcomp_vm,			\
307    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,		\
308    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,	\
309    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS,		\
310    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1
311
312my.test.targets.hotspot.linux.i586=					\
313    linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98,			\
314    linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered,		\
315    linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark,			\
316    linux_i586_2.6-product-c1-runThese8_Xcomp_lang,			\
317    linux_i586_2.6-product-c1-runThese8_Xcomp_vm,			\
318    linux_i586_2.6-fastdebug-c1-runThese8_Xshare,			\
319    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang,			\
320    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm,			\
321    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
322    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
323    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
324    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1
325
326my.test.targets.hotspot.linux.x64=					\
327    linux_x64_2.6-{product|fastdebug}-c2-jvm98,				\
328    linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered,		\
329    linux_x64_2.6-{product|fastdebug}-c2-scimark,			\
330    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC,		\
331    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
332    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS,			\
333    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1
334
335my.test.targets.hotspot.macosx.x64=					\
336    macosx_x64_10.9-{product|fastdebug}-c2-jvm98,			\
337    macosx_x64_10.9-{product|fastdebug}-c2-jvm98_nontiered,		\
338    macosx_x64_10.9-{product|fastdebug}-c2-scimark,			\
339    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_SerialGC,		\
340    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
341    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_CMS,		\
342    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_G1
343
344my.test.targets.hotspot.windows.i586=					\
345    windows_i586_6.2-{product|fastdebug}-{c1|c2}-jvm98,			\
346    windows_i586_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
347    windows_i586_6.2-{product|fastdebug}-{c1|c2}-scimark,		\
348    windows_i586_6.2-product-{c1|c2}-runThese8,				\
349    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_lang,		\
350    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_vm,		\
351    windows_i586_6.2-fastdebug-c1-runThese8_Xshare,			\
352    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
353    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
354    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
355    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_G1
356
357my.test.targets.hotspot.windows.x64=					\
358    windows_x64_6.2-{product|fastdebug}-c2-jvm98,			\
359    windows_x64_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
360    windows_x64_6.2-{product|fastdebug}-c2-scimark,			\
361    windows_x64_6.2-product-c2-runThese8,				\
362    windows_x64_6.2-product-c2-runThese8_Xcomp_lang,			\
363    windows_x64_6.2-product-c2-runThese8_Xcomp_vm,			\
364    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_SerialGC,		\
365    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
366    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_CMS,		\
367    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_G1
368
369# Some basic "smoke" tests for OpenJDK builds
370my.test.targets.hotspot.open=						\
371    solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98,		\
372    linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
373
374# The complete list of test targets for jprt
375my.test.targets.hotspot=						\
376  ${my.test.targets.hotspot.open},					\
377  ${my.test.targets.hotspot.solaris.sparcv9},				\
378  ${my.test.targets.hotspot.solaris.x64},				\
379  ${my.test.targets.hotspot.linux.i586},				\
380  ${my.test.targets.hotspot.linux.x64},					\
381  ${my.test.targets.hotspot.macosx.x64},				\
382  ${my.test.targets.hotspot.windows.i586},				\
383  ${my.test.targets.hotspot.windows.x64},				\
384  ${my.test.targets.hotspot.solaris.sparcv9},				\
385  ${my.test.targets.hotspot.solaris.x64},				\
386  ${my.test.targets.hotspot.linux.x64},					\
387  ${my.test.targets.hotspot.windows.i586},				\
388  ${my.test.targets.hotspot.windows.x64},				\
389  ${my.additional.test.targets.hotspot}
390
391
392# Make file based test targets
393
394my.make.rule.test.targets.hotspot.basicvmtests=                         \
395  linux_i586_2.6-*-default-hotspot_basicvmtest,                         \
396  linux_x64_2.6-*-default-hotspot_basicvmtest,                          \
397  macosx_x64_10.9-*-default-hotspot_basicvmtest,                        \
398  solaris_sparcv9_5.11-*-default-hotspot_basicvmtest,                   \
399  solaris_x64_5.11-*-default-hotspot_basicvmtest,                       \
400  windows_i586_6.2-*-default-hotspot_basicvmtest,                       \
401  windows_x64_6.2-*-default-hotspot_basicvmtest
402  
403my.make.rule.test.targets.hotspot.reg.group=				\
404  solaris_sparcv9_5.11-fastdebug-c2-GROUP,				\
405  solaris_x64_5.11-fastdebug-c2-GROUP,					\
406  linux_i586_2.6-fastdebug-c2-GROUP,					\
407  linux_x64_2.6-fastdebug-c2-GROUP,					\
408  macosx_x64_10.9-fastdebug-c2-GROUP,					\
409  windows_i586_6.2-fastdebug-c2-GROUP,					\
410  windows_x64_6.2-fastdebug-c2-GROUP,					\
411  linux_i586_2.6-fastdebug-c1-GROUP,					\
412  windows_i586_6.2-fastdebug-c1-GROUP
413
414# Hotspot jtreg tests
415my.make.rule.test.targets.hotspot.reg=						\
416  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1},	\
417  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2},	\
418  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3},	\
419  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed},	\
420  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc},		\
421  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed},       \
422  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_gcold},        \
423  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime},		\
424  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability},	\
425  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity},		\
426  ${my.additional.make.rule.test.targets.hotspot.reg}
427
428# Other Makefile based Hotspot tests
429my.make.rule.test.targets.hotspot.other=                                \
430  ${my.make.rule.test.targets.hotspot.basicvmtests},                    \
431  ${my.additional.make.rule.test.targets.hotspot.other}
432
433# All the makefile based tests to run
434my.make.rule.test.targets.hotspot=                                      \
435  ${my.make.rule.test.targets.hotspot.reg}                              \
436  ${my.make.rule.test.targets.hotspot.other}
437
438# Install the test bundle for the testset hotspot jtreg tests
439# (but not for the other Makefile based tests)
440my.jprt.test.bundle.targets.hotspot=${my.make.rule.test.targets.hotspot.reg}
441
442# Native jdk and hotspot test targets (testset=nativesanity)
443my.make.rule.test.targets.nativesanity=					\
444    ${my.test.target.set:TESTNAME=jdk_native_sanity},			\
445    ${my.test.target.set:TESTNAME=hotspot_native_sanity}
446
447# Install the test bundle for the nativesanity jtreg tests
448my.jprt.test.bundle.targets.nativesanity=${my.make.rule.test.targets.nativesanity}
449