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