duke@2: # mikael@1152: # Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved. duke@2: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@2: # duke@2: # This code is free software; you can redistribute it and/or modify it duke@2: # under the terms of the GNU General Public License version 2 only, as ohair@182: # published by the Free Software Foundation. Oracle designates this duke@2: # particular file as subject to the "Classpath" exception as provided ohair@182: # by Oracle in the LICENSE file that accompanied this code. duke@2: # duke@2: # This code is distributed in the hope that it will be useful, but WITHOUT duke@2: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@2: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@2: # version 2 for more details (a copy is included in the LICENSE file that duke@2: # accompanied this code). duke@2: # duke@2: # You should have received a copy of the GNU General Public License version duke@2: # 2 along with this work; if not, write to the Free Software Foundation, duke@2: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@2: # ohair@182: # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@182: # or visit www.oracle.com if you need additional information or have any ohair@182: # questions. duke@2: # duke@2: mikael@1152: ############## mikael@1152: # mikael@1152: # Global settings mikael@1152: # duke@2: mikael@1152: # The current release name mikael@1159: my.jdk.update.version=40 mikael@1152: jprt.tools.default.release=jdk8u${my.jdk.update.version} duke@2: mikael@1152: # Check if this is the equivalent of a hotspot push job mikael@1152: # Interpret -testset hotspot to mean exactly that mikael@1152: my.is.hotspot.job.hotspot=true mikael@1152: my.is.hotspot.job=${my.is.hotspot.job.${jprt.test.set}} ohair@570: mikael@1152: # Disable syncing the source after builds and tests are done mikael@1152: jprt.sync.push=${my.is.hotspot.job ? false : true} ohair@159: ohair@208: # Directories to be excluded from the source bundles ohair@159: jprt.bundle.exclude.src.dirs=build dist webrev ohair@159: mikael@1152: # Use configure when building mikael@1140: jprt.build.use.configure=true mikael@1152: mikael@1152: # Set make target to use for different build flavors mikael@1152: jprt.build.flavor.debugOpen.target=jprt_bundle mikael@1152: jprt.build.flavor.fastdebug.target=jprt_bundle mikael@1140: jprt.build.flavor.product.target=jprt_bundle mikael@1152: jprt.build.flavor.productOpen.target=jprt_bundle mikael@1140: mikael@1152: # Use these configure args to define debug level mikael@1152: jprt.debug.build.configure.args=--with-debug-level=slowdebug mikael@1152: jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug mikael@1152: jprt.product.build.configure.args=--with-debug-level=release mikael@1152: jprt.debugOpen.build.configure.args=${jprt.debug.build.configure.args} --enable-openjdk-only mikael@1152: jprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args} --enable-openjdk-only mikael@1152: jprt.productOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only mikael@1140: mikael@1152: # Select build flavors and build targets mikael@1152: jprt.build.flavors=${my.is.hotspot.job ? ${my.build.flavors.hotspot} : ${my.build.flavors.default}} mikael@1152: jprt.build.targets=${my.is.hotspot.job ? ${my.build.targets.hotspot} : ${my.build.targets.default}} mikael@1152: mikael@1152: # Select test targets - jprt default for jprt.test.set is "default" mikael@1152: jprt.test.targets=${my.test.targets.${jprt.test.set}} mikael@1152: jprt.make.rule.test.targets=${my.make.rule.test.targets.${jprt.test.set}} mikael@1152: mikael@1152: # 7155453: Work-around to prevent popups on OSX from blocking test completion mikael@1152: # but the work-around is added to all platforms to be consistent mikael@1152: jprt.jbb.options=-Djava.awt.headless=true mikael@1152: mikael@1152: ######## mikael@1152: # mikael@1152: # Build options (generic) mikael@1152: # mikael@1152: mikael@1152: # Configure args common to all builds mikael@1152: # Also allows for additional, testset specific configure arguments to be set mikael@1152: jprt.build.configure.args= \ mikael@1152: --with-boot-jdk=$ALT_BOOTDIR \ mikael@1152: --with-jobs=$ALT_PARALLEL_COMPILE_JOBS \ mikael@1152: --with-update-version=${my.jdk.update.version} \ mikael@1152: ${my.additional.build.configure.args.${jprt.test.set}} mikael@1152: mikael@1152: # i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly mikael@1152: jprt.i586.build.configure.args= \ mikael@1152: --with-target-bits=32 mikael@1152: mikael@1152: # i586 platforms have both client and server, but to allow for overriding the exact configuration mikael@1152: # on a per-build flavor basis the value is set for the individual build flavors mikael@1152: # All other platforms only build server, which is the default setting from configure mikael@1152: my.i586.default.build.configure.args= \ mikael@1140: --with-jvm-variants=client,server mikael@1152: jprt.i586.debug.build.configure.args= \ mikael@1152: ${my.i586.default.build.configure.args} \ mikael@1152: ${jprt.debug.build.configure.args} mikael@1152: jprt.i586.fastdebug.build.configure.args= \ mikael@1152: ${my.i586.default.build.configure.args} \ mikael@1152: ${jprt.fastdebug.build.configure.args} mikael@1152: jprt.i586.product.build.configure.args= \ mikael@1152: ${my.i586.default.build.configure.args} \ mikael@1152: ${jprt.product.build.configure.args} mikael@1152: jprt.i586.debugOpen.build.configure.args= \ mikael@1152: ${my.i586.default.build.configure.args} \ mikael@1152: ${jprt.debugOpen.build.configure.args} mikael@1152: jprt.i586.fastdebugOpen.build.configure.args= \ mikael@1152: ${my.i586.default.build.configure.args} \ mikael@1152: ${jprt.fastdebugOpen.build.configure.args} mikael@1152: jprt.i586.productOpen.build.configure.args= \ mikael@1152: ${my.i586.default.build.configure.args} \ mikael@1152: ${jprt.productOpen.build.configure.args} mikael@1140: mikael@1152: ######## mikael@1152: # mikael@1152: # Build targets and options (default/jdk) mikael@1152: # mikael@1152: mikael@1152: # The default build flavors mikael@1152: my.build.flavors.default=fastdebug,product mikael@1152: mikael@1152: # Standard list of jprt build targets for this source tree mikael@1152: my.build.targets.default= \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}, \ mikael@1152: linux_i586_2.6-{product|fastdebug}, \ mikael@1152: linux_x64_2.6-{product|fastdebug}, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}, \ mikael@1152: windows_i586_6.1-{product|fastdebug}, \ mikael@1152: windows_x64_6.1-{product|fastdebug} mikael@1152: mikael@1152: # Test target list (no fastdebug & limited c2 testing) mikael@1152: my.test.target.set= \ mikael@1152: solaris_sparcv9_5.10-product-c2-TESTNAME, \ mikael@1152: solaris_x64_5.10-product-c2-TESTNAME, \ mikael@1152: linux_i586_2.6-product-{c1|c2}-TESTNAME, \ mikael@1152: linux_x64_2.6-product-c2-TESTNAME, \ mikael@1152: macosx_x64_10.7-product-c2-TESTNAME, \ mikael@1152: windows_i586_6.1-product-c1-TESTNAME, \ mikael@1152: windows_x64_6.1-product-c2-TESTNAME mikael@1152: mikael@1152: # Default vm test targets (testset=default) mikael@1152: my.test.targets.default= \ mikael@1152: ${my.test.target.set:TESTNAME=jvm98}, \ mikael@1152: ${my.test.target.set:TESTNAME=scimark} mikael@1152: mikael@1152: # Default jdk test targets (testset=default) mikael@1152: my.make.rule.test.targets.default= \ mikael@1152: ${my.test.target.set:TESTNAME=langtools_jtreg}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_lang}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_math}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_util} mikael@1152: mikael@1152: # Default vm test targets (testset=core) mikael@1152: my.test.targets.core= mikael@1152: mikael@1152: # Core jdk test targets (testset=core) mikael@1152: my.make.rule.test.targets.core= \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_lang}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_math}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_util}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_io}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_net}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_nio}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_security1}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_security2}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_security3}, \ coffeys@1167: ${my.test.target.set:TESTNAME=jdk_security4}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_rmi}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_text}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_time}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_other}, \ mikael@1152: ${my.test.target.set:TESTNAME=core_tools} mikael@1152: mikael@1152: # Svc vm test targets (testset=svc) mikael@1152: my.test.targets.svc= mikael@1152: mikael@1152: # Core jdk test targets (testset=svc) mikael@1152: my.make.rule.test.targets.svc= \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_management}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_instrument}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_jmx}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_jdi}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_jfr}, \ rriggs@1184: ${my.test.target.set:TESTNAME=jdk_rm}, \ mikael@1152: ${my.test.target.set:TESTNAME=svc_tools} mikael@1152: mikael@1152: # All vm test targets (testset=all) mikael@1152: my.test.targets.all= \ mikael@1152: ${my.test.targets.default}, \ mikael@1152: ${my.test.target.set:TESTNAME=runThese}, \ mikael@1152: ${my.test.target.set:TESTNAME=jbb_default} mikael@1152: mikael@1152: # All jdk test targets (testset=all) mikael@1152: my.make.rule.test.targets.all= \ mikael@1152: ${my.make.rule.test.targets.core}, \ mikael@1152: ${my.make.rule.test.targets.svc}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_awt}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_beans1}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_beans2}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_beans3}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_sound}, \ mikael@1152: ${my.test.target.set:TESTNAME=jdk_swing} mikael@1152: mikael@1152: # PIT vm test targets (testset=pit) mikael@1152: my.test.targets.pit= \ mikael@1152: ${my.test.targets.all} mikael@1152: mikael@1152: # PIT jdk test targets (testset=pit) mikael@1152: my.make.rule.test.targets.pit= \ mikael@1152: ${my.test.target.set:TESTNAME=langtools_jtreg}, \ mikael@1152: ${my.make.rule.test.targets.core}, \ mikael@1152: ${my.make.rule.test.targets.svc} mikael@1152: mikael@1152: # JCK test targets in test/Makefile (no windows) mikael@1152: my.test.target.set.jck= \ mikael@1152: solaris_sparcv9_5.10-product-c2-JCK7TESTRULE, \ mikael@1152: solaris_x64_5.10-product-c2-JCK7TESTRULE, \ mikael@1152: linux_i586_2.6-product-c1-JCK7TESTRULE, \ mikael@1152: linux_x64_2.6-product-c2-JCK7TESTRULE mikael@1152: mikael@1152: # JCK testset targets mikael@1152: my.make.rule.test.targets.jck= \ mikael@1152: ${my.test.target.set.jck:JCK7TESTRULE=jck7devtools}, \ mikael@1152: ${my.test.target.set.jck:JCK7TESTRULE=jck7runtime}, \ mikael@1152: ${my.test.target.set.jck:JCK7TESTRULE=jck7compiler} mikael@1152: mikael@1152: mikael@1152: ############# mikael@1152: # mikael@1152: # Hotspot related settings (testset=hotspot) mikael@1152: # mikael@1152: mikael@1152: # The hotspot build flavors mikael@1152: my.build.flavors.hotspot= \ mikael@1152: debugOpen,fastdebug,product,productOpen, \ mikael@1152: ${my.additional.build.flavors.hotspot} mikael@1152: mikael@1152: # Platforms built for hotspot push jobs mikael@1152: my.build.targets.hotspot= \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug|optimized}, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}, \ mikael@1152: linux_i586_2.6-{product|fastdebug}, \ mikael@1152: linux_x64_2.6-{product|fastdebug|optimized}, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}, \ mikael@1152: windows_i586_6.1-{product|fastdebug}, \ mikael@1152: windows_x64_6.1-{product|fastdebug|optimized}, \ mikael@1152: solaris_x64_5.10-{debugOpen}, \ mikael@1152: linux_x64_2.6-{productOpen}, \ mikael@1152: ${my.additional.build.targets.hotspot} mikael@1152: mikael@1152: # Tests to run on the various platforms for hotspot push jobs mikael@1152: my.test.targets.hotspot.solaris.sparcv9= \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-jvm98, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-jvm98_nontiered, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-scimark, \ mikael@1152: solaris_sparcv9_5.10-product-c2-runThese, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_SerialGC, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_ParallelGC, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_ParNewGC, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_CMS, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_G1, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_ParOldGC, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCOld_SerialGC, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCOld_ParallelGC, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCOld_ParNewGC, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCOld_CMS, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCOld_G1, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-GCOld_ParOldGC, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-jbb_default_nontiered, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-jbb_SerialGC, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-jbb_ParallelGC, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-jbb_CMS, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-jbb_G1, \ mikael@1152: solaris_sparcv9_5.10-{product|fastdebug}-c2-jbb_ParOldGC mikael@1152: mikael@1152: my.test.targets.hotspot.solaris.x64= \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-jvm98, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-jvm98_nontiered, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-scimark, \ mikael@1152: solaris_x64_5.10-product-c2-runThese, \ mikael@1152: solaris_x64_5.10-product-c2-runThese_Xcomp, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCBasher_SerialGC, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCBasher_ParallelGC, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCBasher_ParNewGC, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCBasher_CMS, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCBasher_G1, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCBasher_ParOldGC, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCOld_SerialGC, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCOld_ParallelGC, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCOld_ParNewGC, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCOld_CMS, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCOld_G1, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCOld_ParOldGC, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-jbb_default_nontiered, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-jbb_SerialGC, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-jbb_ParallelGC, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCOld_CMS, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCOld_G1, \ mikael@1152: solaris_x64_5.10-{product|fastdebug}-c2-GCOld_ParOldGC mikael@1152: mikael@1152: my.test.targets.hotspot.linux.i586= \ mikael@1152: linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark, \ mikael@1152: linux_i586_2.6-product-c1-runThese_Xcomp, \ mikael@1152: linux_i586_2.6-fastdebug-c1-runThese_Xshare, \ mikael@1152: linux_i586_2.6-fastdebug-c2-runThese_Xcomp, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \ mikael@1152: linux_i586_2.6-product-{c1|c2}-GCOld_SerialGC, \ mikael@1152: linux_i586_2.6-product-{c1|c2}-GCOld_ParallelGC, \ mikael@1152: linux_i586_2.6-product-{c1|c2}-GCOld_ParNewGC, \ mikael@1152: linux_i586_2.6-product-{c1|c2}-GCOld_CMS, \ mikael@1152: linux_i586_2.6-product-{c1|c2}-GCOld_G1, \ mikael@1152: linux_i586_2.6-product-{c1|c2}-GCOld_ParOldGC, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-c1-jbb_G1, \ mikael@1152: linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC mikael@1152: mikael@1152: my.test.targets.hotspot.linux.x64= \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-jvm98, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-scimark, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParNewGC, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCOld_SerialGC, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParallelGC, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParNewGC, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCOld_CMS, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCOld_G1, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParOldGC, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-jbb_G1, \ mikael@1152: linux_x64_2.6-{product|fastdebug}-c2-jbb_ParOldGC mikael@1152: mikael@1152: my.test.targets.hotspot.macosx.x64= \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-jvm98, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-jvm98_nontiered, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-scimark, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_SerialGC, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParallelGC, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParNewGC, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_CMS, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_G1, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParOldGC, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCOld_SerialGC, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParallelGC, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParNewGC, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCOld_CMS, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCOld_G1, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParOldGC, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-jbb_default_nontiered, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParallelGC, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-jbb_G1, \ mikael@1152: macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParOldGC mikael@1152: mikael@1152: my.test.targets.hotspot.windows.i586= \ mikael@1152: windows_i586_6.1-{product|fastdebug}-{c1|c2}-jvm98, \ mikael@1152: windows_i586_6.1-{product|fastdebug}-c2-jvm98_nontiered, \ mikael@1152: windows_i586_6.1-{product|fastdebug}-{c1|c2}-scimark, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-runThese, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-runThese_Xcomp, \ mikael@1152: windows_i586_6.1-fastdebug-c1-runThese_Xshare, \ mikael@1152: windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \ mikael@1152: windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \ mikael@1152: windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \ mikael@1152: windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \ mikael@1152: windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_G1, \ mikael@1152: windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-GCOld_SerialGC, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-GCOld_ParallelGC, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-GCOld_ParNewGC, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-GCOld_CMS, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-GCOld_G1, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-GCOld_ParOldGC, \ mikael@1152: windows_i586_6.1-{product|fastdebug}-{c1|c2}-jbb_default, \ mikael@1152: windows_i586_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-jbb_ParallelGC, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-jbb_CMS, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-jbb_G1, \ mikael@1152: windows_i586_6.1-product-{c1|c2}-jbb_ParOldGC mikael@1152: mikael@1152: my.test.targets.hotspot.windows.x64= \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-jvm98, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-jvm98_nontiered, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-scimark, \ mikael@1152: windows_x64_6.1-product-c2-runThese, \ mikael@1152: windows_x64_6.1-product-c2-runThese_Xcomp, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCBasher_SerialGC, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParallelGC, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParNewGC, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCBasher_CMS, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCBasher_G1, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParOldGC, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCOld_SerialGC, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParallelGC, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParNewGC, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCOld_CMS, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCOld_G1, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParOldGC, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-jbb_default, \ mikael@1152: windows_x64_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \ mikael@1152: windows_x64_6.1-product-c2-jbb_CMS, \ mikael@1152: windows_x64_6.1-product-c2-jbb_ParallelGC, \ mikael@1152: windows_x64_6.1-product-c2-jbb_G1, \ mikael@1152: windows_x64_6.1-product-c2-jbb_ParOldGC mikael@1152: mikael@1152: # Some basic "smoke" tests for OpenJDK builds mikael@1152: my.test.targets.hotspot.open= \ mikael@1152: solaris_x64_5.10-{productOpen|fastdebugOpen}-c2-jvm98, \ mikael@1152: linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98 mikael@1152: mikael@1152: # The complete list of test targets for jprt mikael@1152: my.test.targets.hotspot= \ mikael@1152: ${my.test.targets.hotspot.open}, \ mikael@1152: ${my.test.targets.hotspot.solaris.sparcv9}, \ mikael@1152: ${my.test.targets.hotspot.solaris.x64}, \ mikael@1152: ${my.test.targets.hotspot.linux.i586}, \ mikael@1152: ${my.test.targets.hotspot.linux.x64}, \ mikael@1152: ${my.test.targets.hotspot.macosx.x64}, \ mikael@1152: ${my.test.targets.hotspot.windows.i586}, \ mikael@1152: ${my.test.targets.hotspot.windows.x64}, \ mikael@1152: ${my.test.targets.hotspot.solaris.sparcv9}, \ mikael@1152: ${my.test.targets.hotspot.solaris.x64}, \ mikael@1152: ${my.test.targets.hotspot.linux.x64}, \ mikael@1152: ${my.test.targets.hotspot.windows.i586}, \ mikael@1152: ${my.test.targets.hotspot.windows.x64}, \ mikael@1152: ${my.additional.test.targets.hotspot} mikael@1152: mikael@1152: mikael@1152: # Make file based test targets mikael@1152: mikael@1152: my.make.rule.test.targets.hotspot.clienttests= \ mikael@1152: linux_i586_2.6-*-c1-hotspot_clienttest, \ mikael@1152: windows_i586_6.1-*-c1-hotspot_clienttest mikael@1152: mikael@1152: my.make.rule.test.targets.hotspot.servertests= \ mikael@1152: solaris_sparcv9_5.10-*-c2-hotspot_servertest, \ mikael@1152: solaris_x64_5.10-*-c2-hotspot_servertest, \ mikael@1152: linux_i586_2.6-*-c2-hotspot_servertest, \ mikael@1152: linux_x64_2.6-*-c2-hotspot_servertest, \ mikael@1152: macosx_x64_10.7-*-c2-hotspot_servertest, \ mikael@1152: windows_i586_6.1-*-c2-hotspot_servertest, \ mikael@1152: windows_x64_6.1-*-c2-hotspot_servertest mikael@1152: mikael@1152: my.make.rule.test.targets.hotspot.internalvmtests= \ mikael@1152: solaris_sparcv9_5.10-fastdebug-c2-hotspot_internalvmtests, \ mikael@1152: solaris_x64_5.10-fastdebug-c2-hotspot_internalvmtests, \ mikael@1152: linux_i586_2.6-fastdebug-c2-hotspot_internalvmtests, \ mikael@1152: linux_x64_2.6-fastdebug-c2-hotspot_internalvmtests, \ mikael@1152: macosx_x64_10.7-fastdebug-c2-hotspot_internalvmtests, \ mikael@1152: windows_i586_6.1-fastdebug-c2-hotspot_internalvmtests, \ mikael@1152: windows_x64_6.1-fastdebug-c2-hotspot_internalvmtests mikael@1152: mikael@1190: my.make.rule.test.targets.hotspot.reg.group= \ mikael@1190: solaris_sparcv9_5.10-{product|fastdebug}-c2-GROUP, \ mikael@1190: solaris_x64_5.10-{product|fastdebug}-c2-GROUP, \ mikael@1190: linux_i586_2.6-{product|fastdebug}-c2-GROUP, \ mikael@1190: linux_x64_2.6-{product|fastdebug}-c2-GROUP, \ mikael@1190: windows_i586_6.1-{product|fastdebug}-c2-GROUP, \ mikael@1190: windows_x64_6.1-{product|fastdebug}-c2-GROUP, \ mikael@1190: linux_i586_2.6-{product|fastdebug}-c1-GROUP, \ mikael@1190: windows_i586_6.1-{product|fastdebug}-c1-GROUP mikael@1152: mikael@1152: my.make.rule.test.targets.hotspot= \ mikael@1152: ${my.make.rule.test.targets.hotspot.clienttests}, \ mikael@1152: ${my.make.rule.test.targets.hotspot.servertests}, \ mikael@1152: ${my.make.rule.test.targets.hotspot.internalvmtests}, \ mikael@1190: ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_wbapitest}, \ mikael@1190: ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler}, \ mikael@1190: ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc}, \ mikael@1190: ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime}, \ mikael@1190: ${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability}, \ mikael@1152: ${my.additional.make.rule.test.targets.hotspot}