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