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