jprt.properties 5.7 KB
Newer Older
D
duke 已提交
1
#
O
ohair 已提交
2
# Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
7
# published by the Free Software Foundation.  Oracle designates this
D
duke 已提交
8
# particular file as subject to the "Classpath" exception as provided
9
# by Oracle in the LICENSE file that accompanied this code.
D
duke 已提交
10 11 12 13 14 15 16 17 18 19 20
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
21 22 23
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
D
duke 已提交
24 25 26 27
#

# Properties for jprt

28
# Locked down to jdk8
29
jprt.tools.default.release=jdk8
D
duke 已提交
30

31
# The different build flavors we want, we override here so we just get these 2
D
duke 已提交
32 33
jprt.build.flavors=product,fastdebug

O
ohair 已提交
34
# Standard list of jprt build targets for this source tree
35 36
jprt.build.targets=                                         	\
    solaris_sparc_5.10-{product|fastdebug},                 	\
O
ohair 已提交
37 38 39 40 41
    solaris_sparcv9_5.10-{product|fastdebug}, 			\
    solaris_i586_5.10-{product|fastdebug}, 			\
    solaris_x64_5.10-{product|fastdebug}, 			\
    linux_i586_2.6-{product|fastdebug}, 			\
    linux_x64_2.6-{product|fastdebug}, 				\
42
    windows_i586_5.1-{product|fastdebug}, 			\
O
ohair 已提交
43 44
    windows_x64_5.2-{product|fastdebug}

45 46 47
# User can select the test set with jprt submit "-testset name" option
jprt.my.test.set=${jprt.test.set}

48 49 50 51 52 53 54 55 56 57
# Test target list (no fastdebug & limited c2 testing)
jprt.my.test.target.set= \
    solaris_sparc_5.10-product-c1-TESTNAME,                     \
    solaris_sparcv9_5.10-product-c2-TESTNAME,                   \
    solaris_i586_5.10-product-c1-TESTNAME,                      \
    solaris_x64_5.10-product-c2-TESTNAME,                       \
    linux_i586_2.6-product-{c1|c2}-TESTNAME,                    \
    linux_x64_2.6-product-c2-TESTNAME,                          \
    windows_i586_5.1-product-c1-TESTNAME,                       \
    windows_x64_5.2-product-c2-TESTNAME
O
ohair 已提交
58

59 60 61
# Default vm test targets (testset=default)
jprt.vm.default.test.targets=					\
    ${jprt.my.test.target.set:TESTNAME=jvm98}
O
ohair 已提交
62

63
# Default jdk test targets (testset=default)
O
ohair 已提交
64
jprt.make.rule.default.test.targets=				\
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    ${jprt.my.test.target.set:TESTNAME=jdk_beans1},             \
    ${jprt.my.test.target.set:TESTNAME=jdk_io},                 \
    ${jprt.my.test.target.set:TESTNAME=jdk_lang},               \
    ${jprt.my.test.target.set:TESTNAME=jdk_math},               \
    ${jprt.my.test.target.set:TESTNAME=jdk_misc},               \
    ${jprt.my.test.target.set:TESTNAME=jdk_net},                \
    ${jprt.my.test.target.set:TESTNAME=jdk_nio1},               \
    ${jprt.my.test.target.set:TESTNAME=jdk_nio2},               \
    ${jprt.my.test.target.set:TESTNAME=jdk_nio3},               \
    ${jprt.my.test.target.set:TESTNAME=jdk_security1},          \
    ${jprt.my.test.target.set:TESTNAME=jdk_text},               \
    ${jprt.my.test.target.set:TESTNAME=jdk_util}

# All vm test targets (testset=all)
jprt.vm.all.test.targets=                                       \
    ${jprt.vm.default.test.targets},                            \
    ${jprt.my.test.target.set:TESTNAME=runThese},               \
    ${jprt.my.test.target.set:TESTNAME=jbb_default}
83

84
# All jdk test targets (testset=all)
O
ohair 已提交
85
jprt.make.rule.all.test.targets=    				\
86 87 88 89 90 91 92 93 94 95 96 97 98
    ${jprt.make.rule.default.test.targets}, 			\
    ${jprt.my.test.target.set:TESTNAME=jdk_awt},                \
    ${jprt.my.test.target.set:TESTNAME=jdk_beans2},             \
    ${jprt.my.test.target.set:TESTNAME=jdk_beans3},             \
    ${jprt.my.test.target.set:TESTNAME=jdk_management1},        \
    ${jprt.my.test.target.set:TESTNAME=jdk_management2},        \
    ${jprt.my.test.target.set:TESTNAME=jdk_rmi},                \
    ${jprt.my.test.target.set:TESTNAME=jdk_security2},          \
    ${jprt.my.test.target.set:TESTNAME=jdk_security3},          \
    ${jprt.my.test.target.set:TESTNAME=jdk_sound},              \
    ${jprt.my.test.target.set:TESTNAME=jdk_swing},              \
    ${jprt.my.test.target.set:TESTNAME=jdk_tools1},             \
    ${jprt.my.test.target.set:TESTNAME=jdk_tools2}
99

100
# JCK test targets in test/Makefile (no windows)
101 102 103 104 105 106 107 108 109 110 111 112 113 114
jprt.my.jck.test.target.set=					\
    solaris_sparc_5.10-product-c1-JCK7TESTRULE, 		\
    solaris_sparcv9_5.10-product-c2-JCK7TESTRULE, 		\
    solaris_i586_5.10-product-c1-JCK7TESTRULE, 			\
    solaris_x64_5.10-product-c2-JCK7TESTRULE, 			\
    linux_i586_2.6-product-c1-JCK7TESTRULE, 			\
    linux_x64_2.6-product-c2-JCK7TESTRULE

# JCK testset targets (e.g. jprt submit -testset jck ... )
jprt.make.rule.jck.test.targets=				\
    ${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7devtools},   \
    ${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7runtime},    \
    ${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7compiler}

O
ohair 已提交
115
# Select list to use (allow for testset to be empty too)
116 117 118 119
jprt.make.rule..test.targets=${jprt.make.rule.default.test.targets}
jprt.make.rule.test.targets=${jprt.make.rule.${jprt.my.test.set}.test.targets}
jprt.vm..test.targets=${jprt.vm.default.test.targets}
jprt.test.targets=${jprt.vm.${jprt.my.test.set}.test.targets}
D
duke 已提交
120

121 122
# Directories to be excluded from the source bundles
jprt.bundle.exclude.src.dirs=build dist webrev
D
duke 已提交
123