annotate make/jprt.properties @ 3285:49a67202bc67

7011855: G1: non-product flag to artificially grow the heap Summary: It introduces non-product cmd line parameter G1DummyRegionsPerGC which indicates how many "dummy" regions to allocate at the end of each GC. This allows the G1 heap to grow artificially and makes concurrent marking cycles more frequent irrespective of what the application that is running is doing. The dummy regions will be found totally empty during cleanup so this parameter can also be used to stress the concurrent cleanup operation. Reviewed-by: brutisso, johnc
author tonyp
date Tue, 19 Apr 2011 15:46:59 -0400
parents f7702f8c0e25
children 03b943e6c025
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
2228
59e20a452a2a 7017008: G1: Turn on compressed oops by default.
johnc
parents: 2103
diff changeset
2 # Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1492
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1492
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1492
diff changeset
21 # questions.
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
22 #
0
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # Properties for jprt
a61af66fc99e Initial load
duke
parents:
diff changeset
26
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
27 # All build result bundles are full jdks, so the 64bit testing does not
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
28 # need the 32bit sibling bundle installed.
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
29 # Note: If the hotspot/make/Makefile changed to only bundle the 64bit files
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
30 # when bundling 64bit, and stripped out the 64bit files from any 32bit
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
31 # bundles, then this setting would be need to be "true".
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
32
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
33 jprt.need.sibling.build=false
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
34
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
35 # At submit time, the release supplied will be in jprt.submit.release
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
36 # and will be one of the official release names defined in jprt.
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
37 # jprt supports property value expansion using ${property.name} syntax.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
38
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
39 # This tells jprt what default release we want to build
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
40
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
41 jprt.tools.default.release=${jprt.submit.release}
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
42
944
b1f5ced5da21 6879076: disable jprt sync after builds are done
jcoomes
parents: 891
diff changeset
43 # Disable syncing the source after builds and tests are done.
b1f5ced5da21 6879076: disable jprt sync after builds are done
jcoomes
parents: 891
diff changeset
44
b1f5ced5da21 6879076: disable jprt sync after builds are done
jcoomes
parents: 891
diff changeset
45 jprt.sync.push=false
b1f5ced5da21 6879076: disable jprt sync after builds are done
jcoomes
parents: 891
diff changeset
46
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
47 # Note: we want both embedded releases and regular releases to build and test
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
48 # all platforms so that regressions are not introduced (eg. change to
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
49 # common code by SE breaks PPC/ARM; change to common code by SE-E breaks
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
50 # sparc etc.
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
51
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
52 # Define the Solaris platforms we want for the various releases
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
53
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
54 jprt.my.solaris.sparc.jdk7=solaris_sparc_5.10
1771
07551f490c76 6982851: Add b107 machine classifications to jprt.properties file.
kamg
parents: 1552
diff changeset
55 jprt.my.solaris.sparc.jdk7b107=solaris_sparc_5.10
1780
432d823638f7 6985022: update make/jprt.properties for new jdk7 tools
jcoomes
parents: 1771
diff changeset
56 jprt.my.solaris.sparc.jdk7temp=solaris_sparc_5.10
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
57 jprt.my.solaris.sparc.jdk6=solaris_sparc_5.8
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
58 jprt.my.solaris.sparc.jdk6perf=solaris_sparc_5.8
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
59 jprt.my.solaris.sparc.jdk6u10=solaris_sparc_5.8
719
a61730a6fdbc 6833316: jprt.properties not setting values for 6u14 release flag
trims
parents: 632
diff changeset
60 jprt.my.solaris.sparc.jdk6u14=solaris_sparc_5.8
1492
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
61 jprt.my.solaris.sparc.jdk6u18=solaris_sparc_5.8
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
62 jprt.my.solaris.sparc.jdk6u20=solaris_sparc_5.8
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
63 jprt.my.solaris.sparc.ejdk7=${jprt.my.solaris.sparc.jdk7}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
64 jprt.my.solaris.sparc.ejdk6=${jprt.my.solaris.sparc.jdk6}
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
65 jprt.my.solaris.sparc=${jprt.my.solaris.sparc.${jprt.tools.default.release}}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
67 jprt.my.solaris.sparcv9.jdk7=solaris_sparcv9_5.10
1771
07551f490c76 6982851: Add b107 machine classifications to jprt.properties file.
kamg
parents: 1552
diff changeset
68 jprt.my.solaris.sparcv9.jdk7b107=solaris_sparcv9_5.10
1780
432d823638f7 6985022: update make/jprt.properties for new jdk7 tools
jcoomes
parents: 1771
diff changeset
69 jprt.my.solaris.sparcv9.jdk7temp=solaris_sparcv9_5.10
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
70 jprt.my.solaris.sparcv9.jdk6=solaris_sparcv9_5.8
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
71 jprt.my.solaris.sparcv9.jdk6perf=solaris_sparcv9_5.8
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
72 jprt.my.solaris.sparcv9.jdk6u10=solaris_sparcv9_5.8
719
a61730a6fdbc 6833316: jprt.properties not setting values for 6u14 release flag
trims
parents: 632
diff changeset
73 jprt.my.solaris.sparcv9.jdk6u14=solaris_sparcv9_5.8
1492
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
74 jprt.my.solaris.sparcv9.jdk6u18=solaris_sparcv9_5.8
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
75 jprt.my.solaris.sparcv9.jdk6u20=solaris_sparcv9_5.8
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
76 jprt.my.solaris.sparcv9.ejdk7=${jprt.my.solaris.sparcv9.jdk7}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
77 jprt.my.solaris.sparcv9.ejdk6=${jprt.my.solaris.sparcv9.jdk6}
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
78 jprt.my.solaris.sparcv9=${jprt.my.solaris.sparcv9.${jprt.tools.default.release}}
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
79
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
80 jprt.my.solaris.i586.jdk7=solaris_i586_5.10
1771
07551f490c76 6982851: Add b107 machine classifications to jprt.properties file.
kamg
parents: 1552
diff changeset
81 jprt.my.solaris.i586.jdk7b107=solaris_i586_5.10
1780
432d823638f7 6985022: update make/jprt.properties for new jdk7 tools
jcoomes
parents: 1771
diff changeset
82 jprt.my.solaris.i586.jdk7temp=solaris_i586_5.10
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
83 jprt.my.solaris.i586.jdk6=solaris_i586_5.8
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
84 jprt.my.solaris.i586.jdk6perf=solaris_i586_5.8
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
85 jprt.my.solaris.i586.jdk6u10=solaris_i586_5.8
719
a61730a6fdbc 6833316: jprt.properties not setting values for 6u14 release flag
trims
parents: 632
diff changeset
86 jprt.my.solaris.i586.jdk6u14=solaris_i586_5.8
1492
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
87 jprt.my.solaris.i586.jdk6u18=solaris_i586_5.8
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
88 jprt.my.solaris.i586.jdk6u20=solaris_i586_5.8
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
89 jprt.my.solaris.i586.ejdk7=${jprt.my.solaris.i586.jdk7}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
90 jprt.my.solaris.i586.ejdk6=${jprt.my.solaris.i586.jdk6}
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
91 jprt.my.solaris.i586=${jprt.my.solaris.i586.${jprt.tools.default.release}}
91
a294fd0c4b38 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 0
diff changeset
92
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
93 jprt.my.solaris.x64.jdk7=solaris_x64_5.10
1771
07551f490c76 6982851: Add b107 machine classifications to jprt.properties file.
kamg
parents: 1552
diff changeset
94 jprt.my.solaris.x64.jdk7b107=solaris_x64_5.10
1780
432d823638f7 6985022: update make/jprt.properties for new jdk7 tools
jcoomes
parents: 1771
diff changeset
95 jprt.my.solaris.x64.jdk7temp=solaris_x64_5.10
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
96 jprt.my.solaris.x64.jdk6=solaris_x64_5.10
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
97 jprt.my.solaris.x64.jdk6perf=solaris_x64_5.10
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
98 jprt.my.solaris.x64.jdk6u10=solaris_x64_5.10
719
a61730a6fdbc 6833316: jprt.properties not setting values for 6u14 release flag
trims
parents: 632
diff changeset
99 jprt.my.solaris.x64.jdk6u14=solaris_x64_5.10
1492
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
100 jprt.my.solaris.x64.jdk6u18=solaris_x64_5.10
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
101 jprt.my.solaris.x64.jdk6u20=solaris_x64_5.10
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
102 jprt.my.solaris.x64.ejdk7=${jprt.my.solaris.x64.jdk7}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
103 jprt.my.solaris.x64.ejdk6=${jprt.my.solaris.x64.jdk6}
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
104 jprt.my.solaris.x64=${jprt.my.solaris.x64.${jprt.tools.default.release}}
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
105
740
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
106 jprt.my.linux.i586.jdk7=linux_i586_2.6
1771
07551f490c76 6982851: Add b107 machine classifications to jprt.properties file.
kamg
parents: 1552
diff changeset
107 jprt.my.linux.i586.jdk7b107=linux_i586_2.6
1780
432d823638f7 6985022: update make/jprt.properties for new jdk7 tools
jcoomes
parents: 1771
diff changeset
108 jprt.my.linux.i586.jdk7temp=linux_i586_2.6
740
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
109 jprt.my.linux.i586.jdk6=linux_i586_2.4
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
110 jprt.my.linux.i586.jdk6perf=linux_i586_2.4
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
111 jprt.my.linux.i586.jdk6u10=linux_i586_2.4
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
112 jprt.my.linux.i586.jdk6u14=linux_i586_2.4
1492
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
113 jprt.my.linux.i586.jdk6u18=linux_i586_2.4
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
114 jprt.my.linux.i586.jdk6u20=linux_i586_2.4
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
115 jprt.my.linux.i586.ejdk7=linux_i586_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
116 jprt.my.linux.i586.ejdk6=linux_i586_2.6
740
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
117 jprt.my.linux.i586=${jprt.my.linux.i586.${jprt.tools.default.release}}
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
118
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
119 jprt.my.linux.x64.jdk7=linux_x64_2.6
1771
07551f490c76 6982851: Add b107 machine classifications to jprt.properties file.
kamg
parents: 1552
diff changeset
120 jprt.my.linux.x64.jdk7b107=linux_x64_2.6
1780
432d823638f7 6985022: update make/jprt.properties for new jdk7 tools
jcoomes
parents: 1771
diff changeset
121 jprt.my.linux.x64.jdk7temp=linux_x64_2.6
740
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
122 jprt.my.linux.x64.jdk6=linux_x64_2.4
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
123 jprt.my.linux.x64.jdk6perf=linux_x64_2.4
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
124 jprt.my.linux.x64.jdk6u10=linux_x64_2.4
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
125 jprt.my.linux.x64.jdk6u14=linux_x64_2.4
1492
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
126 jprt.my.linux.x64.jdk6u18=linux_x64_2.4
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
127 jprt.my.linux.x64.jdk6u20=linux_x64_2.4
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
128 jprt.my.linux.x64.ejdk7=${jprt.my.linux.x64.jdk7}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
129 jprt.my.linux.x64.ejdk6=${jprt.my.linux.x64.jdk6}
740
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
130 jprt.my.linux.x64=${jprt.my.linux.x64.${jprt.tools.default.release}}
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
131
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
132 jprt.my.linux.ppc.jdk7=linux_ppc_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
133 jprt.my.linux.ppc.jdk7b107=linux_ppc_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
134 jprt.my.linux.ppc.jdk7temp=linux_ppc_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
135 jprt.my.linux.ppc.ejdk6=linux_ppc_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
136 jprt.my.linux.ppc.ejdk7=linux_ppc_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
137 jprt.my.linux.ppc=${jprt.my.linux.ppc.${jprt.tools.default.release}}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
138
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
139 jprt.my.linux.ppcv2.jdk7=linux_ppcv2_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
140 jprt.my.linux.ppcv2.jdk7b107=linux_ppcv2_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
141 jprt.my.linux.ppcv2.jdk7temp=linux_ppcv2_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
142 jprt.my.linux.ppcv2.ejdk6=linux_ppcv2_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
143 jprt.my.linux.ppcv2.ejdk7=linux_ppcv2_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
144 jprt.my.linux.ppcv2=${jprt.my.linux.ppcv2.${jprt.tools.default.release}}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
145
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
146 jprt.my.linux.ppcsflt.jdk7=linux_ppcsflt_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
147 jprt.my.linux.ppcsflt.jdk7b107=linux_ppcsflt_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
148 jprt.my.linux.ppcsflt.jdk7temp=linux_ppcsflt_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
149 jprt.my.linux.ppcsflt.ejdk6=linux_ppcsflt_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
150 jprt.my.linux.ppcsflt.ejdk7=linux_ppcsflt_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
151 jprt.my.linux.ppcsflt=${jprt.my.linux.ppcsflt.${jprt.tools.default.release}}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
152
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
153 jprt.my.linux.armvfp.jdk7=linux_armvfp_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
154 jprt.my.linux.armvfp.jdk7b107=linux_armvfp_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
155 jprt.my.linux.armvfp.jdk7temp=linux_armvfp_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
156 jprt.my.linux.armvfp.ejdk6=linux_armvfp_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
157 jprt.my.linux.armvfp.ejdk7=linux_armvfp_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
158 jprt.my.linux.armvfp=${jprt.my.linux.armvfp.${jprt.tools.default.release}}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
159
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
160 jprt.my.linux.armsflt.jdk7=linux_armsflt_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
161 jprt.my.linux.armsflt.jdk7b107=linux_armsflt_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
162 jprt.my.linux.armsflt.jdk7temp=linux_armsflt_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
163 jprt.my.linux.armsflt.ejdk6=linux_armsflt_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
164 jprt.my.linux.armsflt.ejdk7=linux_armsflt_2.6
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
165 jprt.my.linux.armsflt=${jprt.my.linux.armsflt.${jprt.tools.default.release}}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
166
1780
432d823638f7 6985022: update make/jprt.properties for new jdk7 tools
jcoomes
parents: 1771
diff changeset
167 jprt.my.windows.i586.jdk7=windows_i586_5.1
1771
07551f490c76 6982851: Add b107 machine classifications to jprt.properties file.
kamg
parents: 1552
diff changeset
168 jprt.my.windows.i586.jdk7b107=windows_i586_5.0
1780
432d823638f7 6985022: update make/jprt.properties for new jdk7 tools
jcoomes
parents: 1771
diff changeset
169 jprt.my.windows.i586.jdk7temp=windows_i586_5.0
740
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
170 jprt.my.windows.i586.jdk6=windows_i586_5.0
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
171 jprt.my.windows.i586.jdk6perf=windows_i586_5.0
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
172 jprt.my.windows.i586.jdk6u10=windows_i586_5.0
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
173 jprt.my.windows.i586.jdk6u14=windows_i586_5.0
1492
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
174 jprt.my.windows.i586.jdk6u18=windows_i586_5.0
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
175 jprt.my.windows.i586.jdk6u20=windows_i586_5.0
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
176 jprt.my.windows.i586.ejdk7=${jprt.my.windows.i586.jdk7}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
177 jprt.my.windows.i586.ejdk6=${jprt.my.windows.i586.jdk6}
740
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
178 jprt.my.windows.i586=${jprt.my.windows.i586.${jprt.tools.default.release}}
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
179
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
180 jprt.my.windows.x64.jdk7=windows_x64_5.2
1771
07551f490c76 6982851: Add b107 machine classifications to jprt.properties file.
kamg
parents: 1552
diff changeset
181 jprt.my.windows.x64.jdk7b107=windows_x64_5.2
1780
432d823638f7 6985022: update make/jprt.properties for new jdk7 tools
jcoomes
parents: 1771
diff changeset
182 jprt.my.windows.x64.jdk7temp=windows_x64_5.2
740
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
183 jprt.my.windows.x64.jdk6=windows_x64_5.2
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
184 jprt.my.windows.x64.jdk6perf=windows_x64_5.2
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
185 jprt.my.windows.x64.jdk6u10=windows_x64_5.2
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
186 jprt.my.windows.x64.jdk6u14=windows_x64_5.2
1492
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
187 jprt.my.windows.x64.jdk6u18=windows_x64_5.2
731bcbe3c9c4 6950438: Add 6u18 and 6u20 release values explicitly to jprt.properties file
trims
parents: 944
diff changeset
188 jprt.my.windows.x64.jdk6u20=windows_x64_5.2
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
189 jprt.my.windows.x64.ejdk7=${jprt.my.windows.x64.jdk7}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
190 jprt.my.windows.x64.ejdk6=${jprt.my.windows.x64.jdk6}
740
c8379544879a 6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
ohair
parents: 719
diff changeset
191 jprt.my.windows.x64=${jprt.my.windows.x64.${jprt.tools.default.release}}
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
192
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
193 # Standard list of jprt build targets for this source tree
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
194
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
195 jprt.build.targets.standard= \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
196 ${jprt.my.solaris.sparc}-{product|fastdebug|debug}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
197 ${jprt.my.solaris.sparcv9}-{product|fastdebug|debug}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
198 ${jprt.my.solaris.i586}-{product|fastdebug|debug}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
199 ${jprt.my.solaris.x64}-{product|fastdebug|debug}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
200 ${jprt.my.linux.i586}-{product|fastdebug|debug}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
201 ${jprt.my.linux.x64}-{product|fastdebug}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
202 ${jprt.my.windows.i586}-{product|fastdebug|debug}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
203 ${jprt.my.windows.x64}-{product|fastdebug|debug}
91
a294fd0c4b38 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 0
diff changeset
204
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
205 jprt.build.targets.embedded= \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
206 ${jprt.my.linux.i586}-{product|fastdebug|debug}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
207 ${jprt.my.linux.ppc}-{product|fastdebug}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
208 ${jprt.my.linux.ppcv2}-{product|fastdebug}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
209 ${jprt.my.linux.ppcsflt}-{product|fastdebug}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
210 ${jprt.my.linux.armvfp}-{product|fastdebug}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
211 ${jprt.my.linux.armsflt}-{product|fastdebug}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
212
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
213 jprt.build.targets.all=${jprt.build.targets.standard}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
214 ${jprt.build.targets.embedded}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
215
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
216 jprt.build.targets.jdk7=${jprt.build.targets.all}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
217 jprt.build.targets.jdk7temp=${jprt.build.targets.all}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
218 jprt.build.targets.jdk7b107=${jprt.build.targets.all}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
219 jprt.build.targets.jdk6=${jprt.build.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
220 jprt.build.targets.jdk6perf=${jprt.build.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
221 jprt.build.targets.jdk6u10=${jprt.build.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
222 jprt.build.targets.jdk6u14=${jprt.build.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
223 jprt.build.targets.jdk6u18=${jprt.build.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
224 jprt.build.targets.jdk6u20=${jprt.build.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
225 jprt.build.targets.ejdk6=${jprt.build.targets.all}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
226 jprt.build.targets.ejdk7=${jprt.build.targets.all}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
227 jprt.build.targets=${jprt.build.targets.${jprt.tools.default.release}}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
228
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
229 # Subset lists of test targets for this source tree
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
230
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
231 jprt.my.solaris.sparc.test.targets= \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
232 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jvm98, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
233 ${jprt.my.solaris.sparc}-{product|fastdebug}-c2-jvm98_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
234 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-scimark, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
235 ${jprt.my.solaris.sparc}-product-{c1|c2}-runThese, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
236 ${jprt.my.solaris.sparc}-fastdebug-c1-runThese_Xshare, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
237 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
238 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
239 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
240 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
241 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
242 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
243 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
244 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
245 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
246 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
247 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
248 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
249 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
250 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
251 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_default, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
252 ${jprt.my.solaris.sparc}-{product|fastdebug}-c2-jbb_default_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
253 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
254 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
255 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
256 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
257 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_ParOldGC
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
258
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
259 jprt.my.solaris.sparcv9.test.targets= \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
260 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jvm98, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
261 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jvm98_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
262 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-scimark, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
263 ${jprt.my.solaris.sparcv9}-product-c2-runThese, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
264 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
265 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
266 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
267 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
268 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
269 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
270 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
271 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
272 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
273 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
274 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
275 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
276 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
277 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
278 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_default, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
279 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_default_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
280 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
281 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
282 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
283 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
284 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_ParOldGC
0
a61af66fc99e Initial load
duke
parents:
diff changeset
285
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
286 jprt.my.solaris.x64.test.targets= \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
287 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-jvm98, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
288 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-jvm98_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
289 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-scimark, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
290 ${jprt.my.solaris.x64}-product-c2-runThese, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
291 ${jprt.my.solaris.x64}-product-c2-runThese_Xcomp, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
292 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
293 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
294 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
295 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
296 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
297 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
298 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
299 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
300 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
301 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
302 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
303 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
304 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
305 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
306 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-jbb_default, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
307 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-jbb_default_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
308 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-jbb_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
309 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-jbb_ParallelGC, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
310 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_CMS, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
311 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
312 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_ParOldGC
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
313
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
314 jprt.my.solaris.i586.test.targets= \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
315 ${jprt.my.solaris.i586}-{product|fastdebug}-{c1|c2}-jvm98, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
316 ${jprt.my.solaris.i586}-{product|fastdebug}-c2-jvm98_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
317 ${jprt.my.solaris.i586}-{product|fastdebug}-{c1|c2}-scimark, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
318 ${jprt.my.solaris.i586}-product-{c1|c2}-runThese_Xcomp, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
319 ${jprt.my.solaris.i586}-fastdebug-c1-runThese_Xcomp, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
320 ${jprt.my.solaris.i586}-fastdebug-c1-runThese_Xshare, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
321 ${jprt.my.solaris.i586}-product-c1-GCBasher_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
322 ${jprt.my.solaris.i586}-product-c1-GCBasher_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
323 ${jprt.my.solaris.i586}-product-c1-GCBasher_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
324 ${jprt.my.solaris.i586}-product-c1-GCBasher_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
325 ${jprt.my.solaris.i586}-product-c1-GCBasher_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
326 ${jprt.my.solaris.i586}-product-c1-GCBasher_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
327 ${jprt.my.solaris.i586}-product-c1-GCBasher_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
328 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
329 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
330 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
331 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
332 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
333 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
334 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
335 ${jprt.my.solaris.i586}-product-c1-GCOld_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
336 ${jprt.my.solaris.i586}-product-c1-GCOld_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
337 ${jprt.my.solaris.i586}-product-c1-GCOld_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
338 ${jprt.my.solaris.i586}-product-c1-GCOld_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
339 ${jprt.my.solaris.i586}-product-c1-GCOld_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
340 ${jprt.my.solaris.i586}-product-c1-GCOld_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
341 ${jprt.my.solaris.i586}-product-c1-GCOld_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
342 ${jprt.my.solaris.i586}-fastdebug-c2-jbb_default, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
343 ${jprt.my.solaris.i586}-fastdebug-c2-jbb_default_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
344 ${jprt.my.solaris.i586}-fastdebug-c2-jbb_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
345 ${jprt.my.solaris.i586}-fastdebug-c2-jbb_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
346 ${jprt.my.solaris.i586}-fastdebug-c2-jbb_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
347 ${jprt.my.solaris.i586}-fastdebug-c2-jbb_ParOldGC
0
a61af66fc99e Initial load
duke
parents:
diff changeset
348
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
349 jprt.my.linux.i586.test.targets = \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
350 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-jvm98, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
351 ${jprt.my.linux.i586}-{product|fastdebug}-c2-jvm98_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
352 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-scimark, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
353 ${jprt.my.linux.i586}-product-c1-runThese_Xcomp, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
354 ${jprt.my.linux.i586}-fastdebug-c1-runThese_Xshare, \
744
af5d39ca39a3 6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
kvn
parents: 740
diff changeset
355 ${jprt.my.linux.i586}-fastdebug-c2-runThese_Xcomp, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
356 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
357 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
358 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
359 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
360 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
361 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
362 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
363 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
364 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
365 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
366 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
367 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
368 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
369 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
370 ${jprt.my.linux.i586}-{product|fastdebug}-c1-jbb_default, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
371 ${jprt.my.linux.i586}-{product|fastdebug}-c2-jbb_default_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
372 ${jprt.my.linux.i586}-{product|fastdebug}-c1-jbb_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
373 ${jprt.my.linux.i586}-{product|fastdebug}-c1-jbb_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
374 ${jprt.my.linux.i586}-{product|fastdebug}-c1-jbb_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
375 ${jprt.my.linux.i586}-{product|fastdebug}-c1-jbb_ParOldGC
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
376
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
377 jprt.my.linux.x64.test.targets = \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
378 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jvm98, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
379 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jvm98_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
380 ${jprt.my.linux.x64}-{product|fastdebug}-c2-scimark, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
381 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
382 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
383 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
384 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
385 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
386 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
387 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
388 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
389 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
390 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
391 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
392 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
393 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
394 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
395 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jbb_default, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
396 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jbb_default_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
397 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jbb_ParallelGC, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
398 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jbb_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
399 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jbb_ParOldGC
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
400
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
401 jprt.my.windows.i586.test.targets = \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
402 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-jvm98, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
403 ${jprt.my.windows.i586}-{product|fastdebug}-c2-jvm98_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
404 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-scimark, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
405 ${jprt.my.windows.i586}-product-{c1|c2}-runThese, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
406 ${jprt.my.windows.i586}-product-{c1|c2}-runThese_Xcomp, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
407 ${jprt.my.windows.i586}-fastdebug-c1-runThese_Xshare, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
408 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
409 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
410 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
411 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
412 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
413 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
414 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
415 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
416 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
417 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
418 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
419 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
420 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
421 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
422 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-jbb_default, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
423 ${jprt.my.windows.i586}-{product|fastdebug}-c2-jbb_default_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
424 ${jprt.my.windows.i586}-product-{c1|c2}-jbb_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
425 ${jprt.my.windows.i586}-product-{c1|c2}-jbb_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
426 ${jprt.my.windows.i586}-product-{c1|c2}-jbb_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
427 ${jprt.my.windows.i586}-product-{c1|c2}-jbb_ParOldGC
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
428
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
429 jprt.my.windows.x64.test.targets = \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
430 ${jprt.my.windows.x64}-{product|fastdebug}-c2-jvm98, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
431 ${jprt.my.windows.x64}-{product|fastdebug}-c2-jvm98_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
432 ${jprt.my.windows.x64}-{product|fastdebug}-c2-scimark, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
433 ${jprt.my.windows.x64}-product-c2-runThese, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
434 ${jprt.my.windows.x64}-product-c2-runThese_Xcomp, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
435 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
436 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
437 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
438 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
439 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_CMS, \
2228
59e20a452a2a 7017008: G1: Turn on compressed oops by default.
johnc
parents: 2103
diff changeset
440 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_G1, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
441 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
442 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_default, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
443 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_SerialGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
444 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_ParallelGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
445 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_ParNewGC, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
446 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_CMS, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
447 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
448 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_ParOldGC, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
449 ${jprt.my.windows.x64}-{product|fastdebug}-c2-jbb_default, \
2087
352765ed11a1 7008466: Tiered: Enable testing of tiered compilation in JPRT
iveresov
parents: 1780
diff changeset
450 ${jprt.my.windows.x64}-{product|fastdebug}-c2-jbb_default_tiered, \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
451 ${jprt.my.windows.x64}-product-c2-jbb_CMS, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
452 ${jprt.my.windows.x64}-product-c2-jbb_ParallelGC, \
632
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
453 ${jprt.my.windows.x64}-product-c2-jbb_G1, \
ec1a6dc46005 6816433: Test G1 and ParOld in JPRT
iveresov
parents: 328
diff changeset
454 ${jprt.my.windows.x64}-product-c2-jbb_ParOldGC
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
455
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
456 # Testing for actual embedded builds is different to standard
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
457 jprt.my.linux.i586.test.targets.embedded = \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
458 linux_i586_2.6-product-c1-scimark
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
459
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
460 # The complete list of test targets for jprt
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
461 # Note: no PPC or ARM tests at this stage
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
462
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
463 jprt.test.targets.standard = \
159
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
464 ${jprt.my.solaris.sparc.test.targets}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
465 ${jprt.my.solaris.sparcv9.test.targets}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
466 ${jprt.my.solaris.i586.test.targets}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
467 ${jprt.my.solaris.x64.test.targets}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
468 ${jprt.my.linux.i586.test.targets}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
469 ${jprt.my.linux.x64.test.targets}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
470 ${jprt.my.windows.i586.test.targets}, \
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
471 ${jprt.my.windows.x64.test.targets}
af059c49e677 6703308: Fix jprt.properties to allow for jdk6 and jdk7 builds
ohair
parents: 91
diff changeset
472
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
473 jprt.test.targets.embedded= \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
474 ${jprt.my.linux.i586.test.targets.embedded}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
475 ${jprt.my.solaris.sparc.test.targets}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
476 ${jprt.my.solaris.sparcv9.test.targets}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
477 ${jprt.my.solaris.i586.test.targets}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
478 ${jprt.my.solaris.x64.test.targets}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
479 ${jprt.my.linux.x64.test.targets}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
480 ${jprt.my.windows.i586.test.targets}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
481 ${jprt.my.windows.x64.test.targets}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
482
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
483
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
484 jprt.test.targets.jdk7=${jprt.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
485 jprt.test.targets.jdk7temp=${jprt.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
486 jprt.test.targets.jdk7b105=${jprt.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
487 jprt.test.targets.jdk6=${jprt.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
488 jprt.test.targets.jdk6perf=${jprt.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
489 jprt.test.targets.jdk6u10=${jprt.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
490 jprt.test.targets.jdk6u14=${jprt.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
491 jprt.test.targets.jdk6u18=${jprt.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
492 jprt.test.targets.jdk6u20=${jprt.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
493 jprt.test.targets.ejdk6=${jprt.test.targets.embedded}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
494 jprt.test.targets.ejdk7=${jprt.test.targets.embedded}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
495 jprt.test.targets=${jprt.test.targets.${jprt.tools.default.release}}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
496
328
68e0443dfd9c 6745363: Add ability to run packtest to hotspot/test/makefile
ohair
parents: 196
diff changeset
497 # The default test/Makefile targets that should be run
68e0443dfd9c 6745363: Add ability to run packtest to hotspot/test/makefile
ohair
parents: 196
diff changeset
498
68e0443dfd9c 6745363: Add ability to run packtest to hotspot/test/makefile
ohair
parents: 196
diff changeset
499 #jprt.make.rule.test.targets=*-product-*-packtest
68e0443dfd9c 6745363: Add ability to run packtest to hotspot/test/makefile
ohair
parents: 196
diff changeset
500
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
501 jprt.make.rule.test.targets.standard.client = \
781
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
502 ${jprt.my.solaris.sparc}-*-c1-clienttest, \
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
503 ${jprt.my.solaris.i586}-*-c1-clienttest, \
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
504 ${jprt.my.linux.i586}-*-c1-clienttest, \
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
505 ${jprt.my.windows.i586}-*-c1-clienttest
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
506
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
507 jprt.make.rule.test.targets.standard.server = \
781
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
508 ${jprt.my.solaris.sparc}-*-c2-servertest, \
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
509 ${jprt.my.solaris.sparcv9}-*-c2-servertest, \
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
510 ${jprt.my.solaris.i586}-*-c2-servertest, \
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
511 ${jprt.my.solaris.x64}-*-c2-servertest, \
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
512 ${jprt.my.linux.i586}-*-c2-servertest, \
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
513 ${jprt.my.linux.x64}-*-c2-servertest, \
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
514 ${jprt.my.windows.i586}-*-c2-servertest, \
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
515 ${jprt.my.windows.x64}-*-c2-servertest
44ccd7a9065c 6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
ohair
parents: 744
diff changeset
516
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
517 jprt.make.rule.test.targets.standard = \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
518 ${jprt.make.rule.test.targets.standard.client}, \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
519 ${jprt.make.rule.test.targets.standard.server}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
520
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
521 jprt.make.rule.test.targets.embedded = \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
522 ${jprt.make.rule.test.targets.standard.client}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
523
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
524 jprt.make.rule.test.targets.jdk7=${jprt.make.rule.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
525 jprt.make.rule.test.targets.jdk7temp=${jprt.make.rule.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
526 jprt.make.rule.test.targets.jdk7b107=${jprt.make.rule.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
527 jprt.make.rule.test.targets.jdk6=${jprt.make.rule.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
528 jprt.make.rule.test.targets.jdk6perf=${jprt.make.rule.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
529 jprt.make.rule.test.targets.jdk6u10=${jprt.make.rule.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
530 jprt.make.rule.test.targets.jdk6u14=${jprt.make.rule.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
531 jprt.make.rule.test.targets.jdk6u18=${jprt.make.rule.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
532 jprt.make.rule.test.targets.jdk6u20=${jprt.make.rule.test.targets.standard}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
533 jprt.make.rule.test.targets.ejdk6=${jprt.make.rule.test.targets.embedded}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
534 jprt.make.rule.test.targets.ejdk7=${jprt.make.rule.test.targets.embedded}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
535 jprt.make.rule.test.targets=${jprt.make.rule.test.targets.${jprt.tools.default.release}}
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2103
diff changeset
536