jprt.properties revision 1879:a332a34cdc35
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.solaris.build.configure.args=					\
141    --with-devkit=$SS124_11u1_HOME
142jprt.windows_i586.build.configure.args=					\
143    --with-devkit=$VS2013SP4_HOME					\
144    ${jprt.i586.build.configure.args}
145jprt.windows_x64.build.configure.args=					\
146    --with-devkit=$VS2013SP4_HOME
147
148########
149#
150# Build targets and options (default/jdk)
151#
152
153# The default build flavors
154my.build.flavors.default=fastdebug,product
155
156# Standard list of jprt build targets for this source tree
157my.build.targets.default=						\
158    solaris_sparcv9_5.11-{product|fastdebug},				\
159    solaris_x64_5.11-{product|fastdebug},				\
160    linux_i586_2.6-{product|fastdebug},					\
161    linux_x64_2.6-{product|fastdebug},					\
162    macosx_x64_10.9-{product|fastdebug},				\
163    windows_i586_6.2-{product|fastdebug},				\
164    windows_x64_6.2-{product|fastdebug}
165
166# Test target list (no fastdebug & limited c2 testing)
167my.test.target.set=							\
168    solaris_sparcv9_5.11-product-c2-TESTNAME,				\
169    solaris_x64_5.11-product-c2-TESTNAME,				\
170    linux_i586_2.6-product-{c1|c2}-TESTNAME,				\
171    linux_x64_2.6-product-c2-TESTNAME,					\
172    macosx_x64_10.9-product-c2-TESTNAME,				\
173    windows_i586_6.2-product-c1-TESTNAME,				\
174    windows_x64_6.2-product-c2-TESTNAME
175
176# Default vm test targets (testset=default)
177my.test.targets.default=						\
178    ${my.test.target.set:TESTNAME=jvm98},				\
179    ${my.test.target.set:TESTNAME=scimark}
180
181# Default jdk test targets (testset=default)
182my.make.rule.test.targets.default=					\
183    ${my.test.target.set:TESTNAME=langtools_jtreg},			\
184    ${my.test.target.set:TESTNAME=jdk_lang},				\
185    ${my.test.target.set:TESTNAME=jdk_math},				\
186    ${my.test.target.set:TESTNAME=jdk_util}
187
188# Default vm test targets (testset=core)
189my.test.targets.core=
190
191# Core jdk test targets (testset=core)
192my.make.rule.test.targets.core=						\
193    ${my.test.target.set:TESTNAME=jdk_lang},				\
194    ${my.test.target.set:TESTNAME=jdk_math},				\
195    ${my.test.target.set:TESTNAME=jdk_util},				\
196    ${my.test.target.set:TESTNAME=jdk_io},				\
197    ${my.test.target.set:TESTNAME=jdk_net},				\
198    ${my.test.target.set:TESTNAME=jdk_nio},				\
199    ${my.test.target.set:TESTNAME=jdk_security1},			\
200    ${my.test.target.set:TESTNAME=jdk_security2},			\
201    ${my.test.target.set:TESTNAME=jdk_security3},			\
202    ${my.test.target.set:TESTNAME=jdk_security4},			\
203    ${my.test.target.set:TESTNAME=jdk_rmi},				\
204    ${my.test.target.set:TESTNAME=jdk_text},				\
205    ${my.test.target.set:TESTNAME=jdk_time},				\
206    ${my.test.target.set:TESTNAME=jdk_other},				\
207    ${my.test.target.set:TESTNAME=core_tools}
208
209# Svc vm test targets (testset=svc)
210my.test.targets.svc=
211
212# Core jdk test targets (testset=svc)
213my.make.rule.test.targets.svc=						\
214    ${my.test.target.set:TESTNAME=jdk_management},			\
215    ${my.test.target.set:TESTNAME=jdk_instrument},			\
216    ${my.test.target.set:TESTNAME=jdk_jmx},				\
217    ${my.test.target.set:TESTNAME=jdk_jdi},				\
218    ${my.test.target.set:TESTNAME=svc_tools},                           \
219    ${my.make.rule.test.targets.svc.extra}
220
221# JAXP vm test targets (testset=jaxp)
222my.test.targets.jaxp=
223
224# JAXP test targets (testset=jaxp)
225my.make.rule.test.targets.jaxp=						\
226    ${my.test.target.set:TESTNAME=jaxp_all}
227
228# All vm test targets (testset=all)
229my.test.targets.all=							\
230    ${my.test.targets.default},						\
231    ${my.test.target.set:TESTNAME=runThese},				\
232    ${my.test.target.set:TESTNAME=jbb_default}
233
234# All jdk test targets (testset=all)
235my.make.rule.test.targets.all=						\
236    ${my.make.rule.test.targets.core},					\
237    ${my.make.rule.test.targets.svc},					\
238    ${my.test.target.set:TESTNAME=jdk_awt},				\
239    ${my.test.target.set:TESTNAME=jdk_beans},				\
240    ${my.test.target.set:TESTNAME=jdk_sound},				\
241    ${my.test.target.set:TESTNAME=jdk_swing}
242
243# PIT vm test targets (testset=pit)
244my.test.targets.pit=							\
245   ${my.test.targets.all}
246
247# PIT jdk test targets (testset=pit)
248my.make.rule.test.targets.pit=						\
249    ${my.test.target.set:TESTNAME=langtools_jtreg},			\
250    ${my.make.rule.test.targets.core},					\
251    ${my.make.rule.test.targets.svc}                                    \
252    ${my.make.rule.test.targets.jaxp}
253
254# JCK test targets in test/Makefile (no windows)
255my.test.target.set.jck=							\
256    solaris_sparcv9_5.11-product-c2-JCK7TESTRULE,			\
257    solaris_x64_5.11-product-c2-JCK7TESTRULE,				\
258    linux_i586_2.6-product-c1-JCK7TESTRULE,				\
259    linux_x64_2.6-product-c2-JCK7TESTRULE
260
261# JCK testset targets
262my.make.rule.test.targets.jck=						\
263    ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools},		\
264    ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime},			\
265    ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
266
267
268#############
269#
270# Hotspot related settings (testset=hotspot)
271#
272
273# The hotspot build flavors
274my.build.flavors.hotspot=						\
275    debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
276    ${my.additional.build.flavors.hotspot}
277
278# Platforms built for hotspot push jobs
279my.build.targets.hotspot=						\
280    solaris_sparcv9_5.11-{product|fastdebug},			\
281    solaris_x64_5.11-{product|fastdebug},				\
282    linux_i586_2.6-{product|fastdebug},					\
283    linux_x64_2.6-{product|fastdebug},			\
284    macosx_x64_10.9-{product|fastdebug},				\
285    windows_i586_6.2-{product|fastdebug},				\
286    windows_x64_6.2-{product|fastdebug},			\
287    solaris_x64_5.11-{debugOpen},					\
288    linux_x64_2.6-{productOpen},					\
289    ${my.additional.build.targets.hotspot}
290
291# Tests to run on the various platforms for hotspot push jobs
292my.test.targets.hotspot.solaris.sparcv9=				\
293    solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98,			\
294    solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered,	\
295    solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark,		\
296    solaris_sparcv9_5.11-product-c2-runThese8,				\
297    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,	\
298    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,	\
299    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS,		\
300    solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1
301
302my.test.targets.hotspot.solaris.x64=					\
303    solaris_x64_5.11-{product|fastdebug}-c2-jvm98,			\
304    solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered,		\
305    solaris_x64_5.11-{product|fastdebug}-c2-scimark,			\
306    solaris_x64_5.11-product-c2-runThese8,				\
307    solaris_x64_5.11-product-c2-runThese8_Xcomp_lang,			\
308    solaris_x64_5.11-product-c2-runThese8_Xcomp_vm,			\
309    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,		\
310    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,	\
311    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS,		\
312    solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1
313
314my.test.targets.hotspot.linux.i586=					\
315    linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98,			\
316    linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered,		\
317    linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark,			\
318    linux_i586_2.6-product-c1-runThese8_Xcomp_lang,			\
319    linux_i586_2.6-product-c1-runThese8_Xcomp_vm,			\
320    linux_i586_2.6-fastdebug-c1-runThese8_Xshare,			\
321    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang,			\
322    linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm,			\
323    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
324    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
325    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
326    linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1
327
328my.test.targets.hotspot.linux.x64=					\
329    linux_x64_2.6-{product|fastdebug}-c2-jvm98,				\
330    linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered,		\
331    linux_x64_2.6-{product|fastdebug}-c2-scimark,			\
332    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC,		\
333    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
334    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS,			\
335    linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1
336
337my.test.targets.hotspot.macosx.x64=					\
338    macosx_x64_10.9-{product|fastdebug}-c2-jvm98,			\
339    macosx_x64_10.9-{product|fastdebug}-c2-jvm98_nontiered,		\
340    macosx_x64_10.9-{product|fastdebug}-c2-scimark,			\
341    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_SerialGC,		\
342    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
343    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_CMS,		\
344    macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_G1
345
346my.test.targets.hotspot.windows.i586=					\
347    windows_i586_6.2-{product|fastdebug}-{c1|c2}-jvm98,			\
348    windows_i586_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
349    windows_i586_6.2-{product|fastdebug}-{c1|c2}-scimark,		\
350    windows_i586_6.2-product-{c1|c2}-runThese8,				\
351    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_lang,		\
352    windows_i586_6.2-product-{c1|c2}-runThese8_Xcomp_vm,		\
353    windows_i586_6.2-fastdebug-c1-runThese8_Xshare,			\
354    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,	\
355    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,	\
356    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_CMS,		\
357    windows_i586_6.2-{product|fastdebug}-{c1|c2}-GCBasher_G1
358
359my.test.targets.hotspot.windows.x64=					\
360    windows_x64_6.2-{product|fastdebug}-c2-jvm98,			\
361    windows_x64_6.2-{product|fastdebug}-c2-jvm98_nontiered,		\
362    windows_x64_6.2-{product|fastdebug}-c2-scimark,			\
363    windows_x64_6.2-product-c2-runThese8,				\
364    windows_x64_6.2-product-c2-runThese8_Xcomp_lang,			\
365    windows_x64_6.2-product-c2-runThese8_Xcomp_vm,			\
366    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_SerialGC,		\
367    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_ParallelGC,		\
368    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_CMS,		\
369    windows_x64_6.2-{product|fastdebug}-c2-GCBasher_G1
370
371# Some basic "smoke" tests for OpenJDK builds
372my.test.targets.hotspot.open=						\
373    solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98,		\
374    linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
375
376# The complete list of test targets for jprt
377my.test.targets.hotspot=						\
378  ${my.test.targets.hotspot.open},					\
379  ${my.test.targets.hotspot.solaris.sparcv9},				\
380  ${my.test.targets.hotspot.solaris.x64},				\
381  ${my.test.targets.hotspot.linux.i586},				\
382  ${my.test.targets.hotspot.linux.x64},					\
383  ${my.test.targets.hotspot.macosx.x64},				\
384  ${my.test.targets.hotspot.windows.i586},				\
385  ${my.test.targets.hotspot.windows.x64},				\
386  ${my.test.targets.hotspot.solaris.sparcv9},				\
387  ${my.test.targets.hotspot.solaris.x64},				\
388  ${my.test.targets.hotspot.linux.x64},					\
389  ${my.test.targets.hotspot.windows.i586},				\
390  ${my.test.targets.hotspot.windows.x64},				\
391  ${my.additional.test.targets.hotspot}
392
393
394# Make file based test targets
395
396my.make.rule.test.targets.hotspot.basicvmtests=                         \
397  linux_i586_2.6-*-default-hotspot_basicvmtest,                         \
398  linux_x64_2.6-*-default-hotspot_basicvmtest,                          \
399  macosx_x64_10.9-*-default-hotspot_basicvmtest,                        \
400  solaris_sparcv9_5.11-*-default-hotspot_basicvmtest,                   \
401  solaris_x64_5.11-*-default-hotspot_basicvmtest,                       \
402  windows_i586_6.2-*-default-hotspot_basicvmtest,                       \
403  windows_x64_6.2-*-default-hotspot_basicvmtest
404  
405my.make.rule.test.targets.hotspot.reg.group=				\
406  solaris_sparcv9_5.11-fastdebug-c2-GROUP,				\
407  solaris_x64_5.11-fastdebug-c2-GROUP,					\
408  linux_i586_2.6-fastdebug-c2-GROUP,					\
409  linux_x64_2.6-fastdebug-c2-GROUP,					\
410  macosx_x64_10.9-fastdebug-c2-GROUP,					\
411  windows_i586_6.2-fastdebug-c2-GROUP,					\
412  windows_x64_6.2-fastdebug-c2-GROUP,					\
413  linux_i586_2.6-fastdebug-c1-GROUP,					\
414  windows_i586_6.2-fastdebug-c1-GROUP
415
416# Hotspot jtreg tests
417my.make.rule.test.targets.hotspot.reg=						\
418  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1},	\
419  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2},	\
420  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3},	\
421  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed},	\
422  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc},		\
423  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_closed},       \
424  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc_gcold},        \
425  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime},		\
426  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability},	\
427  ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity},		\
428  ${my.additional.make.rule.test.targets.hotspot.reg}
429
430# Other Makefile based Hotspot tests
431my.make.rule.test.targets.hotspot.other=                                \
432  ${my.make.rule.test.targets.hotspot.basicvmtests},                    \
433  ${my.additional.make.rule.test.targets.hotspot.other}
434
435# All the makefile based tests to run
436my.make.rule.test.targets.hotspot=                                      \
437  ${my.make.rule.test.targets.hotspot.reg}                              \
438  ${my.make.rule.test.targets.hotspot.other}
439
440# Install the test bundle for the testset hotspot jtreg tests
441# (but not for the other Makefile based tests)
442my.jprt.test.bundle.targets.hotspot=${my.make.rule.test.targets.hotspot.reg}
443
444# Native jdk and hotspot test targets (testset=nativesanity)
445my.make.rule.test.targets.nativesanity=					\
446    ${my.test.target.set:TESTNAME=jdk_native_sanity},			\
447    ${my.test.target.set:TESTNAME=hotspot_native_sanity}
448
449# Install the test bundle for the nativesanity jtreg tests
450my.jprt.test.bundle.targets.nativesanity=${my.make.rule.test.targets.nativesanity}
451