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