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 jprt.windows_i586_6.2.build.configure.args=                             \
 119     --with-toolchain-version=2013                                       \
 120     ${jprt.i586.build.configure.args}
 121 jprt.windows_x64_6.2.build.configure.args=                              \
 122     --with-toolchain-version=2013
 123 
 124 ########
 125 #
 126 # Build targets and options (default/jdk)
 127 #
 128 
 129 # The default build flavors
 130 my.build.flavors.default=fastdebug,product
 131 
 132 # Standard list of jprt build targets for this source tree
 133 my.build.targets.default=                                               \
 134     solaris_sparcv9_5.11-{product|fastdebug},                           \
 135     solaris_x64_5.11-{product|fastdebug},                               \
 136     linux_i586_2.6-{product|fastdebug},                                 \
 137     linux_x64_2.6-{product|fastdebug},                                  \
 138     macosx_x64_10.7-{product|fastdebug},                                \
 139     macosx_x64_10.9-{product|fastdebug},                                \
 140     windows_i586_6.1-{product|fastdebug},                               \
 141     windows_x64_6.1-{product|fastdebug},                                \
 142     windows_i586_6.2-{product|fastdebug},                               \
 143     windows_x64_6.2-{product|fastdebug}
 144 
 145 # Test target list (no fastdebug & limited c2 testing)
 146 my.test.target.set=                                                     \
 147     solaris_sparcv9_5.11-product-c2-TESTNAME,                           \
 148     solaris_x64_5.11-product-c2-TESTNAME,                               \
 149     linux_i586_2.6-product-{c1|c2}-TESTNAME,                            \
 150     linux_x64_2.6-product-c2-TESTNAME,                                  \
 151     macosx_x64_10.7-product-c2-TESTNAME,                                \
 152     macosx_x64_10.9-product-c2-TESTNAME,                                \
 153     windows_i586_6.1-product-c1-TESTNAME,                               \
 154     windows_x64_6.1-product-c2-TESTNAME,                                \
 155     windows_i586_6.2-product-c1-TESTNAME,                               \
 156     windows_x64_6.2-product-c2-TESTNAME
 157 
 158 # Default vm test targets (testset=default)
 159 my.test.targets.default=                                                \
 160     ${my.test.target.set:TESTNAME=jvm98},                               \
 161     ${my.test.target.set:TESTNAME=scimark}
 162 
 163 # Default jdk test targets (testset=default)
 164 my.make.rule.test.targets.default=                                      \
 165     ${my.test.target.set:TESTNAME=langtools_jtreg},                     \
 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 
 170 # Default vm test targets (testset=core)
 171 my.test.targets.core=
 172 
 173 # Core jdk test targets (testset=core)
 174 my.make.rule.test.targets.core=                                         \
 175     ${my.test.target.set:TESTNAME=jdk_lang},                            \
 176     ${my.test.target.set:TESTNAME=jdk_math},                            \
 177     ${my.test.target.set:TESTNAME=jdk_util},                            \
 178     ${my.test.target.set:TESTNAME=jdk_io},                              \
 179     ${my.test.target.set:TESTNAME=jdk_net},                             \
 180     ${my.test.target.set:TESTNAME=jdk_nio},                             \
 181     ${my.test.target.set:TESTNAME=jdk_security1},                       \
 182     ${my.test.target.set:TESTNAME=jdk_security2},                       \
 183     ${my.test.target.set:TESTNAME=jdk_security3},                       \
 184     ${my.test.target.set:TESTNAME=jdk_security4},                       \
 185     ${my.test.target.set:TESTNAME=jdk_rmi},                             \
 186     ${my.test.target.set:TESTNAME=jdk_text},                            \
 187     ${my.test.target.set:TESTNAME=jdk_time},                            \
 188     ${my.test.target.set:TESTNAME=jdk_other},                           \
 189     ${my.test.target.set:TESTNAME=core_tools}
 190 
 191 # Svc vm test targets (testset=svc)
 192 my.test.targets.svc=
 193 
 194 # Core jdk test targets (testset=svc)
 195 my.make.rule.test.targets.svc=                                          \
 196     ${my.test.target.set:TESTNAME=jdk_management},                      \
 197     ${my.test.target.set:TESTNAME=jdk_instrument},                      \
 198     ${my.test.target.set:TESTNAME=jdk_jmx},                             \
 199     ${my.test.target.set:TESTNAME=jdk_jdi},                             \
 200     ${my.test.target.set:TESTNAME=svc_tools},                           \
 201     ${my.make.rule.test.targets.svc.extra}
 202 
 203 # JAXP vm test targets (testset=jaxp)
 204 my.test.targets.jaxp=
 205 
 206 # JAXP test targets (testset=jaxp)
 207 my.make.rule.test.targets.jaxp=                                         \
 208     ${my.test.target.set:TESTNAME=jaxp_all}
 209 
 210 # All vm test targets (testset=all)
 211 my.test.targets.all=                                                    \
 212     ${my.test.targets.default},                                         \
 213     ${my.test.target.set:TESTNAME=runThese},                            \
 214     ${my.test.target.set:TESTNAME=jbb_default}
 215 
 216 # All jdk test targets (testset=all)
 217 my.make.rule.test.targets.all=                                          \
 218     ${my.make.rule.test.targets.core},                                  \
 219     ${my.make.rule.test.targets.svc},                                   \
 220     ${my.test.target.set:TESTNAME=jdk_awt},                             \
 221     ${my.test.target.set:TESTNAME=jdk_beans},                           \
 222     ${my.test.target.set:TESTNAME=jdk_sound},                           \
 223     ${my.test.target.set:TESTNAME=jdk_swing}
 224 
 225 # PIT vm test targets (testset=pit)
 226 my.test.targets.pit=                                                    \
 227    ${my.test.targets.all}
 228 
 229 # PIT jdk test targets (testset=pit)
 230 my.make.rule.test.targets.pit=                                          \
 231     ${my.test.target.set:TESTNAME=langtools_jtreg},                     \
 232     ${my.make.rule.test.targets.core},                                  \
 233     ${my.make.rule.test.targets.svc}                                    \
 234     ${my.make.rule.test.targets.jaxp}
 235 
 236 # JCK test targets in test/Makefile (no windows)
 237 my.test.target.set.jck=                                                 \
 238     solaris_sparcv9_5.11-product-c2-JCK7TESTRULE,                       \
 239     solaris_x64_5.11-product-c2-JCK7TESTRULE,                           \
 240     linux_i586_2.6-product-c1-JCK7TESTRULE,                             \
 241     linux_x64_2.6-product-c2-JCK7TESTRULE
 242 
 243 # JCK testset targets
 244 my.make.rule.test.targets.jck=                                          \
 245     ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools},                \
 246     ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime},                 \
 247     ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
 248 
 249 
 250 #############
 251 #
 252 # Hotspot related settings (testset=hotspot)
 253 #
 254 
 255 # The hotspot build flavors
 256 my.build.flavors.hotspot=                                               \
 257     debugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
 258     ${my.additional.build.flavors.hotspot}
 259 
 260 # Platforms built for hotspot push jobs
 261 my.build.targets.hotspot=                                               \
 262     solaris_sparcv9_5.11-{product|fastdebug},                   \
 263     solaris_x64_5.11-{product|fastdebug},                               \
 264     linux_i586_2.6-{product|fastdebug},                                 \
 265     linux_x64_2.6-{product|fastdebug},                  \
 266     macosx_x64_10.7-{product|fastdebug},                                \
 267     windows_i586_6.1-{product|fastdebug},                               \
 268     windows_x64_6.1-{product|fastdebug},                        \
 269     solaris_x64_5.11-{debugOpen},                                       \
 270     linux_x64_2.6-{productOpen},                                        \
 271     ${my.additional.build.targets.hotspot}
 272 
 273 # Tests to run on the various platforms for hotspot push jobs
 274 my.test.targets.hotspot.solaris.sparcv9=                                \
 275     solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98,                  \
 276     solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered,        \
 277     solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark,                \
 278     solaris_sparcv9_5.11-product-c2-runThese8,                          \
 279     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,      \
 280     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,    \
 281     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS,           \
 282     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1,            \
 283     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC,      \
 284     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_SerialGC,         \
 285     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_ParallelGC,       \
 286     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_CMS,              \
 287     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_G1,               \
 288     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_ParOldGC,         \
 289     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_default_nontiered,  \
 290     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_SerialGC,           \
 291     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParallelGC,         \
 292     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_CMS,                \
 293     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_G1,                 \
 294     solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParOldGC
 295 
 296 my.test.targets.hotspot.solaris.x64=                                    \
 297     solaris_x64_5.11-{product|fastdebug}-c2-jvm98,                      \
 298     solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered,            \
 299     solaris_x64_5.11-{product|fastdebug}-c2-scimark,                    \
 300     solaris_x64_5.11-product-c2-runThese8,                              \
 301     solaris_x64_5.11-product-c2-runThese8_Xcomp_lang,                   \
 302     solaris_x64_5.11-product-c2-runThese8_Xcomp_vm,                     \
 303     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,          \
 304     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,        \
 305     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS,               \
 306     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1,                \
 307     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC,          \
 308     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_SerialGC,             \
 309     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParallelGC,           \
 310     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_CMS,                  \
 311     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_G1,                   \
 312     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParOldGC,             \
 313     solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered,      \
 314     solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC,               \
 315     solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC,             \
 316     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_CMS,                  \
 317     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_G1,                   \
 318     solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParOldGC
 319 
 320 my.test.targets.hotspot.linux.i586=                                     \
 321     linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98,                   \
 322     linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered,              \
 323     linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark,                 \
 324     linux_i586_2.6-product-c1-runThese8_Xcomp_lang,                     \
 325     linux_i586_2.6-product-c1-runThese8_Xcomp_vm,                       \
 326     linux_i586_2.6-fastdebug-c1-runThese8_Xshare,                       \
 327     linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_lang,                   \
 328     linux_i586_2.6-fastdebug-c2-runThese8_Xcomp_vm,                     \
 329     linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,       \
 330     linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,     \
 331     linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS,            \
 332     linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1,             \
 333     linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC,       \
 334     linux_i586_2.6-product-{c1|c2}-GCOld_SerialGC,                      \
 335     linux_i586_2.6-product-{c1|c2}-GCOld_ParallelGC,                    \
 336     linux_i586_2.6-product-{c1|c2}-GCOld_CMS,                           \
 337     linux_i586_2.6-product-{c1|c2}-GCOld_G1,                            \
 338     linux_i586_2.6-product-{c1|c2}-GCOld_ParOldGC,                      \
 339     linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC,                 \
 340     linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered,        \
 341     linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC,               \
 342     linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS,                      \
 343     linux_i586_2.6-{product|fastdebug}-c1-jbb_G1,                       \
 344     linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC
 345 
 346 my.test.targets.hotspot.linux.x64=                                      \
 347     linux_x64_2.6-{product|fastdebug}-c2-jvm98,                         \
 348     linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered,               \
 349     linux_x64_2.6-{product|fastdebug}-c2-scimark,                       \
 350     linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC,             \
 351     linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC,           \
 352     linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS,                  \
 353     linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1,                   \
 354     linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC,             \
 355     linux_x64_2.6-{product|fastdebug}-c2-GCOld_SerialGC,                \
 356     linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParallelGC,              \
 357     linux_x64_2.6-{product|fastdebug}-c2-GCOld_CMS,                     \
 358     linux_x64_2.6-{product|fastdebug}-c2-GCOld_G1,                      \
 359     linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParOldGC,                \
 360     linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered,         \
 361     linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC,                \
 362     linux_x64_2.6-{product|fastdebug}-c2-jbb_G1,                        \
 363     linux_x64_2.6-{product|fastdebug}-c2-jbb_ParOldGC
 364 
 365 my.test.targets.hotspot.macosx.x64=                                     \
 366     macosx_x64_10.7-{product|fastdebug}-c2-jvm98,                       \
 367     macosx_x64_10.7-{product|fastdebug}-c2-jvm98_nontiered,             \
 368     macosx_x64_10.7-{product|fastdebug}-c2-scimark,                     \
 369     macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_SerialGC,           \
 370     macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParallelGC,         \
 371     macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_CMS,                \
 372     macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_G1,                 \
 373     macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParOldGC,           \
 374     macosx_x64_10.7-{product|fastdebug}-c2-GCOld_SerialGC,              \
 375     macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParallelGC,            \
 376     macosx_x64_10.7-{product|fastdebug}-c2-GCOld_CMS,                   \
 377     macosx_x64_10.7-{product|fastdebug}-c2-GCOld_G1,                    \
 378     macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParOldGC,              \
 379     macosx_x64_10.7-{product|fastdebug}-c2-jbb_default_nontiered,       \
 380     macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParallelGC,              \
 381     macosx_x64_10.7-{product|fastdebug}-c2-jbb_G1,                      \
 382     macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParOldGC
 383 
 384 my.test.targets.hotspot.windows.i586=                                   \
 385     windows_i586_6.1-{product|fastdebug}-{c1|c2}-jvm98,                 \
 386     windows_i586_6.1-{product|fastdebug}-c2-jvm98_nontiered,            \
 387     windows_i586_6.1-{product|fastdebug}-{c1|c2}-scimark,               \
 388     windows_i586_6.1-product-{c1|c2}-runThese8,                         \
 389     windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_lang,              \
 390     windows_i586_6.1-product-{c1|c2}-runThese8_Xcomp_vm,                \
 391     windows_i586_6.1-fastdebug-c1-runThese8_Xshare,                     \
 392     windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC,     \
 393     windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC,   \
 394     windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_CMS,          \
 395     windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_G1,           \
 396     windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC,     \
 397     windows_i586_6.1-product-{c1|c2}-GCOld_SerialGC,                    \
 398     windows_i586_6.1-product-{c1|c2}-GCOld_ParallelGC,                  \
 399     windows_i586_6.1-product-{c1|c2}-GCOld_CMS,                         \
 400     windows_i586_6.1-product-{c1|c2}-GCOld_G1,                          \
 401     windows_i586_6.1-product-{c1|c2}-GCOld_ParOldGC,                    \
 402     windows_i586_6.1-{product|fastdebug}-{c1|c2}-jbb_default,           \
 403     windows_i586_6.1-{product|fastdebug}-c2-jbb_default_nontiered,      \
 404     windows_i586_6.1-product-{c1|c2}-jbb_ParallelGC,                    \
 405     windows_i586_6.1-product-{c1|c2}-jbb_CMS,                           \
 406     windows_i586_6.1-product-{c1|c2}-jbb_G1,                            \
 407     windows_i586_6.1-product-{c1|c2}-jbb_ParOldGC
 408 
 409 my.test.targets.hotspot.windows.x64=                                    \
 410     windows_x64_6.1-{product|fastdebug}-c2-jvm98,                       \
 411     windows_x64_6.1-{product|fastdebug}-c2-jvm98_nontiered,             \
 412     windows_x64_6.1-{product|fastdebug}-c2-scimark,                     \
 413     windows_x64_6.1-product-c2-runThese8,                               \
 414     windows_x64_6.1-product-c2-runThese8_Xcomp_lang,                    \
 415     windows_x64_6.1-product-c2-runThese8_Xcomp_vm,                      \
 416     windows_x64_6.1-{product|fastdebug}-c2-GCBasher_SerialGC,           \
 417     windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParallelGC,         \
 418     windows_x64_6.1-{product|fastdebug}-c2-GCBasher_CMS,                \
 419     windows_x64_6.1-{product|fastdebug}-c2-GCBasher_G1,                 \
 420     windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParOldGC,           \
 421     windows_x64_6.1-{product|fastdebug}-c2-GCOld_SerialGC,              \
 422     windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParallelGC,            \
 423     windows_x64_6.1-{product|fastdebug}-c2-GCOld_CMS,                   \
 424     windows_x64_6.1-{product|fastdebug}-c2-GCOld_G1,                    \
 425     windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParOldGC,              \
 426     windows_x64_6.1-{product|fastdebug}-c2-jbb_default,                 \
 427     windows_x64_6.1-{product|fastdebug}-c2-jbb_default_nontiered,       \
 428     windows_x64_6.1-product-c2-jbb_CMS,                                 \
 429     windows_x64_6.1-product-c2-jbb_ParallelGC,                          \
 430     windows_x64_6.1-product-c2-jbb_G1,                                  \
 431     windows_x64_6.1-product-c2-jbb_ParOldGC
 432 
 433 # Some basic "smoke" tests for OpenJDK builds
 434 my.test.targets.hotspot.open=                                           \
 435     solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98,              \
 436     linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
 437 
 438 # The complete list of test targets for jprt
 439 my.test.targets.hotspot=                                                \
 440   ${my.test.targets.hotspot.open},                                      \
 441   ${my.test.targets.hotspot.solaris.sparcv9},                           \
 442   ${my.test.targets.hotspot.solaris.x64},                               \
 443   ${my.test.targets.hotspot.linux.i586},                                \
 444   ${my.test.targets.hotspot.linux.x64},                                 \
 445   ${my.test.targets.hotspot.macosx.x64},                                \
 446   ${my.test.targets.hotspot.windows.i586},                              \
 447   ${my.test.targets.hotspot.windows.x64},                               \
 448   ${my.test.targets.hotspot.solaris.sparcv9},                           \
 449   ${my.test.targets.hotspot.solaris.x64},                               \
 450   ${my.test.targets.hotspot.linux.x64},                                 \
 451   ${my.test.targets.hotspot.windows.i586},                              \
 452   ${my.test.targets.hotspot.windows.x64},                               \
 453   ${my.additional.test.targets.hotspot}
 454 
 455 
 456 # Make file based test targets
 457 
 458 my.make.rule.test.targets.hotspot.clienttests=                          \
 459   linux_i586_2.6-*-c1-hotspot_clienttest,                               \
 460   windows_i586_6.1-*-c1-hotspot_clienttest
 461 
 462 my.make.rule.test.targets.hotspot.servertests=                          \
 463   solaris_sparcv9_5.11-*-c2-hotspot_servertest,                         \
 464   solaris_x64_5.11-*-c2-hotspot_servertest,                             \
 465   linux_i586_2.6-*-c2-hotspot_servertest,                               \
 466   linux_x64_2.6-*-c2-hotspot_servertest,                                \
 467   macosx_x64_10.7-*-c2-hotspot_servertest,                              \
 468   windows_i586_6.1-*-c2-hotspot_servertest,                             \
 469   windows_x64_6.1-*-c2-hotspot_servertest
 470 
 471 my.make.rule.test.targets.hotspot.internalvmtests=                      \
 472   solaris_sparcv9_5.11-fastdebug-c2-hotspot_internalvmtests,            \
 473   solaris_x64_5.11-fastdebug-c2-hotspot_internalvmtests,                \
 474   linux_i586_2.6-fastdebug-c2-hotspot_internalvmtests,                  \
 475   linux_x64_2.6-fastdebug-c2-hotspot_internalvmtests,                   \
 476   macosx_x64_10.7-fastdebug-c2-hotspot_internalvmtests,                 \
 477   windows_i586_6.1-fastdebug-c2-hotspot_internalvmtests,                \
 478   windows_x64_6.1-fastdebug-c2-hotspot_internalvmtests
 479 
 480 my.make.rule.test.targets.hotspot.reg.group=                            \
 481   solaris_sparcv9_5.11-fastdebug-c2-GROUP,                              \
 482   solaris_x64_5.11-fastdebug-c2-GROUP,                                  \
 483   linux_i586_2.6-fastdebug-c2-GROUP,                                    \
 484   linux_x64_2.6-fastdebug-c2-GROUP,                                     \
 485   macosx_x64_10.7-fastdebug-c2-GROUP,                                   \
 486   windows_i586_6.1-fastdebug-c2-GROUP,                                  \
 487   windows_x64_6.1-fastdebug-c2-GROUP,                                   \
 488   linux_i586_2.6-fastdebug-c1-GROUP,                                    \
 489   windows_i586_6.1-fastdebug-c1-GROUP
 490 
 491 my.make.rule.test.targets.hotspot=                                              \
 492   ${my.make.rule.test.targets.hotspot.clienttests},                             \
 493   ${my.make.rule.test.targets.hotspot.servertests},                             \
 494   ${my.make.rule.test.targets.hotspot.internalvmtests},                         \
 495   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_wbapitest},       \
 496   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_1},      \
 497   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_2},      \
 498   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_3},      \
 499   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler_closed}, \
 500   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc},              \
 501   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime},         \
 502   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime_closed},  \
 503   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability},  \
 504   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity},          \
 505   ${my.additional.make.rule.test.targets.hotspot}