make/jprt.properties

Thu, 12 Mar 2009 14:01:36 -0700

author
iveresov
date
Thu, 12 Mar 2009 14:01:36 -0700
changeset 1067
ec1a6dc46005
parent 763
68e0443dfd9c
child 1154
a61730a6fdbc
permissions
-rw-r--r--

6816433: Test G1 and ParOld in JPRT
Reviewed-by: jmasa, never, ysr

duke@435 1 #
xdono@631 2 # Copyright 2006-2008 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
duke@435 19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 # CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 # have any questions.
iveresov@1067 22 #
duke@435 23 #
duke@435 24
duke@435 25 # Properties for jprt
duke@435 26
iveresov@1067 27 # All build result bundles are full jdks, so the 64bit testing does not
ohair@594 28 # need the 32bit sibling bundle installed.
ohair@594 29 # Note: If the hotspot/make/Makefile changed to only bundle the 64bit files
ohair@594 30 # when bundling 64bit, and stripped out the 64bit files from any 32bit
ohair@594 31 # bundles, then this setting would be need to be "true".
duke@435 32
ohair@594 33 jprt.need.sibling.build=false
duke@435 34
ohair@594 35 # At submit time, the release supplied will be in jprt.submit.release
ohair@594 36 # and will be one of the official release names defined in jprt.
ohair@594 37 # jprt supports property value expansion using ${property.name} syntax.
kamg@526 38
ohair@594 39 # This tells jprt what default release we want to build
kamg@526 40
ohair@594 41 jprt.tools.default.release=${jprt.submit.release}
duke@435 42
ohair@594 43 # Define the Solaris platforms we want for the various releases
duke@435 44
ohair@594 45 jprt.my.solaris.sparc.jdk7=solaris_sparc_5.10
ohair@594 46 jprt.my.solaris.sparc.jdk6=solaris_sparc_5.8
ohair@594 47 jprt.my.solaris.sparc.jdk6perf=solaris_sparc_5.8
ohair@594 48 jprt.my.solaris.sparc.jdk6u10=solaris_sparc_5.8
ohair@594 49 jprt.my.solaris.sparc=${jprt.my.solaris.sparc.${jprt.tools.default.release}}
ohair@594 50
ohair@594 51 jprt.my.solaris.sparcv9.jdk7=solaris_sparcv9_5.10
ohair@594 52 jprt.my.solaris.sparcv9.jdk6=solaris_sparcv9_5.8
ohair@594 53 jprt.my.solaris.sparcv9.jdk6perf=solaris_sparcv9_5.8
ohair@594 54 jprt.my.solaris.sparcv9.jdk6u10=solaris_sparcv9_5.8
ohair@594 55 jprt.my.solaris.sparcv9=${jprt.my.solaris.sparcv9.${jprt.tools.default.release}}
ohair@594 56
ohair@594 57 jprt.my.solaris.i586.jdk7=solaris_i586_5.10
ohair@594 58 jprt.my.solaris.i586.jdk6=solaris_i586_5.8
ohair@594 59 jprt.my.solaris.i586.jdk6perf=solaris_i586_5.8
ohair@594 60 jprt.my.solaris.i586.jdk6u10=solaris_i586_5.8
ohair@594 61 jprt.my.solaris.i586=${jprt.my.solaris.i586.${jprt.tools.default.release}}
ohair@594 62
ohair@594 63 jprt.my.solaris.x64.jdk7=solaris_x64_5.10
ohair@594 64 jprt.my.solaris.x64.jdk6=solaris_x64_5.10
ohair@594 65 jprt.my.solaris.x64.jdk6perf=solaris_x64_5.10
ohair@594 66 jprt.my.solaris.x64.jdk6u10=solaris_x64_5.10
ohair@594 67 jprt.my.solaris.x64=${jprt.my.solaris.x64.${jprt.tools.default.release}}
ohair@594 68
ohair@594 69 jprt.my.linux.i586=linux_i586
ohair@594 70 jprt.my.linux.x64=linux_x64
ohair@594 71 jprt.my.windows.i586=windows_i586
ohair@594 72 jprt.my.windows.x64=windows_x64
ohair@594 73
ohair@594 74 # Standard list of jprt build targets for this source tree
ohair@594 75
ohair@594 76 jprt.build.targets= \
ohair@594 77 ${jprt.my.solaris.sparc}-{product|fastdebug|debug}, \
ohair@594 78 ${jprt.my.solaris.sparcv9}-{product|fastdebug|debug}, \
ohair@594 79 ${jprt.my.solaris.i586}-{product|fastdebug|debug}, \
ohair@594 80 ${jprt.my.solaris.x64}-{product|fastdebug|debug}, \
ohair@594 81 ${jprt.my.linux.i586}-{product|fastdebug|debug}, \
ohair@594 82 ${jprt.my.linux.x64}-{product|fastdebug}, \
ohair@594 83 ${jprt.my.windows.i586}-{product|fastdebug|debug}, \
ohair@594 84 ${jprt.my.windows.x64}-{product|fastdebug|debug}
ohair@594 85
ohair@594 86 # Subset lists of test targets for this source tree
ohair@594 87
ohair@594 88 jprt.my.solaris.sparc.test.targets= \
ohair@594 89 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jvm98, \
ohair@594 90 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-scimark, \
ohair@594 91 ${jprt.my.solaris.sparc}-product-{c1|c2}-runThese, \
ohair@594 92 ${jprt.my.solaris.sparc}-fastdebug-c1-runThese_Xshare, \
ohair@594 93 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_default, \
ohair@594 94 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
ohair@594 95 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
ohair@594 96 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \
ohair@594 97 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
iveresov@1067 98 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
iveresov@1067 99 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
ohair@594 100 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_default, \
ohair@594 101 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_SerialGC, \
ohair@594 102 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_ParallelGC, \
ohair@594 103 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_ParNewGC, \
ohair@594 104 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_CMS, \
iveresov@1067 105 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_G1, \
iveresov@1067 106 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-GCOld_ParOldGC, \
ohair@594 107 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_default, \
ohair@594 108 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_SerialGC, \
ohair@594 109 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_ParallelGC, \
ohair@594 110 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_CMS, \
iveresov@1067 111 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_G1, \
iveresov@1067 112 ${jprt.my.solaris.sparc}-{product|fastdebug}-{c1|c2}-jbb_ParOldGC
ohair@594 113
ohair@594 114 jprt.my.solaris.sparcv9.test.targets= \
ohair@594 115 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jvm98, \
ohair@594 116 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-scimark, \
ohair@594 117 ${jprt.my.solaris.sparcv9}-product-c2-runThese, \
ohair@594 118 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_default, \
ohair@594 119 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_SerialGC, \
ohair@594 120 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_ParallelGC, \
ohair@594 121 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_ParNewGC, \
ohair@594 122 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_CMS, \
iveresov@1067 123 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_G1, \
iveresov@1067 124 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCBasher_ParOldGC, \
ohair@594 125 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_default, \
ohair@594 126 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_SerialGC, \
ohair@594 127 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_ParallelGC, \
ohair@594 128 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_ParNewGC, \
ohair@594 129 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_CMS, \
iveresov@1067 130 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_G1, \
iveresov@1067 131 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-GCOld_ParOldGC, \
ohair@594 132 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_default, \
ohair@594 133 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_SerialGC, \
ohair@594 134 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_ParallelGC, \
ohair@594 135 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_CMS, \
iveresov@1067 136 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_G1, \
iveresov@1067 137 ${jprt.my.solaris.sparcv9}-{product|fastdebug}-c2-jbb_ParOldGC
ohair@594 138
ohair@594 139 jprt.my.solaris.x64.test.targets= \
ohair@594 140 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-jvm98, \
ohair@594 141 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-scimark, \
ohair@594 142 ${jprt.my.solaris.x64}-product-c2-runThese, \
ohair@594 143 ${jprt.my.solaris.x64}-product-c2-runThese_Xcomp, \
ohair@594 144 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_default, \
ohair@594 145 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_SerialGC, \
ohair@594 146 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_ParallelGC, \
ohair@594 147 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_ParNewGC, \
ohair@594 148 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_CMS, \
iveresov@1067 149 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_G1, \
iveresov@1067 150 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCBasher_ParOldGC, \
ohair@594 151 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_default, \
ohair@594 152 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_SerialGC, \
ohair@594 153 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_ParallelGC, \
ohair@594 154 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_ParNewGC, \
ohair@594 155 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_CMS, \
iveresov@1067 156 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_G1, \
iveresov@1067 157 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_ParOldGC, \
ohair@594 158 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-jbb_default, \
ohair@594 159 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-jbb_SerialGC, \
ohair@594 160 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-jbb_ParallelGC, \
iveresov@1067 161 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_CMS, \
iveresov@1067 162 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_G1, \
iveresov@1067 163 ${jprt.my.solaris.x64}-{product|fastdebug}-c2-GCOld_ParOldGC
ohair@594 164
ohair@594 165 jprt.my.solaris.i586.test.targets= \
ohair@594 166 ${jprt.my.solaris.i586}-{product|fastdebug}-{c1|c2}-jvm98, \
ohair@594 167 ${jprt.my.solaris.i586}-{product|fastdebug}-{c1|c2}-scimark, \
ohair@594 168 ${jprt.my.solaris.i586}-product-{c1|c2}-runThese_Xcomp, \
iveresov@1067 169 ${jprt.my.solaris.i586}-fastdebug-c1-runThese_Xcomp, \
ohair@594 170 ${jprt.my.solaris.i586}-fastdebug-c1-runThese_Xshare, \
ohair@594 171 ${jprt.my.solaris.i586}-product-c1-GCBasher_default, \
ohair@594 172 ${jprt.my.solaris.i586}-product-c1-GCBasher_SerialGC, \
ohair@594 173 ${jprt.my.solaris.i586}-product-c1-GCBasher_ParallelGC, \
ohair@594 174 ${jprt.my.solaris.i586}-product-c1-GCBasher_ParNewGC, \
ohair@594 175 ${jprt.my.solaris.i586}-product-c1-GCBasher_CMS, \
iveresov@1067 176 ${jprt.my.solaris.i586}-product-c1-GCBasher_G1, \
iveresov@1067 177 ${jprt.my.solaris.i586}-product-c1-GCBasher_ParOldGC, \
ohair@594 178 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_default, \
ohair@594 179 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_SerialGC, \
ohair@594 180 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_ParallelGC, \
ohair@594 181 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_ParNewGC, \
ohair@594 182 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_CMS, \
iveresov@1067 183 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_G1, \
iveresov@1067 184 ${jprt.my.solaris.i586}-fastdebug-c2-GCBasher_ParOldGC, \
ohair@594 185 ${jprt.my.solaris.i586}-product-c1-GCOld_default, \
ohair@594 186 ${jprt.my.solaris.i586}-product-c1-GCOld_SerialGC, \
ohair@594 187 ${jprt.my.solaris.i586}-product-c1-GCOld_ParallelGC, \
ohair@594 188 ${jprt.my.solaris.i586}-product-c1-GCOld_ParNewGC, \
ohair@594 189 ${jprt.my.solaris.i586}-product-c1-GCOld_CMS, \
iveresov@1067 190 ${jprt.my.solaris.i586}-product-c1-GCOld_G1, \
iveresov@1067 191 ${jprt.my.solaris.i586}-product-c1-GCOld_ParOldGC, \
ohair@594 192 ${jprt.my.solaris.i586}-fastdebug-c2-jbb_default, \
ohair@594 193 ${jprt.my.solaris.i586}-fastdebug-c2-jbb_ParallelGC, \
ohair@594 194 ${jprt.my.solaris.i586}-fastdebug-c2-jbb_CMS, \
iveresov@1067 195 ${jprt.my.solaris.i586}-fastdebug-c2-jbb_G1, \
iveresov@1067 196 ${jprt.my.solaris.i586}-fastdebug-c2-jbb_ParOldGC
ohair@594 197
ohair@594 198 jprt.my.linux.i586.test.targets = \
ohair@594 199 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-jvm98, \
ohair@594 200 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-scimark, \
ohair@594 201 ${jprt.my.linux.i586}-product-c1-runThese_Xcomp, \
ohair@594 202 ${jprt.my.linux.i586}-fastdebug-c1-runThese_Xshare, \
ohair@594 203 ${jprt.my.linux.i586}-fastdebug-c2-runThese_Xcomp, \
ohair@594 204 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_default, \
ohair@594 205 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
ohair@594 206 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
ohair@594 207 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \
ohair@594 208 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
iveresov@1067 209 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
iveresov@1067 210 ${jprt.my.linux.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
ohair@594 211 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_default, \
ohair@594 212 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_SerialGC, \
ohair@594 213 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_ParallelGC, \
ohair@594 214 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_ParNewGC, \
ohair@594 215 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_CMS, \
iveresov@1067 216 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_G1, \
iveresov@1067 217 ${jprt.my.linux.i586}-product-{c1|c2}-GCOld_ParOldGC, \
ohair@594 218 ${jprt.my.linux.i586}-{product|fastdebug}-c1-jbb_default, \
ohair@594 219 ${jprt.my.linux.i586}-{product|fastdebug}-c1-jbb_ParallelGC, \
ohair@594 220 ${jprt.my.linux.i586}-{product|fastdebug}-c1-jbb_CMS, \
iveresov@1067 221 ${jprt.my.linux.i586}-{product|fastdebug}-c1-jbb_G1, \
iveresov@1067 222 ${jprt.my.linux.i586}-{product|fastdebug}-c1-jbb_ParOldGC
ohair@594 223
ohair@594 224 jprt.my.linux.x64.test.targets = \
ohair@594 225 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jvm98, \
ohair@594 226 ${jprt.my.linux.x64}-{product|fastdebug}-c2-scimark, \
ohair@594 227 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_default, \
ohair@594 228 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_SerialGC, \
ohair@594 229 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_ParallelGC, \
ohair@594 230 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_ParNewGC, \
ohair@594 231 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_CMS, \
iveresov@1067 232 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_G1, \
iveresov@1067 233 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCBasher_ParOldGC, \
ohair@594 234 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_default, \
ohair@594 235 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_SerialGC, \
ohair@594 236 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_ParallelGC, \
ohair@594 237 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_ParNewGC, \
ohair@594 238 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_CMS, \
iveresov@1067 239 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_G1, \
iveresov@1067 240 ${jprt.my.linux.x64}-{product|fastdebug}-c2-GCOld_ParOldGC, \
ohair@594 241 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jbb_default, \
ohair@594 242 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jbb_ParallelGC, \
iveresov@1067 243 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jbb_G1, \
iveresov@1067 244 ${jprt.my.linux.x64}-{product|fastdebug}-c2-jbb_ParOldGC
ohair@594 245
ohair@594 246 jprt.my.windows.i586.test.targets = \
ohair@594 247 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-jvm98, \
ohair@594 248 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-scimark, \
ohair@594 249 ${jprt.my.windows.i586}-product-{c1|c2}-runThese, \
ohair@594 250 ${jprt.my.windows.i586}-product-{c1|c2}-runThese_Xcomp, \
ohair@594 251 ${jprt.my.windows.i586}-fastdebug-c1-runThese_Xshare, \
ohair@594 252 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_default, \
ohair@594 253 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
ohair@594 254 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
ohair@594 255 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \
ohair@594 256 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
iveresov@1067 257 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
iveresov@1067 258 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
ohair@594 259 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_default, \
ohair@594 260 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_SerialGC, \
ohair@594 261 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_ParallelGC, \
ohair@594 262 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_ParNewGC, \
ohair@594 263 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_CMS, \
iveresov@1067 264 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_G1, \
iveresov@1067 265 ${jprt.my.windows.i586}-product-{c1|c2}-GCOld_ParOldGC, \
ohair@594 266 ${jprt.my.windows.i586}-{product|fastdebug}-{c1|c2}-jbb_default, \
ohair@594 267 ${jprt.my.windows.i586}-product-{c1|c2}-jbb_ParallelGC, \
ohair@594 268 ${jprt.my.windows.i586}-product-{c1|c2}-jbb_CMS, \
iveresov@1067 269 ${jprt.my.windows.i586}-product-{c1|c2}-jbb_G1, \
iveresov@1067 270 ${jprt.my.windows.i586}-product-{c1|c2}-jbb_ParOldGC
ohair@594 271
ohair@594 272 jprt.my.windows.x64.test.targets = \
ohair@594 273 ${jprt.my.windows.x64}-{product|fastdebug}-c2-jvm98, \
ohair@594 274 ${jprt.my.windows.x64}-{product|fastdebug}-c2-scimark, \
ohair@594 275 ${jprt.my.windows.x64}-product-c2-runThese, \
ohair@594 276 ${jprt.my.windows.x64}-product-c2-runThese_Xcomp, \
ohair@594 277 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_default, \
ohair@594 278 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_SerialGC, \
ohair@594 279 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_ParallelGC, \
ohair@594 280 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_ParNewGC, \
ohair@594 281 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_CMS, \
iveresov@1067 282 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_G1, \
iveresov@1067 283 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCBasher_ParOldGC, \
ohair@594 284 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_default, \
ohair@594 285 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_SerialGC, \
ohair@594 286 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_ParallelGC, \
ohair@594 287 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_ParNewGC, \
ohair@594 288 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_CMS, \
iveresov@1067 289 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_G1, \
iveresov@1067 290 ${jprt.my.windows.x64}-{product|fastdebug}-c2-GCOld_ParOldGC, \
ohair@594 291 ${jprt.my.windows.x64}-{product|fastdebug}-c2-jbb_default, \
ohair@594 292 ${jprt.my.windows.x64}-product-c2-jbb_CMS, \
ohair@594 293 ${jprt.my.windows.x64}-product-c2-jbb_ParallelGC, \
iveresov@1067 294 ${jprt.my.windows.x64}-product-c2-jbb_G1, \
iveresov@1067 295 ${jprt.my.windows.x64}-product-c2-jbb_ParOldGC
ohair@594 296
ohair@594 297 # The complete list of test targets for jprt
ohair@594 298
ohair@594 299 jprt.test.targets = \
ohair@594 300 ${jprt.my.solaris.sparc.test.targets}, \
ohair@594 301 ${jprt.my.solaris.sparcv9.test.targets}, \
ohair@594 302 ${jprt.my.solaris.i586.test.targets}, \
ohair@594 303 ${jprt.my.solaris.x64.test.targets}, \
ohair@594 304 ${jprt.my.linux.i586.test.targets}, \
ohair@594 305 ${jprt.my.linux.x64.test.targets}, \
ohair@594 306 ${jprt.my.windows.i586.test.targets}, \
ohair@594 307 ${jprt.my.windows.x64.test.targets}
ohair@594 308
ohair@763 309 # The default test/Makefile targets that should be run
ohair@763 310
ohair@763 311 # Example:
ohair@763 312 # jprt.make.rule.test.targets=*-*-*-packtest
ohair@763 313 #jprt.make.rule.test.targets=*-product-*-packtest
ohair@763 314

mercurial