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 # Jaxp vm test targets (testset=jaxp)
 192 my.test.targets.jaxp=
 193 
 194 # Jaxp test targets (testset=jaxp)
 195 my.make.rule.test.targets.jaxp=                                         \
 196     ${my.test.target.set:TESTNAME=jaxp_test}
 197 
 198 # All vm test targets (testset=all)
 199 my.test.targets.all=                                                    \
 200     ${my.test.targets.default},                                         \
 201     ${my.test.target.set:TESTNAME=runThese},                            \
 202     ${my.test.target.set:TESTNAME=jbb_default}
 203 
 204 # All jdk test targets (testset=all)
 205 my.make.rule.test.targets.all=                                          \
 206     ${my.make.rule.test.targets.core},                                  \
 207     ${my.make.rule.test.targets.svc},                                   \
 208     ${my.test.target.set:TESTNAME=jdk_awt},                             \
 209     ${my.test.target.set:TESTNAME=jdk_beans},                           \
 210     ${my.test.target.set:TESTNAME=jdk_sound},                           \
 211     ${my.test.target.set:TESTNAME=jdk_swing}
 212 
 213 # PIT vm test targets (testset=pit)
 214 my.test.targets.pit=                                                    \
 215    ${my.test.targets.all}
 216 
 217 # PIT jdk test targets (testset=pit)
 218 my.make.rule.test.targets.pit=                                          \
 219     ${my.test.target.set:TESTNAME=langtools_jtreg},                     \
 220     ${my.make.rule.test.targets.core},                                  \
 221     ${my.make.rule.test.targets.svc}                                    \
 222     ${my.make.rule.test.targets.jaxp}
 223 
 224 # JCK test targets in test/Makefile (no windows)
 225 my.test.target.set.jck=                                                 \
 226     solaris_sparcv9_5.11-product-c2-JCK7TESTRULE,                       \
 227     solaris_x64_5.11-product-c2-JCK7TESTRULE,                           \
 228     linux_i586_2.6-product-c1-JCK7TESTRULE,                             \
 229     linux_x64_2.6-product-c2-JCK7TESTRULE
 230 
 231 # JCK testset targets
 232 my.make.rule.test.targets.jck=                                          \
 233     ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools},                \
 234     ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime},                 \
 235     ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
 236 
 237 
 238 #############
 239 #
 240 # Hotspot related settings (testset=hotspot)
 241 #
 242 
 243 # The hotspot build flavors
 244 my.build.flavors.hotspot=                                               \
 245     debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
 246     ${my.additional.build.flavors.hotspot}
 247 
 248 # Platforms built for hotspot push jobs
 249 my.build.targets.hotspot=                                               \
 250     solaris_sparcv9_5.11-{product|fastdebug},                   \
 251     solaris_x64_5.11-{product|fastdebug},                               \
 252     linux_i586_2.6-{product|fastdebug},                                 \
 253     linux_x64_2.6-{product|fastdebug},                  \
 254     macosx_x64_10.7-{product|fastdebug},                                \
 255     windows_i586_6.1-{product|fastdebug},                               \
 256     windows_x64_6.1-{product|fastdebug},                        \
 257     solaris_x64_5.11-{debugOpen},                                       \
 258     linux_x64_2.6-{productOpen},                                        \
 259     ${my.additional.build.targets.hotspot}
 260 
 261 # Tests to run on the various platforms for hotspot push jobs
 262 my.test.targets.hotspot.solaris.sparcv9=                                \
 263     solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98,                  \
 264     solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered,        \
 265     solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark,                \
 266     solaris_sparcv9_5.11-product-c2-runThese8,                          \
 267     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,      \
 268     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,    \
 269     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS,           \
 270     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1,            \
 271     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC,      \
 272     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_SerialGC,         \
 273     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_ParallelGC,       \
 274     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_CMS,              \
 275     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_G1,               \
 276     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_ParOldGC,         \
 277     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_default_nontiered,  \
 278     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_SerialGC,           \
 279     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParallelGC,         \
 280     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_CMS,                \
 281     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_G1,                 \
 282     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParOldGC
 283 
 284 my.test.targets.hotspot.solaris.x64=                                    \
 285     solaris_x64_5.11-{product|fastdebug}-c2-jvm98,                      \
 286     solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered,            \
 287     solaris_x64_5.11-{product|fastdebug}-c2-scimark,                    \
 288     solaris_x64_5.11-product-c2-runThese8,                              \
 289     solaris_x64_5.11-product-c2-runThese8_Xcomp_lang,                   \
 290     solaris_x64_5.11-product-c2-runThese8_Xcomp_vm,                     \
 291     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,          \
 292     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,        \
 293     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS,               \
 294     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1,                \
 295     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC,          \
 296     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_SerialGC,             \
 297     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParallelGC,           \
 298     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_CMS,                  \
 299     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_G1,                   \
 300     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParOldGC,             \
 301     solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered,      \
 302     solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC,               \
 303     solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC,             \
 304     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_CMS,                  \
 305     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_G1,                   \
 306     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParOldGC
 307 
 308 my.test.targets.hotspot.linux.i586=                                     \
 309     linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98,                   \
 310     linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered,              \
 311     linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark,                 \
 312     linux_i586_2.6-product-c1-runThese8_Xcomp_lang,                     \
 313     linux_i586_2.6-product-c1-runThese8_Xcomp_vm,                       \
 314     linux_i586_2.6-fastdebug-c1-runThese8_Xshare,                       \
 315     linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang,                   \
 316     linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm,                     \
 317     linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,       \
 318     linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,     \
 319     linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS,            \
 320     linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1,             \
 321     linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC,       \
 322     linux_i586_2.6-product-{c1|c2}-GCOld_SerialGC,                      \
 323     linux_i586_2.6-product-{c1|c2}-GCOld_ParallelGC,                    \
 324     linux_i586_2.6-product-{c1|c2}-GCOld_CMS,                           \
 325     linux_i586_2.6-product-{c1|c2}-GCOld_G1,                            \
 326     linux_i586_2.6-product-{c1|c2}-GCOld_ParOldGC,                      \
 327     linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC,                 \
 328     linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered,        \
 329     linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC,               \
 330     linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS,                      \
 331     linux_i586_2.6-{product|fastdebug}-c1-jbb_G1,                       \
 332     linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC
 333 
 334 my.test.targets.hotspot.linux.x64=                                      \
 335     linux_x64_2.6-{product|fastdebug}-c2-jvm98,                         \
 336     linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered,               \
 337     linux_x64_2.6-{product|fastdebug}-c2-scimark,                       \
 338     linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC,             \
 339     linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC,           \
 340     linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS,                  \
 341     linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1,                   \
 342     linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC,             \
 343     linux_x64_2.6-{product|fastdebug}-c2-GCOld_SerialGC,                \
 344     linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParallelGC,              \
 345     linux_x64_2.6-{product|fastdebug}-c2-GCOld_CMS,                     \
 346     linux_x64_2.6-{product|fastdebug}-c2-GCOld_G1,                      \
 347     linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParOldGC,                \
 348     linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered,         \
 349     linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC,                \
 350     linux_x64_2.6-{product|fastdebug}-c2-jbb_G1,                        \
 351     linux_x64_2.6-{product|fastdebug}-c2-jbb_ParOldGC
 352 
 353 my.test.targets.hotspot.macosx.x64=                                     \
 354     macosx_x64_10.7-{product|fastdebug}-c2-jvm98,                       \
 355     macosx_x64_10.7-{product|fastdebug}-c2-jvm98_nontiered,             \
 356     macosx_x64_10.7-{product|fastdebug}-c2-scimark,                     \
 357     macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_SerialGC,           \
 358     macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParallelGC,         \
 359     macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_CMS,                \
 360     macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_G1,                 \
 361     macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParOldGC,           \
 362     macosx_x64_10.7-{product|fastdebug}-c2-GCOld_SerialGC,              \
 363     macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParallelGC,            \
 364     macosx_x64_10.7-{product|fastdebug}-c2-GCOld_CMS,                   \
 365     macosx_x64_10.7-{product|fastdebug}-c2-GCOld_G1,                    \
 366     macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParOldGC,              \
 367     macosx_x64_10.7-{product|fastdebug}-c2-jbb_default_nontiered,       \
 368     macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParallelGC,              \
 369     macosx_x64_10.7-{product|fastdebug}-c2-jbb_G1,                      \
 370     macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParOldGC
 371 
 372 my.test.targets.hotspot.windows.i586=                                   \
 373     windows_i586_6.1-{product|fastdebug}-{c1|c2}-jvm98,                 \
 374     windows_i586_6.1-{product|fastdebug}-c2-jvm98_nontiered,            \
 375     windows_i586_6.1-{product|fastdebug}-{c1|c2}-scimark,               \
 376     windows_i586_6.1-product-{c1|c2}-runThese8,                         \
 377     windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_lang,              \
 378     windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_vm,                \
 379     windows_i586_6.1-fastdebug-c1-runThese8_Xshare,                     \
 380     windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,     \
 381     windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,   \
 382     windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_CMS,          \
 383     windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_G1,           \
 384     windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC,     \
 385     windows_i586_6.1-product-{c1|c2}-GCOld_SerialGC,                    \
 386     windows_i586_6.1-product-{c1|c2}-GCOld_ParallelGC,                  \
 387     windows_i586_6.1-product-{c1|c2}-GCOld_CMS,                         \
 388     windows_i586_6.1-product-{c1|c2}-GCOld_G1,                          \
 389     windows_i586_6.1-product-{c1|c2}-GCOld_ParOldGC,                    \
 390     windows_i586_6.1-{product|fastdebug}-{c1|c2}-jbb_default,           \
 391     windows_i586_6.1-{product|fastdebug}-c2-jbb_default_nontiered,      \
 392     windows_i586_6.1-product-{c1|c2}-jbb_ParallelGC,                    \
 393     windows_i586_6.1-product-{c1|c2}-jbb_CMS,                           \
 394     windows_i586_6.1-product-{c1|c2}-jbb_G1,                            \
 395     windows_i586_6.1-product-{c1|c2}-jbb_ParOldGC
 396 
 397 my.test.targets.hotspot.windows.x64=                                    \
 398     windows_x64_6.1-{product|fastdebug}-c2-jvm98,                       \
 399     windows_x64_6.1-{product|fastdebug}-c2-jvm98_nontiered,             \
 400     windows_x64_6.1-{product|fastdebug}-c2-scimark,                     \
 401     windows_x64_6.1-product-c2-runThese8,                               \
 402     windows_x64_6.1-product-c2-runThese8_Xcomp_lang,                    \
 403     windows_x64_6.1-product-c2-runThese8_Xcomp_vm,                      \
 404     windows_x64_6.1-{product|fastdebug}-c2-GCBasher_SerialGC,           \
 405     windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParallelGC,         \
 406     windows_x64_6.1-{product|fastdebug}-c2-GCBasher_CMS,                \
 407     windows_x64_6.1-{product|fastdebug}-c2-GCBasher_G1,                 \
 408     windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParOldGC,           \
 409     windows_x64_6.1-{product|fastdebug}-c2-GCOld_SerialGC,              \
 410     windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParallelGC,            \
 411     windows_x64_6.1-{product|fastdebug}-c2-GCOld_CMS,                   \
 412     windows_x64_6.1-{product|fastdebug}-c2-GCOld_G1,                    \
 413     windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParOldGC,              \
 414     windows_x64_6.1-{product|fastdebug}-c2-jbb_default,                 \
 415     windows_x64_6.1-{product|fastdebug}-c2-jbb_default_nontiered,       \
 416     windows_x64_6.1-product-c2-jbb_CMS,                                 \
 417     windows_x64_6.1-product-c2-jbb_ParallelGC,                          \
 418     windows_x64_6.1-product-c2-jbb_G1,                                  \
 419     windows_x64_6.1-product-c2-jbb_ParOldGC
 420 
 421 # Some basic "smoke" tests for OpenJDK builds
 422 my.test.targets.hotspot.open=                                           \
 423     solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98,              \
 424     linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
 425 
 426 # The complete list of test targets for jprt
 427 my.test.targets.hotspot=                                                \
 428   ${my.test.targets.hotspot.open},                                      \
 429   ${my.test.targets.hotspot.solaris.sparcv9},                           \
 430   ${my.test.targets.hotspot.solaris.x64},                               \
 431   ${my.test.targets.hotspot.linux.i586},                                \
 432   ${my.test.targets.hotspot.linux.x64},                                 \
 433   ${my.test.targets.hotspot.macosx.x64},                                \
 434   ${my.test.targets.hotspot.windows.i586},                              \
 435   ${my.test.targets.hotspot.windows.x64},                               \
 436   ${my.test.targets.hotspot.solaris.sparcv9},                           \
 437   ${my.test.targets.hotspot.solaris.x64},                               \
 438   ${my.test.targets.hotspot.linux.x64},                                 \
 439   ${my.test.targets.hotspot.windows.i586},                              \
 440   ${my.test.targets.hotspot.windows.x64},                               \
 441   ${my.additional.test.targets.hotspot}
 442 
 443 
 444 # Make file based test targets
 445 
 446 my.make.rule.test.targets.hotspot.clienttests=                          \
 447   linux_i586_2.6-*-c1-hotspot_clienttest,                               \
 448   windows_i586_6.1-*-c1-hotspot_clienttest
 449 
 450 my.make.rule.test.targets.hotspot.servertests=                          \
 451   solaris_sparcv9_5.11-*-c2-hotspot_servertest,                         \
 452   solaris_x64_5.11-*-c2-hotspot_servertest,                             \
 453   linux_i586_2.6-*-c2-hotspot_servertest,                               \
 454   linux_x64_2.6-*-c2-hotspot_servertest,                                \
 455   macosx_x64_10.7-*-c2-hotspot_servertest,                              \
 456   windows_i586_6.1-*-c2-hotspot_servertest,                             \
 457   windows_x64_6.1-*-c2-hotspot_servertest
 458 
 459 my.make.rule.test.targets.hotspot.internalvmtests=                      \
 460   solaris_sparcv9_5.11-fastdebug-c2-hotspot_internalvmtests,            \
 461   solaris_x64_5.11-fastdebug-c2-hotspot_internalvmtests,                \
 462   linux_i586_2.6-fastdebug-c2-hotspot_internalvmtests,                  \
 463   linux_x64_2.6-fastdebug-c2-hotspot_internalvmtests,                   \
 464   macosx_x64_10.7-fastdebug-c2-hotspot_internalvmtests,                 \
 465   windows_i586_6.1-fastdebug-c2-hotspot_internalvmtests,                \
 466   windows_x64_6.1-fastdebug-c2-hotspot_internalvmtests
 467 
 468 my.make.rule.test.targets.hotspot.reg.group=                            \
 469   solaris_sparcv9_5.11-fastdebug-c2-GROUP,                              \
 470   solaris_x64_5.11-fastdebug-c2-GROUP,                                  \
 471   linux_i586_2.6-fastdebug-c2-GROUP,                                    \
 472   linux_x64_2.6-fastdebug-c2-GROUP,                                     \
 473   macosx_x64_10.7-fastdebug-c2-GROUP,                                   \
 474   windows_i586_6.1-fastdebug-c2-GROUP,                                  \
 475   windows_x64_6.1-fastdebug-c2-GROUP,                                   \
 476   linux_i586_2.6-fastdebug-c1-GROUP,                                    \
 477   windows_i586_6.1-fastdebug-c1-GROUP
 478 
 479 my.make.rule.test.targets.hotspot=                                              \
 480   ${my.make.rule.test.targets.hotspot.clienttests},                             \
 481   ${my.make.rule.test.targets.hotspot.servertests},                             \
 482   ${my.make.rule.test.targets.hotspot.internalvmtests},                         \
 483   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_wbapitest},       \
 484   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1},      \
 485   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2},      \
 486   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3},      \
 487   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed}, \
 488   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc},              \
 489   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime},         \
 490   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime_closed},  \
 491   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability},  \
 492   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity},          \
 493   ${my.additional.make.rule.test.targets.hotspot}