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