make/jprt.properties

Mon, 12 Dec 2011 08:11:05 -0800

author
ohair
date
Mon, 12 Dec 2011 08:11:05 -0800
changeset 389
9acd7374ff8a
parent 367
b1d357ebf0cb
child 398
0f653ee93477
permissions
-rw-r--r--

7119829: Adjust default jprt testing configuration
Reviewed-by: alanb

     1 #
     2 # Copyright (c) 2006, 2010, 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 #
    26 # Properties for jprt
    28 # Locked down to jdk8
    29 jprt.tools.default.release=jdk8
    31 # The different build flavors we want, we override here so we just get these 2
    32 jprt.build.flavors=product,fastdebug
    34 # Standard list of jprt build targets for this source tree
    35 jprt.build.targets= 						\
    36     solaris_sparc_5.10-{product|fastdebug}, 			\
    37     solaris_sparcv9_5.10-{product|fastdebug}, 			\
    38     solaris_i586_5.10-{product|fastdebug}, 			\
    39     solaris_x64_5.10-{product|fastdebug}, 			\
    40     linux_i586_2.6-{product|fastdebug}, 			\
    41     linux_x64_2.6-{product|fastdebug}, 				\
    42     windows_i586_5.1-{product|fastdebug}, 			\
    43     windows_x64_5.2-{product|fastdebug}
    45 # User can select the test set with jprt submit "-testset name" option
    46 jprt.my.test.set=${jprt.test.set}
    48 # Test target list (no fastdebug & limited c2 testing)
    49 jprt.my.test.target.set= \
    50     solaris_sparc_5.10-product-c1-TESTNAME, 			\
    51     solaris_sparcv9_5.10-product-c2-TESTNAME, 			\
    52     solaris_i586_5.10-product-c1-TESTNAME, 			\
    53     solaris_x64_5.10-product-c2-TESTNAME, 			\
    54     linux_i586_2.6-product-{c1|c2}-TESTNAME, 			\
    55     linux_x64_2.6-product-c2-TESTNAME, 				\
    56     windows_i586_5.1-product-c1-TESTNAME, 			\
    57     windows_x64_5.2-product-c2-TESTNAME
    59 # Default vm test targets (testset=default)
    60 jprt.vm.default.test.targets=              			\
    61     ${jprt.my.test.target.set:TESTNAME=jvm98},			\
    62     ${jprt.my.test.target.set:TESTNAME=scimark}
    64 # Default jdk test targets (testset=default)
    65 jprt.make.rule.default.test.targets=				\
    66     ${jprt.my.test.target.set:TESTNAME=langtools_jtreg},	\
    67     ${jprt.my.test.target.set:TESTNAME=jdk_beans1},		\
    68     ${jprt.my.test.target.set:TESTNAME=jdk_io},			\
    69     ${jprt.my.test.target.set:TESTNAME=jdk_lang},		\
    70     ${jprt.my.test.target.set:TESTNAME=jdk_math},		\
    71     ${jprt.my.test.target.set:TESTNAME=jdk_misc},		\
    72     ${jprt.my.test.target.set:TESTNAME=jdk_net},		\
    73     ${jprt.my.test.target.set:TESTNAME=jdk_nio1},		\
    74     ${jprt.my.test.target.set:TESTNAME=jdk_nio2},		\
    75     ${jprt.my.test.target.set:TESTNAME=jdk_nio3},		\
    76     ${jprt.my.test.target.set:TESTNAME=jdk_security1},		\
    77     ${jprt.my.test.target.set:TESTNAME=jdk_text},		\
    78     ${jprt.my.test.target.set:TESTNAME=jdk_util}
    80 # All vm test targets (testset=all)
    81 jprt.vm.all.test.targets=    					\
    82     ${jprt.vm.default.test.targets}, 				\
    83     ${jprt.my.test.target.set:TESTNAME=runThese},		\
    84     ${jprt.my.test.target.set:TESTNAME=jbb_default}
    86 # All jdk test targets (testset=all)
    87 jprt.make.rule.all.test.targets=    				\
    88     ${jprt.make.rule.default.test.targets}, 			\
    89     ${jprt.my.test.target.set:TESTNAME=jdk_awt},		\
    90     ${jprt.my.test.target.set:TESTNAME=jdk_beans2},		\
    91     ${jprt.my.test.target.set:TESTNAME=jdk_beans3},		\
    92     ${jprt.my.test.target.set:TESTNAME=jdk_management1},	\
    93     ${jprt.my.test.target.set:TESTNAME=jdk_management2},	\
    94     ${jprt.my.test.target.set:TESTNAME=jdk_rmi},		\
    95     ${jprt.my.test.target.set:TESTNAME=jdk_security2},		\
    96     ${jprt.my.test.target.set:TESTNAME=jdk_security3},		\
    97     ${jprt.my.test.target.set:TESTNAME=jdk_sound},		\
    98     ${jprt.my.test.target.set:TESTNAME=jdk_swing},		\
    99     ${jprt.my.test.target.set:TESTNAME=jdk_tools1},		\
   100     ${jprt.my.test.target.set:TESTNAME=jdk_tools2}
   102 # JCK test targets in test/Makefile (no windows)
   103 jprt.my.jck.test.target.set=					\
   104     solaris_sparc_5.10-product-c1-JCK7TESTRULE, 		\
   105     solaris_sparcv9_5.10-product-c2-JCK7TESTRULE, 		\
   106     solaris_i586_5.10-product-c1-JCK7TESTRULE, 			\
   107     solaris_x64_5.10-product-c2-JCK7TESTRULE, 			\
   108     linux_i586_2.6-product-c1-JCK7TESTRULE, 			\
   109     linux_x64_2.6-product-c2-JCK7TESTRULE
   111 # JCK testset targets (e.g. jprt submit -testset jck ... )
   112 jprt.make.rule.jck.test.targets=				\
   113     ${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7devtools},   \
   114     ${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7runtime},    \
   115     ${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7compiler}
   117 # Select list to use (allow for testset to be empty too)
   118 jprt.make.rule..test.targets=${jprt.make.rule.default.test.targets}
   119 jprt.make.rule.test.targets=${jprt.make.rule.${jprt.my.test.set}.test.targets}
   120 jprt.vm..test.targets=${jprt.vm.default.test.targets}
   121 jprt.test.targets=${jprt.vm.${jprt.my.test.set}.test.targets}
   123 # Directories to be excluded from the source bundles
   124 jprt.bundle.exclude.src.dirs=build dist webrev

mercurial