duke@2: # tbell@804: # Copyright (c) 2006, 2013, 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: duke@2: # Properties for jprt duke@2: asaha@1129: # The current release name asaha@1129: my.jdk.update.version=25 asaha@1129: jprt.tools.default.release=jdk8u${my.jdk.update.version} duke@2: ohair@570: # Unix toolkit to use for building on windows ohair@570: jprt.windows.jdk8.build.unix.toolkit=cygwin ohair@570: ohair@208: # The different build flavors we want, we override here so we just get these 2 duke@2: jprt.build.flavors=product,fastdebug duke@2: ohair@225: # Standard list of jprt build targets for this source tree ohair@225: jprt.build.targets= \ ohair@225: solaris_sparcv9_5.10-{product|fastdebug}, \ ohair@225: solaris_x64_5.10-{product|fastdebug}, \ ohair@225: linux_i586_2.6-{product|fastdebug}, \ ohair@225: linux_x64_2.6-{product|fastdebug}, \ michaelm@414: macosx_x64_10.7-{product|fastdebug}, \ tbell@804: windows_i586_6.1-{product|fastdebug}, \ tbell@804: windows_x64_6.1-{product|fastdebug} ohair@159: ohair@225: # User can select the test set with jprt submit "-testset name" option ohair@225: jprt.my.test.set=${jprt.test.set} ohair@225: ohair@389: # Test target list (no fastdebug & limited c2 testing) ohair@389: jprt.my.test.target.set= \ ohair@389: solaris_sparcv9_5.10-product-c2-TESTNAME, \ ohair@389: solaris_x64_5.10-product-c2-TESTNAME, \ ohair@389: linux_i586_2.6-product-{c1|c2}-TESTNAME, \ ohair@389: linux_x64_2.6-product-c2-TESTNAME, \ michaelm@414: macosx_x64_10.7-product-c2-TESTNAME, \ tbell@804: windows_i586_6.1-product-c1-TESTNAME, \ tbell@804: windows_x64_6.1-product-c2-TESTNAME ohair@389: ohair@389: # Default vm test targets (testset=default) ohair@225: jprt.vm.default.test.targets= \ ohair@389: ${jprt.my.test.target.set:TESTNAME=jvm98}, \ ohair@389: ${jprt.my.test.target.set:TESTNAME=scimark} ohair@225: ohair@389: # Default jdk test targets (testset=default) ohair@225: jprt.make.rule.default.test.targets= \ alanb@398: ${jprt.my.test.target.set:TESTNAME=langtools_jtreg}, \ alanb@398: ${jprt.my.test.target.set:TESTNAME=jdk_lang}, \ alanb@913: ${jprt.my.test.target.set:TESTNAME=jdk_math}, \ alanb@913: ${jprt.my.test.target.set:TESTNAME=jdk_util} alanb@913: alanb@398: alanb@398: # Default vm test targets (testset=core) alanb@913: jprt.vm.core.test.targets= alanb@398: alanb@398: # Core jdk test targets (testset=core) alanb@398: jprt.make.rule.core.test.targets= \ alanb@913: ${jprt.my.test.target.set:TESTNAME=jdk_lang}, \ alanb@913: ${jprt.my.test.target.set:TESTNAME=jdk_math}, \ alanb@398: ${jprt.my.test.target.set:TESTNAME=jdk_util}, \ ohair@389: ${jprt.my.test.target.set:TESTNAME=jdk_io}, \ ohair@389: ${jprt.my.test.target.set:TESTNAME=jdk_net}, \ alanb@490: ${jprt.my.test.target.set:TESTNAME=jdk_nio}, \ ohair@389: ${jprt.my.test.target.set:TESTNAME=jdk_security1}, \ alanb@398: ${jprt.my.test.target.set:TESTNAME=jdk_security2}, \ alanb@398: ${jprt.my.test.target.set:TESTNAME=jdk_security3}, \ alanb@398: ${jprt.my.test.target.set:TESTNAME=jdk_rmi}, \ alanb@913: ${jprt.my.test.target.set:TESTNAME=jdk_text}, \ alanb@913: ${jprt.my.test.target.set:TESTNAME=jdk_time}, \ alanb@913: ${jprt.my.test.target.set:TESTNAME=jdk_other}, \ alanb@913: ${jprt.my.test.target.set:TESTNAME=core_tools} alanb@913: alanb@913: # Svc vm test targets (testset=svc) alanb@913: jprt.vm.svc.test.targets= alanb@913: alanb@913: # Core jdk test targets (testset=svc) alanb@913: jprt.make.rule.svc.test.targets= \ alanb@490: ${jprt.my.test.target.set:TESTNAME=jdk_management}, \ alanb@913: ${jprt.my.test.target.set:TESTNAME=jdk_instrument}, \ alanb@490: ${jprt.my.test.target.set:TESTNAME=jdk_jmx}, \ alanb@913: ${jprt.my.test.target.set:TESTNAME=jdk_jdi}, \ sla@443: ${jprt.my.test.target.set:TESTNAME=jdk_jfr}, \ alanb@913: ${jprt.my.test.target.set:TESTNAME=svc_tools} ohair@225: ohair@389: # All vm test targets (testset=all) ohair@225: jprt.vm.all.test.targets= \ ohair@389: ${jprt.vm.default.test.targets}, \ ohair@389: ${jprt.my.test.target.set:TESTNAME=runThese}, \ ohair@389: ${jprt.my.test.target.set:TESTNAME=jbb_default} ohair@225: ohair@389: # All jdk test targets (testset=all) ohair@225: jprt.make.rule.all.test.targets= \ alanb@398: ${jprt.make.rule.core.test.targets}, \ alanb@913: ${jprt.make.rule.svc.test.targets}, \ ohair@389: ${jprt.my.test.target.set:TESTNAME=jdk_awt}, \ alanb@398: ${jprt.my.test.target.set:TESTNAME=jdk_beans1}, \ ohair@389: ${jprt.my.test.target.set:TESTNAME=jdk_beans2}, \ ohair@389: ${jprt.my.test.target.set:TESTNAME=jdk_beans3}, \ ohair@389: ${jprt.my.test.target.set:TESTNAME=jdk_sound}, \ alanb@398: ${jprt.my.test.target.set:TESTNAME=jdk_swing} ohair@225: alanb@913: # PIT vm test targets (testset=pit) alanb@913: jprt.vm.pit.test.targets= \ alanb@913: ${jprt.vm.all.test.targets} alanb@913: alanb@913: # PIT jdk test targets (testset=pit) alanb@913: jprt.make.rule.pit.test.targets= \ alanb@913: ${jprt.my.test.target.set:TESTNAME=langtools_jtreg}, \ alanb@913: ${jprt.make.rule.core.test.targets}, \ alanb@913: ${jprt.make.rule.svc.test.targets} alanb@913: ohair@389: # JCK test targets in test/Makefile (no windows) ohair@327: jprt.my.jck.test.target.set= \ ohair@327: solaris_sparcv9_5.10-product-c2-JCK7TESTRULE, \ ohair@327: solaris_x64_5.10-product-c2-JCK7TESTRULE, \ ohair@327: linux_i586_2.6-product-c1-JCK7TESTRULE, \ ohair@327: linux_x64_2.6-product-c2-JCK7TESTRULE ohair@327: ohair@327: # JCK testset targets (e.g. jprt submit -testset jck ... ) ohair@327: jprt.make.rule.jck.test.targets= \ ohair@327: ${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7devtools}, \ ohair@327: ${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7runtime}, \ ohair@327: ${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7compiler} ohair@327: ohair@225: # Select list to use (allow for testset to be empty too) ohair@389: jprt.make.rule..test.targets=${jprt.make.rule.default.test.targets} ohair@389: jprt.make.rule.test.targets=${jprt.make.rule.${jprt.my.test.set}.test.targets} ohair@389: jprt.vm..test.targets=${jprt.vm.default.test.targets} ohair@389: jprt.test.targets=${jprt.vm.${jprt.my.test.set}.test.targets} ohair@159: ohair@208: # Directories to be excluded from the source bundles ohair@159: jprt.bundle.exclude.src.dirs=build dist webrev ohair@159: