author | amurillo |
Fri, 11 Jan 2013 01:43:09 -0800 | |
changeset 15120 | 8bac833614e0 |
parent 14687 | 1af181e94395 |
child 15289 | 3ac550392e43 |
permissions | -rw-r--r-- |
2 | 1 |
# |
14342
8435a30053c1
7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents:
14170
diff
changeset
|
2 |
# Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
# published by the Free Software Foundation. Oracle designates this |
2 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
2 | 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 |
# |
|
5506 | 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. |
|
2 | 24 |
# |
25 |
||
26 |
# Properties for jprt |
|
27 |
||
11281 | 28 |
# Locked down to jdk8 |
10132 | 29 |
jprt.tools.default.release=jdk8 |
6326
047748ce0a45
6982946: Change make/jprt.properties to defer to JPRT itself for jdk platform list
ohair
parents:
5506
diff
changeset
|
30 |
|
047748ce0a45
6982946: Change make/jprt.properties to defer to JPRT itself for jdk platform list
ohair
parents:
5506
diff
changeset
|
31 |
# The different build flavors we want, we override here so we just get these 2 |
2 | 32 |
jprt.build.flavors=product,fastdebug |
33 |
||
6680 | 34 |
# Standard list of jprt build targets for this source tree |
11281 | 35 |
jprt.build.targets= \ |
36 |
solaris_sparc_5.10-{product|fastdebug}, \ |
|
6680 | 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}, \ |
|
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11677
diff
changeset
|
42 |
macosx_x64_10.7-{product|fastdebug}, \ |
10132 | 43 |
windows_i586_5.1-{product|fastdebug}, \ |
6680 | 44 |
windows_x64_5.2-{product|fastdebug} |
45 |
||
8992
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
46 |
# User can select the test set with jprt submit "-testset name" option |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
47 |
jprt.my.test.set=${jprt.test.set} |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
48 |
|
11281 | 49 |
# Test target list (no fastdebug & limited c2 testing) |
50 |
jprt.my.test.target.set= \ |
|
51 |
solaris_sparc_5.10-product-c1-TESTNAME, \ |
|
52 |
solaris_sparcv9_5.10-product-c2-TESTNAME, \ |
|
53 |
solaris_i586_5.10-product-c1-TESTNAME, \ |
|
54 |
solaris_x64_5.10-product-c2-TESTNAME, \ |
|
55 |
linux_i586_2.6-product-{c1|c2}-TESTNAME, \ |
|
56 |
linux_x64_2.6-product-c2-TESTNAME, \ |
|
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11677
diff
changeset
|
57 |
macosx_x64_10.7-product-c2-TESTNAME, \ |
11281 | 58 |
windows_i586_5.1-product-c1-TESTNAME, \ |
59 |
windows_x64_5.2-product-c2-TESTNAME |
|
60 |
||
61 |
# Default vm test targets (testset=default) |
|
8992
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
62 |
jprt.vm.default.test.targets= \ |
11281 | 63 |
${jprt.my.test.target.set:TESTNAME=jvm98} |
6680 | 64 |
|
11281 | 65 |
# Default jdk test targets (testset=default) |
6680 | 66 |
jprt.make.rule.default.test.targets= \ |
11677
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
67 |
${jprt.my.test.target.set:TESTNAME=jdk_lang}, \ |
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
68 |
${jprt.my.test.target.set:TESTNAME=jdk_math} |
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
69 |
|
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
70 |
# Default vm test targets (testset=core) |
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
71 |
jprt.vm.core.test.targets= \ |
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
72 |
${jprt.vm.default.test.targets} |
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
73 |
|
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
74 |
# Core jdk test targets (testset=core) |
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
75 |
jprt.make.rule.core.test.targets= \ |
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
76 |
${jprt.make.rule.default.test.targets}, \ |
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
77 |
${jprt.my.test.target.set:TESTNAME=jdk_util}, \ |
11281 | 78 |
${jprt.my.test.target.set:TESTNAME=jdk_io}, \ |
79 |
${jprt.my.test.target.set:TESTNAME=jdk_net}, \ |
|
14170
c819974fc133
7173494: some jdk tests are not run in test/Makefile
alanb
parents:
12887
diff
changeset
|
80 |
${jprt.my.test.target.set:TESTNAME=jdk_nio}, \ |
11281 | 81 |
${jprt.my.test.target.set:TESTNAME=jdk_security1}, \ |
11677
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
82 |
${jprt.my.test.target.set:TESTNAME=jdk_security2}, \ |
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
83 |
${jprt.my.test.target.set:TESTNAME=jdk_security3}, \ |
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
84 |
${jprt.my.test.target.set:TESTNAME=jdk_rmi}, \ |
14170
c819974fc133
7173494: some jdk tests are not run in test/Makefile
alanb
parents:
12887
diff
changeset
|
85 |
${jprt.my.test.target.set:TESTNAME=jdk_management}, \ |
c819974fc133
7173494: some jdk tests are not run in test/Makefile
alanb
parents:
12887
diff
changeset
|
86 |
${jprt.my.test.target.set:TESTNAME=jdk_jmx}, \ |
11281 | 87 |
${jprt.my.test.target.set:TESTNAME=jdk_text}, \ |
14170
c819974fc133
7173494: some jdk tests are not run in test/Makefile
alanb
parents:
12887
diff
changeset
|
88 |
${jprt.my.test.target.set:TESTNAME=jdk_tools}, \ |
12887 | 89 |
${jprt.my.test.target.set:TESTNAME=jdk_jfr}, \ |
14170
c819974fc133
7173494: some jdk tests are not run in test/Makefile
alanb
parents:
12887
diff
changeset
|
90 |
${jprt.my.test.target.set:TESTNAME=jdk_other} |
4187
d7111a88f0ec
6888927: Fix jdk jtreg tests to indicate which ones need othervm, allow for use of samevm option
ohair
parents:
2799
diff
changeset
|
91 |
|
11281 | 92 |
# All vm test targets (testset=all) |
93 |
jprt.vm.all.test.targets= \ |
|
94 |
${jprt.vm.default.test.targets}, \ |
|
95 |
${jprt.my.test.target.set:TESTNAME=runThese}, \ |
|
96 |
${jprt.my.test.target.set:TESTNAME=jbb_default} |
|
97 |
||
98 |
# All jdk test targets (testset=all) |
|
6680 | 99 |
jprt.make.rule.all.test.targets= \ |
11677
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
100 |
${jprt.make.rule.core.test.targets}, \ |
11281 | 101 |
${jprt.my.test.target.set:TESTNAME=jdk_awt}, \ |
11677
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
102 |
${jprt.my.test.target.set:TESTNAME=jdk_beans1}, \ |
11281 | 103 |
${jprt.my.test.target.set:TESTNAME=jdk_beans2}, \ |
104 |
${jprt.my.test.target.set:TESTNAME=jdk_beans3}, \ |
|
14687 | 105 |
${jprt.my.test.target.set:TESTNAME=jdk_jdi}, \ |
11281 | 106 |
${jprt.my.test.target.set:TESTNAME=jdk_sound}, \ |
11677
ebcf8112c872
7132204: Default testset in JPRT should not run all tests
alanb
parents:
11281
diff
changeset
|
107 |
${jprt.my.test.target.set:TESTNAME=jdk_swing} |
6680 | 108 |
|
11281 | 109 |
# JCK test targets in test/Makefile (no windows) |
8992
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
110 |
jprt.my.jck.test.target.set= \ |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
111 |
solaris_sparc_5.10-product-c1-JCK7TESTRULE, \ |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
112 |
solaris_sparcv9_5.10-product-c2-JCK7TESTRULE, \ |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
113 |
solaris_i586_5.10-product-c1-JCK7TESTRULE, \ |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
114 |
solaris_x64_5.10-product-c2-JCK7TESTRULE, \ |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
115 |
linux_i586_2.6-product-c1-JCK7TESTRULE, \ |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
116 |
linux_x64_2.6-product-c2-JCK7TESTRULE |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
117 |
|
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
118 |
# JCK testset targets (e.g. jprt submit -testset jck ... ) |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
119 |
jprt.make.rule.jck.test.targets= \ |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
120 |
${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7devtools}, \ |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
121 |
${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7runtime}, \ |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
122 |
${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7compiler} |
6a3062c1416f
6737397: Should support running JCK test suite with test/Makefile and JPRT
ohair
parents:
7668
diff
changeset
|
123 |
|
6680 | 124 |
# Select list to use (allow for testset to be empty too) |
11281 | 125 |
jprt.make.rule..test.targets=${jprt.make.rule.default.test.targets} |
126 |
jprt.make.rule.test.targets=${jprt.make.rule.${jprt.my.test.set}.test.targets} |
|
127 |
jprt.vm..test.targets=${jprt.vm.default.test.targets} |
|
128 |
jprt.test.targets=${jprt.vm.${jprt.my.test.set}.test.targets} |
|
2 | 129 |
|
6326
047748ce0a45
6982946: Change make/jprt.properties to defer to JPRT itself for jdk platform list
ohair
parents:
5506
diff
changeset
|
130 |
# Directories to be excluded from the source bundles |
047748ce0a45
6982946: Change make/jprt.properties to defer to JPRT itself for jdk platform list
ohair
parents:
5506
diff
changeset
|
131 |
jprt.bundle.exclude.src.dirs=build dist webrev |
2 | 132 |