1 #
   2 # Copyright (c) 2006, 2016, 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 # Install test bundle for targets in jprt.test.bundle.targets set
  32 jprt.selective.test.bundle.installation=true
  33 
  34 # The current release name
  35 jprt.tools.default.release=jdk9
  36 
  37 # Allow concurrent changes to be merged in prior to pushing
  38 jprt.sync.push=true
  39 
  40 # Directories to be excluded from the source bundles
  41 jprt.bundle.exclude.src.dirs=build dist webrev
  42 
  43 # Use configure when building
  44 jprt.build.use.configure=true
  45 jprt.build.use.jib=true
  46 jprt.test.use.jib=true
  47 jprt.jib.launcher=common/bin/jib.sh
  48 
  49 # Clear out all the build needs as JIB handles this
  50 jprt.jdk9.build.needs=
  51 jprt.macosx.jdk9.build.needs=
  52 jprt.windows_i586.jdk9.build.needs=
  53 jprt.windows_x64.jdk9.build.needs=
  54 jprt.solaris.jdk9.build.needs=
  55 jprt.linux_i586.jdk9.build.needs=
  56 jprt.linux_x64.jdk9.build.needs=
  57 jprt.linux_armv6.jdk9.build.needs=
  58 jprt.linux_armvh.jdk9.build.needs=
  59 jprt.linux_arm64.jdk9.build.needs=
  60 jprt.linux_armsflt.jdk9.build.needs=
  61 jprt.linux_armvfpsflt.jdk9.build.needs=
  62 jprt.linux_armvfphflt.jdk9.build.needs=
  63 jprt.linux_armv6vfphflt.jdk9.build.needs=
  64 jprt.solaris.client.build.needs=
  65 jprt.linux.client.build.needs=
  66 jprt.solaris.jdk9.compiler=
  67 jprt.linux.jdk9.compiler=
  68 jprt.jdk9.test.needs=
  69 
  70 # Disable the need for preinstalled Visual Studio and Xcode
  71 jprt.windows.jdk9.compiler=
  72 jprt.windows.6.2.jdk9.compiler=
  73 jprt.windows.6.3.jdk9.compiler=
  74 jprt.windows.jdk9.target.attribute.compilerVS2013.appliesTo.builds=none
  75 jprt.macosx.jdk9.target.attribute.compilerXcode511.appliesTo.builds=none
  76 
  77 # Set up the run flavors (jvm variants)
  78 jprt.run.flavors=c2,default,${my.additional.run.flavors}
  79 
  80 # Setup jib profiles
  81 jprt.linux_i586.product.build.jib.profile=linux-x86
  82 jprt.linux_x64.product.build.jib.profile=linux-x64
  83 jprt.macosx_x64.product.build.jib.profile=macosx-x64
  84 jprt.solaris_sparcv9.product.build.jib.profile=solaris-sparcv9
  85 jprt.solaris_x64.product.build.jib.profile=solaris-x64
  86 jprt.windows_i586.product.build.jib.profile=windows-x86
  87 jprt.windows_x64.product.build.jib.profile=windows-x64
  88 
  89 jprt.linux_i586.fastdebug.build.jib.profile=linux-x86-debug
  90 jprt.linux_x64.fastdebug.build.jib.profile=linux-x64-debug
  91 jprt.macosx_x64.fastdebug.build.jib.profile=macosx-x64-debug
  92 jprt.solaris_sparcv9.fastdebug.build.jib.profile=solaris-sparcv9-debug
  93 jprt.solaris_x64.fastdebug.build.jib.profile=solaris-x64-debug
  94 jprt.windows_i586.fastdebug.build.jib.profile=windows-x86-debug
  95 jprt.windows_x64.fastdebug.build.jib.profile=windows-x64-debug
  96 
  97 jprt.linux_i586.slowdebug.build.jib.profile=linux-x86-slowdebug
  98 jprt.linux_x64.slowdebug.build.jib.profile=linux-x64-slowdebug
  99 jprt.macosx_x64.slowdebug.build.jib.profile=macosx-x64-slowdebug
 100 jprt.solaris_sparcv9.slowdebug.build.jib.profile=solaris-sparcv9-slowdebug
 101 jprt.solaris_x64.slowdebug.build.jib.profile=solaris-x64-slowdebug
 102 jprt.windows_i586.slowdebug.build.jib.profile=windows-x86-slowdebug
 103 jprt.windows_x64.slowdebug.build.jib.profile=windows-x64-slowdebug
 104 
 105 jprt.linux_i586.productOpen.build.jib.profile=linux-x86-open
 106 jprt.linux_x64.productOpen.build.jib.profile=linux-x64-open
 107 jprt.macosx_x64.productOpen.build.jib.profile=macosx-x64-open
 108 jprt.solaris_sparcv9.productOpen.build.jib.profile=solaris-sparcv9-open
 109 jprt.solaris_x64.productOpen.build.jib.profile=solaris-x64-open
 110 jprt.windows_i586.productOpen.build.jib.profile=windows-x86-open
 111 jprt.windows_x64.productOpen.build.jib.profile=windows-x64-open
 112 
 113 jprt.linux_i586.fastdebugOpen.build.jib.profile=linux-x86-open-debug
 114 jprt.linux_x64.fastdebugOpen.build.jib.profile=linux-x64-open-debug
 115 jprt.macosx_x64.fastdebugOpen.build.jib.profile=macosx-x64-open-debug
 116 jprt.solaris_sparcv9.fastdebugOpen.build.jib.profile=solaris-sparcv9-open-debug
 117 jprt.solaris_x64.fastdebugOpen.build.jib.profile=solaris-x64-open-debug
 118 jprt.windows_i586.fastdebugOpen.build.jib.profile=windows-x86-open-debug
 119 jprt.windows_x64.fastdebugOpen.build.jib.profile=windows-x64-open-debug
 120 
 121 jprt.test.jib.profile=run-test
 122 
 123 # Set make target to use for different build flavors
 124 jprt.build.flavor.fastdebugOpen.target=jprt_bundle
 125 jprt.build.flavor.fastdebug.target=jprt_bundle
 126 jprt.build.flavor.product.target=jprt_bundle
 127 jprt.build.flavor.productOpen.target=jprt_bundle
 128 jprt.build.flavor.optimized.target=jprt_bundle
 129 jprt.build.flavor.optimizedOpen.target=jprt_bundle
 130 jprt.build.flavor.slowdebug.target=jprt_bundle
 131 
 132 # Use these configure args to define debug level or provide specific
 133 # configuration details not covered by Jib profiles.
 134 jprt.slowdebug.build.configure.args=
 135 jprt.fastdebug.build.configure.args=--disable-precompiled-headers
 136 # Don't disable precompiled headers on windows. It's simply too slow.
 137 jprt.windows_i586.fastdebug.build.configure.args=
 138 jprt.windows_x64.fastdebug.build.configure.args=
 139 jprt.windows_i586.fastdebugOpen.build.configure.args=
 140 jprt.windows_x64.fastdebugOpen.build.configure.args=
 141 jprt.product.build.configure.args=
 142 jprt.optimized.build.configure.args=--with-debug-level=optimized
 143 jprt.slowdebugOpen.build.configure.args=${jprt.slowdebug.build.configure.args}
 144 jprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args}
 145 jprt.productOpen.build.configure.args=${jprt.product.build.configure.args}
 146 jprt.optimizedOpen.build.configure.args=${jprt.product.build.configure.args}
 147 
 148 
 149 # hotspot testset has custom build flavors and build targets
 150 my.jprt.testsetHasCustomBuildFlavors.hotspot=true
 151 my.jprt.testsetHasCustomBuildTargets.hotspot=true
 152 my.jprt.testsetHasCustomBuildFlavors.buildinfra=true
 153 my.jprt.testsetHasCustomBuildTargets.buildinfra=true
 154 
 155 # determine if the specified testset has custom build flavors or build targets
 156 my.jprt.testsetHasCustomBuildFlavors=${my.jprt.testsetHasCustomBuildFlavors.${jprt.test.set}}
 157 my.jprt.testsetHasCustomBuildTargets=${my.jprt.testsetHasCustomBuildTargets.${jprt.test.set}}
 158 
 159 # Select build flavors and build targets based on the specified testset
 160 jprt.build.flavors=${my.jprt.testsetHasCustomBuildFlavors ? \
 161     ${my.build.flavors.${jprt.test.set}} : ${my.build.flavors.default}}
 162 jprt.build.targets=${my.jprt.testsetHasCustomBuildTargets ? \
 163     ${my.build.targets.${jprt.test.set}} : ${my.build.targets.default}}
 164 
 165 # Select test targets - jprt default for jprt.test.set is "default"
 166 jprt.test.targets=${my.test.targets.${jprt.test.set}}
 167 jprt.make.rule.test.targets=${my.make.rule.test.targets.${jprt.test.set}}
 168 jprt.test.bundle.targets=${my.jprt.test.bundle.targets.${jprt.test.set}}
 169 
 170 # 7155453: Work-around to prevent popups on OSX from blocking test completion
 171 # but the work-around is added to all platforms to be consistent
 172 jprt.jbb.options=-Djava.awt.headless=true
 173 
 174 ########
 175 #
 176 # Build options (generic)
 177 #
 178 
 179 # Configure args common to all builds
 180 # Also allows for additional, testset specific configure arguments to be set
 181 jprt.build.configure.args=                                              \
 182     --with-output-sync=recurse                                          \
 183     --with-jobs=$ALT_PARALLEL_COMPILE_JOBS                              \
 184     --with-version-opt=$JPRT_JOB_ID                                     \
 185     ${my.additional.build.configure.args.${jprt.test.set}}              \
 186     ${my.custom.build.configure.args}
 187 
 188 ########
 189 #
 190 # Build targets and options (default/jdk)
 191 #
 192 
 193 # The default build flavors
 194 my.build.flavors.default=fastdebug,product
 195 
 196 # Standard list of jprt build targets for this source tree
 197 my.build.targets.default= \
 198     solaris_sparcv9_5.11-{product|fastdebug}, \
 199     solaris_x64_5.11-{product|fastdebug}, \
 200     linux_i586_3.8-{product|fastdebug}, \
 201     linux_x64_3.8-{product|fastdebug}, \
 202     macosx_x64_10.9-{product|fastdebug}, \
 203     windows_i586_6.3-{product|fastdebug}, \
 204     windows_x64_6.3-{product|fastdebug}, \
 205     ${my.additional.build.targets.default}
 206 
 207 # Test target list (no fastdebug & limited c2 testing)
 208 my.test.target.set=                                                     \
 209     solaris_sparcv9_5.11-product-c2-TESTNAME,                           \
 210     solaris_x64_5.11-product-c2-TESTNAME,                               \
 211     linux_i586_3.8-product-c2-TESTNAME,                                 \
 212     linux_x64_3.8-product-c2-TESTNAME,                                  \
 213     macosx_x64_10.9-product-c2-TESTNAME,                                \
 214     windows_i586_6.3-product-c2-TESTNAME,                               \
 215     windows_x64_6.3-product-c2-TESTNAME
 216 
 217 # Default vm test targets (testset=default)
 218 my.test.targets.default=                                                \
 219     ${my.test.target.set:TESTNAME=jvm98},                               \
 220     ${my.test.target.set:TESTNAME=scimark}
 221 
 222 # Default jdk test targets (testset=default)
 223 my.make.rule.test.targets.default=                                      \
 224     ${my.test.target.set:TESTNAME=langtools_jtreg},                     \
 225     ${my.test.target.set:TESTNAME=jdk_lang},                            \
 226     ${my.test.target.set:TESTNAME=jdk_math},                            \
 227     ${my.test.target.set:TESTNAME=jdk_util}
 228 
 229 # Default vm test targets (testset=core)
 230 my.test.targets.core=
 231 
 232 # Core jdk test targets (testset=core)
 233 my.make.rule.test.targets.core=                                         \
 234     ${my.test.target.set:TESTNAME=jdk_lang},                            \
 235     ${my.test.target.set:TESTNAME=jdk_math},                            \
 236     ${my.test.target.set:TESTNAME=jdk_util},                            \
 237     ${my.test.target.set:TESTNAME=jdk_io},                              \
 238     ${my.test.target.set:TESTNAME=jdk_net},                             \
 239     ${my.test.target.set:TESTNAME=jdk_nio},                             \
 240     ${my.test.target.set:TESTNAME=jdk_security1},                       \
 241     ${my.test.target.set:TESTNAME=jdk_security2},                       \
 242     ${my.test.target.set:TESTNAME=jdk_security3},                       \
 243     ${my.test.target.set:TESTNAME=jdk_security4},                       \
 244     ${my.test.target.set:TESTNAME=jdk_rmi},                             \
 245     ${my.test.target.set:TESTNAME=jdk_text},                            \
 246     ${my.test.target.set:TESTNAME=jdk_time},                            \
 247     ${my.test.target.set:TESTNAME=jdk_other},                           \
 248     ${my.test.target.set:TESTNAME=core_tools}
 249 
 250 # Svc vm test targets (testset=svc)
 251 my.test.targets.svc=
 252 
 253 # Core jdk test targets (testset=svc)
 254 my.make.rule.test.targets.svc=                                          \
 255     ${my.test.target.set:TESTNAME=jdk_management},                      \
 256     ${my.test.target.set:TESTNAME=jdk_instrument},                      \
 257     ${my.test.target.set:TESTNAME=jdk_jmx},                             \
 258     ${my.test.target.set:TESTNAME=jdk_jdi},                             \
 259     ${my.test.target.set:TESTNAME=svc_tools},                           \
 260     ${my.make.rule.test.targets.svc.extra}
 261 
 262 # JAXP vm test targets (testset=jaxp)
 263 my.test.targets.jaxp=
 264 
 265 # JAXP test targets (testset=jaxp)
 266 my.make.rule.test.targets.jaxp=                                         \
 267     ${my.test.target.set:TESTNAME=jaxp_all}
 268 
 269 # All vm test targets (testset=all)
 270 my.test.targets.all=                                                    \
 271     ${my.test.targets.default},                                         \
 272     ${my.test.target.set:TESTNAME=runThese},                            \
 273     ${my.test.target.set:TESTNAME=jbb_default}
 274 
 275 # All jdk test targets (testset=all)
 276 my.make.rule.test.targets.all=                                          \
 277     ${my.make.rule.test.targets.core},                                  \
 278     ${my.make.rule.test.targets.svc},                                   \
 279     ${my.test.target.set:TESTNAME=jdk_awt},                             \
 280     ${my.test.target.set:TESTNAME=jdk_beans},                           \
 281     ${my.test.target.set:TESTNAME=jdk_sound},                           \
 282     ${my.test.target.set:TESTNAME=jdk_swing}
 283 
 284 # PIT vm test targets (testset=pit)
 285 my.test.targets.pit=                                                    \
 286    ${my.test.targets.all}
 287 
 288 # PIT jdk test targets (testset=pit)
 289 my.make.rule.test.targets.pit=                                          \
 290     ${my.test.target.set:TESTNAME=langtools_jtreg},                     \
 291     ${my.make.rule.test.targets.core},                                  \
 292     ${my.make.rule.test.targets.svc}                                    \
 293     ${my.make.rule.test.targets.jaxp}
 294 
 295 # JCK test targets in test/Makefile (no windows)
 296 my.test.target.set.jck=                                                 \
 297     solaris_sparcv9_5.11-product-c2-JCK7TESTRULE,                       \
 298     solaris_x64_5.11-product-c2-JCK7TESTRULE,                           \
 299     linux_i586_3.8-product-c2-JCK7TESTRULE,                             \
 300     linux_x64_3.8-product-c2-JCK7TESTRULE
 301 
 302 # JCK testset targets
 303 my.make.rule.test.targets.jck=                                          \
 304     ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools},                \
 305     ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime},                 \
 306     ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
 307 
 308 
 309 #############
 310 #
 311 # Hotspot related settings (testset=hotspot)
 312 #
 313 
 314 # The hotspot build flavors
 315 my.build.flavors.hotspot=                                               \
 316     fastdebugOpen,fastdebug,product,productOpen,optimized,optimizedOpen \
 317     ${my.additional.build.flavors.hotspot}
 318 
 319 # Platforms built for hotspot push jobs
 320 my.build.targets.hotspot=                                               \
 321     solaris_sparcv9_5.11-{product|fastdebug},                           \
 322     solaris_x64_5.11-{product|fastdebug},                               \
 323     linux_i586_3.8-{product|fastdebug},                                 \
 324     linux_x64_3.8-{product|fastdebug},                                  \
 325     macosx_x64_10.9-{product|fastdebug},                                \
 326     windows_i586_6.3-{product|fastdebug},                               \
 327     windows_x64_6.3-{product|fastdebug},                                \
 328     solaris_x64_5.11-{fastdebugOpen},                                   \
 329     linux_x64_3.8-{productOpen},                                        \
 330     ${my.additional.build.targets.hotspot}
 331 
 332 # Tests to run on the various platforms for hotspot push jobs
 333 my.test.targets.hotspot.solaris.sparcv9=                                \
 334     solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98,                  \
 335     solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered,        \
 336     solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark,                \
 337     solaris_sparcv9_5.11-product-c2-runThese8,                          \
 338     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,      \
 339     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,    \
 340     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS,           \
 341     solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1
 342 
 343 my.test.targets.hotspot.solaris.x64=                                    \
 344     solaris_x64_5.11-{product|fastdebug}-c2-jvm98,                      \
 345     solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered,            \
 346     solaris_x64_5.11-{product|fastdebug}-c2-scimark,                    \
 347     solaris_x64_5.11-product-c2-runThese8,                              \
 348     solaris_x64_5.11-product-c2-runThese8_Xcomp_lang,                   \
 349     solaris_x64_5.11-product-c2-runThese8_Xcomp_vm,                     \
 350     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC,          \
 351     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC,        \
 352     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS,               \
 353     solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1
 354 
 355 my.test.targets.hotspot.linux.i586=                                     \
 356     linux_i586_3.8-{product|fastdebug}-c2-jvm98,                        \
 357     linux_i586_3.8-{product|fastdebug}-c2-jvm98_nontiered,              \
 358     linux_i586_3.8-{product|fastdebug}-c2-scimark,                      \
 359     linux_i586_3.8-fastdebug-c2-runThese8_Xcomp_lang,                   \
 360     linux_i586_3.8-fastdebug-c2-runThese8_Xcomp_vm,                     \
 361     linux_i586_3.8-{product|fastdebug}-c2-GCBasher_SerialGC,            \
 362     linux_i586_3.8-{product|fastdebug}-c2-GCBasher_ParallelGC,          \
 363     linux_i586_3.8-{product|fastdebug}-c2-GCBasher_CMS,                 \
 364     linux_i586_3.8-{product|fastdebug}-c2-GCBasher_G1
 365 
 366 my.test.targets.hotspot.linux.x64=                                      \
 367     linux_x64_3.8-{product|fastdebug}-c2-jvm98,                         \
 368     linux_x64_3.8-{product|fastdebug}-c2-jvm98_nontiered,               \
 369     linux_x64_3.8-{product|fastdebug}-c2-scimark,                       \
 370     linux_x64_3.8-{product|fastdebug}-c2-GCBasher_SerialGC,             \
 371     linux_x64_3.8-{product|fastdebug}-c2-GCBasher_ParallelGC,           \
 372     linux_x64_3.8-{product|fastdebug}-c2-GCBasher_CMS,                  \
 373     linux_x64_3.8-{product|fastdebug}-c2-GCBasher_G1
 374 
 375 my.test.targets.hotspot.macosx.x64=                                     \
 376     macosx_x64_10.9-{product|fastdebug}-c2-jvm98,                       \
 377     macosx_x64_10.9-{product|fastdebug}-c2-jvm98_nontiered,             \
 378     macosx_x64_10.9-{product|fastdebug}-c2-scimark,                     \
 379     macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_SerialGC,           \
 380     macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_ParallelGC,         \
 381     macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_CMS,                \
 382     macosx_x64_10.9-{product|fastdebug}-c2-GCBasher_G1
 383 
 384 my.test.targets.hotspot.windows.i586=                                   \
 385     windows_i586_6.3-{product|fastdebug}-c2-jvm98,                      \
 386     windows_i586_6.3-{product|fastdebug}-c2-jvm98_nontiered,            \
 387     windows_i586_6.3-{product|fastdebug}-c2-scimark,                    \
 388     windows_i586_6.3-product-c2-runThese8,                              \
 389     windows_i586_6.3-product-c2-runThese8_Xcomp_lang,                   \
 390     windows_i586_6.3-product-c2-runThese8_Xcomp_vm,                     \
 391     windows_i586_6.3-{product|fastdebug}-c2-GCBasher_SerialGC,          \
 392     windows_i586_6.3-{product|fastdebug}-c2-GCBasher_ParallelGC,        \
 393     windows_i586_6.3-{product|fastdebug}-c2-GCBasher_CMS,               \
 394     windows_i586_6.3-{product|fastdebug}-c2-GCBasher_G1
 395 
 396 my.test.targets.hotspot.windows.x64=                                    \
 397     windows_x64_6.3-{product|fastdebug}-c2-jvm98,                       \
 398     windows_x64_6.3-{product|fastdebug}-c2-jvm98_nontiered,             \
 399     windows_x64_6.3-{product|fastdebug}-c2-scimark,                     \
 400     windows_x64_6.3-product-c2-runThese8,                               \
 401     windows_x64_6.3-product-c2-runThese8_Xcomp_lang,                    \
 402     windows_x64_6.3-product-c2-runThese8_Xcomp_vm,                      \
 403     windows_x64_6.3-{product|fastdebug}-c2-GCBasher_SerialGC,           \
 404     windows_x64_6.3-{product|fastdebug}-c2-GCBasher_ParallelGC,         \
 405     windows_x64_6.3-{product|fastdebug}-c2-GCBasher_CMS,                \
 406     windows_x64_6.3-{product|fastdebug}-c2-GCBasher_G1
 407 
 408 # Some basic "smoke" tests for OpenJDK builds
 409 my.test.targets.hotspot.open=                                           \
 410     solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98,              \
 411     linux_x64_3.8-{productOpen|fastdebugOpen}-c2-jvm98
 412 
 413 # The complete list of test targets for jprt
 414 my.test.targets.hotspot=                                                \
 415   ${my.test.targets.hotspot.open},                                      \
 416   ${my.test.targets.hotspot.solaris.sparcv9},                           \
 417   ${my.test.targets.hotspot.solaris.x64},                               \
 418   ${my.test.targets.hotspot.linux.i586},                                \
 419   ${my.test.targets.hotspot.linux.x64},                                 \
 420   ${my.test.targets.hotspot.macosx.x64},                                \
 421   ${my.test.targets.hotspot.windows.i586},                              \
 422   ${my.test.targets.hotspot.windows.x64},                               \
 423   ${my.test.targets.hotspot.solaris.sparcv9},                           \
 424   ${my.test.targets.hotspot.solaris.x64},                               \
 425   ${my.test.targets.hotspot.linux.x64},                                 \
 426   ${my.test.targets.hotspot.windows.i586},                              \
 427   ${my.test.targets.hotspot.windows.x64},                               \
 428   ${my.additional.test.targets.hotspot}
 429 
 430 
 431 # Make file based test targets
 432 
 433 my.make.rule.test.targets.hotspot.basicvmtests=                         \
 434   linux_i586_3.8-*-default-hotspot_basicvmtest,                         \
 435   linux_x64_3.8-*-default-hotspot_basicvmtest,                          \
 436   macosx_x64_10.9-*-default-hotspot_basicvmtest,                        \
 437   solaris_sparcv9_5.11-*-default-hotspot_basicvmtest,                   \
 438   solaris_x64_5.11-*-default-hotspot_basicvmtest,                       \
 439   windows_i586_6.3-*-default-hotspot_basicvmtest,                       \
 440   windows_x64_6.3-*-default-hotspot_basicvmtest
 441 
 442 my.make.rule.test.targets.hotspot.gtest= \
 443   linux_i586_3.8-*-default-hotspot_gtest, \
 444   linux_x64_3.8-*-default-hotspot_gtest, \
 445   macosx_x64_10.9-*-default-hotspot_gtest, \
 446   solaris_sparcv9_5.11-*-default-hotspot_gtest, \
 447   solaris_x64_5.11-*-default-hotspot_gtest, \
 448   windows_i586_6.3-*-default-hotspot_gtest, \
 449   windows_x64_6.3-*-default-hotspot_gtest, \
 450   ${my.additional.make.rule.test.targets.hotspot.gtest}
 451 
 452 my.make.rule.test.targets.hotspot.reg.group=                            \
 453   solaris_sparcv9_5.11-fastdebug-c2-GROUP,                              \
 454   solaris_x64_5.11-fastdebug-c2-GROUP,                                  \
 455   linux_i586_3.8-fastdebug-c2-GROUP,                                    \
 456   linux_x64_3.8-fastdebug-c2-GROUP,                                     \
 457   macosx_x64_10.9-fastdebug-c2-GROUP,                                   \
 458   windows_i586_6.3-fastdebug-c2-GROUP,                                  \
 459   windows_x64_6.3-fastdebug-c2-GROUP
 460 
 461 # Hotspot jtreg tests
 462 my.make.rule.test.targets.hotspot.reg=                                                  \
 463   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_fast_compiler_1},         \
 464   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_fast_compiler_2},         \
 465   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_fast_compiler_3},         \
 466   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_fast_compiler_closed},    \
 467   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_fast_gc_1},               \
 468   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_fast_gc_2},               \
 469   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_fast_gc_closed},          \
 470   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_fast_gc_gcold},           \
 471   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_fast_runtime},            \
 472   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_fast_serviceability},     \
 473   ${my.make.rule.test.targets.hotspot.reg.group:GROUP=jdk_svc_sanity},                  \
 474   ${my.additional.make.rule.test.targets.hotspot.reg}
 475 
 476 # Other Makefile based Hotspot tests
 477 my.make.rule.test.targets.hotspot.other=                                \
 478   ${my.make.rule.test.targets.hotspot.basicvmtests},                    \
 479   ${my.make.rule.test.targets.hotspot.gtest},                           \
 480   ${my.additional.make.rule.test.targets.hotspot.other}
 481 
 482 # All the makefile based tests to run
 483 my.make.rule.test.targets.hotspot=                                      \
 484   ${my.make.rule.test.targets.hotspot.reg}                              \
 485   ${my.make.rule.test.targets.hotspot.other}
 486 
 487 # Install the test bundle for the testset hotspot jtreg tests
 488 # (but not for the other Makefile based tests)
 489 my.jprt.test.bundle.targets.hotspot= \
 490   ${my.make.rule.test.targets.hotspot.reg}, \
 491   ${my.make.rule.test.targets.hotspot.gtest}
 492 
 493 # Native jdk and hotspot test targets (testset=nativesanity)
 494 my.make.rule.test.targets.nativesanity=                                 \
 495     ${my.test.target.set:TESTNAME=jdk_native_sanity},                   \
 496     ${my.test.target.set:TESTNAME=hotspot_native_sanity}
 497 
 498 # Install the test bundle for the nativesanity jtreg tests
 499 my.jprt.test.bundle.targets.nativesanity=${my.make.rule.test.targets.nativesanity}
 500 
 501 ################################################################################
 502 # Testset buildinfra
 503 my.build.flavors.buildinfra = \
 504     product,fastdebug,slowdebug, \
 505     ${my.additional.build.flavors.buildinfra}
 506 
 507 # Platforms built for hotspot push jobs
 508 my.build.targets.buildinfra = \
 509     solaris_sparcv9_5.11-{product|fastdebug|slowdebug}, \
 510     solaris_x64_5.11-{product|fastdebug|slowdebug}, \
 511     linux_i586_3.8-{product|fastdebug|slowdebug}, \
 512     linux_x64_3.8-{product|fastdebug|slowdebug}, \
 513     macosx_x64_10.9-{product|fastdebug|slowdebug}, \
 514     windows_i586_6.3-{product|fastdebug|slowdebug}, \
 515     windows_x64_6.3-{product|fastdebug|slowdebug}, \
 516     ${my.additional.build.targets.buildinfra}
 517 
 518 my.test.targets.buildinfra = \
 519     ${my.test.targets.default}, \
 520     ${my.test.targets.hotspot}
 521 
 522 my.make.rule.test.targets.buildinfra = \
 523     ${my.make.rule.test.targets.default}, \
 524     ${my.make.rule.test.targets.hotspot}