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