jprt.properties 5.8 KB
Newer Older
D
duke 已提交
1
#
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 35 36 37 38 39 40 41
# Standard list of jprt build targets for this source tree
jprt.build.targets= 						\
    solaris_sparc_5.10-{product|fastdebug}, 			\
    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
    macosx_x64_10.7-{product|fastdebug}, 			\
43
    windows_i586_5.1-{product|fastdebug}, 			\
O
ohair 已提交
44 45 46 47 48
    windows_x64_5.2-{product|fastdebug}

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

49 50 51 52 53 54 55 56
# 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, 				\
57
    macosx_x64_10.7-product-c2-TESTNAME, 			\
58 59 60 61
    windows_i586_5.1-product-c1-TESTNAME, 			\
    windows_x64_5.2-product-c2-TESTNAME

# Default vm test targets (testset=default)
O
ohair 已提交
62
jprt.vm.default.test.targets=              			\
63 64
    ${jprt.my.test.target.set:TESTNAME=jvm98},			\
    ${jprt.my.test.target.set:TESTNAME=scimark}
O
ohair 已提交
65

66
# Default jdk test targets (testset=default)
O
ohair 已提交
67
jprt.make.rule.default.test.targets=				\
68 69 70 71 72 73 74 75 76 77 78 79
    ${jprt.my.test.target.set:TESTNAME=langtools_jtreg},        \
    ${jprt.my.test.target.set:TESTNAME=jdk_lang},               \
    ${jprt.my.test.target.set:TESTNAME=jdk_math}

# Default vm test targets (testset=core)
jprt.vm.core.test.targets=                                      \
    ${jprt.vm.default.test.targets}

# Core jdk test targets (testset=core)
jprt.make.rule.core.test.targets=                               \
    ${jprt.make.rule.default.test.targets},                     \
    ${jprt.my.test.target.set:TESTNAME=jdk_util},               \
80 81
    ${jprt.my.test.target.set:TESTNAME=jdk_io},			\
    ${jprt.my.test.target.set:TESTNAME=jdk_net},		\
82
    ${jprt.my.test.target.set:TESTNAME=jdk_nio},		\
83
    ${jprt.my.test.target.set:TESTNAME=jdk_security1},		\
84 85 86
    ${jprt.my.test.target.set:TESTNAME=jdk_security2},          \
    ${jprt.my.test.target.set:TESTNAME=jdk_security3},          \
    ${jprt.my.test.target.set:TESTNAME=jdk_rmi},                \
87 88
    ${jprt.my.test.target.set:TESTNAME=jdk_management},         \
    ${jprt.my.test.target.set:TESTNAME=jdk_jmx},                \
89
    ${jprt.my.test.target.set:TESTNAME=jdk_text},		\
90 91
    ${jprt.my.test.target.set:TESTNAME=jdk_tools},              \
    ${jprt.my.test.target.set:TESTNAME=jdk_jdi},                \
92
    ${jprt.my.test.target.set:TESTNAME=jdk_jfr},                \
93
    ${jprt.my.test.target.set:TESTNAME=jdk_other}
O
ohair 已提交
94

95
# All vm test targets (testset=all)
O
ohair 已提交
96
jprt.vm.all.test.targets=    					\
97 98 99
    ${jprt.vm.default.test.targets}, 				\
    ${jprt.my.test.target.set:TESTNAME=runThese},		\
    ${jprt.my.test.target.set:TESTNAME=jbb_default}
100

101
# All jdk test targets (testset=all)
O
ohair 已提交
102
jprt.make.rule.all.test.targets=    				\
103
    ${jprt.make.rule.core.test.targets}, 			\
104
    ${jprt.my.test.target.set:TESTNAME=jdk_awt},		\
105
    ${jprt.my.test.target.set:TESTNAME=jdk_beans1},             \
106 107 108
    ${jprt.my.test.target.set:TESTNAME=jdk_beans2},		\
    ${jprt.my.test.target.set:TESTNAME=jdk_beans3},		\
    ${jprt.my.test.target.set:TESTNAME=jdk_sound},		\
109
    ${jprt.my.test.target.set:TESTNAME=jdk_swing}
110

111
# JCK test targets in test/Makefile (no windows)
112 113 114 115 116 117 118 119 120 121 122 123 124 125
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 已提交
126
# Select list to use (allow for testset to be empty too)
127 128 129 130
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}
131

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