ohair@1821
|
1 ###########################################################################
|
ohair@1821
|
2 #
|
sla@5086
|
3 # Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
|
ohair@1821
|
4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
ohair@1821
|
5 #
|
ohair@1821
|
6 # This code is free software; you can redistribute it and/or modify it
|
ohair@1821
|
7 # under the terms of the GNU General Public License version 2 only, as
|
ohair@2362
|
8 # published by the Free Software Foundation. Oracle designates this
|
ohair@1821
|
9 # particular file as subject to the "Classpath" exception as provided
|
ohair@2362
|
10 # by Oracle in the LICENSE file that accompanied this code.
|
ohair@1821
|
11 #
|
ohair@1821
|
12 # This code is distributed in the hope that it will be useful, but WITHOUT
|
ohair@1821
|
13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
ohair@1821
|
14 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
ohair@1821
|
15 # version 2 for more details (a copy is included in the LICENSE file that
|
ohair@1821
|
16 # accompanied this code).
|
ohair@1821
|
17 #
|
ohair@1821
|
18 # You should have received a copy of the GNU General Public License version
|
ohair@1821
|
19 # 2 along with this work; if not, write to the Free Software Foundation,
|
ohair@1821
|
20 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
ohair@1821
|
21 #
|
ohair@2362
|
22 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
ohair@2362
|
23 # or visit www.oracle.com if you need additional information or have any
|
ohair@2362
|
24 # questions.
|
ohair@1821
|
25 #
|
ohair@1821
|
26 ###########################################################################
|
ohair@1821
|
27 #
|
ohair@1821
|
28 # List of tests that should not be run by test/Makefile, for various reasons:
|
ohair@1821
|
29 # 1. Does not run with jtreg -samevm mode
|
ohair@1821
|
30 # 2. Causes problems in jtreg -samevm mode for jtreg or tests that follow it
|
ohair@1821
|
31 # 3. The test is too slow or consumes too many system resources
|
ohair@1821
|
32 # 4. The test fails when run on any official build systems
|
ohair@1821
|
33 #
|
ohair@1821
|
34 # It is possible that a test being on this list is a mistake, and that some
|
ohair@1821
|
35 # other test in samevm mode caused tests to fail, mistakes happen.
|
ohair@1821
|
36 #
|
ohair@1821
|
37 # Tests marked @ignore are not run by test/Makefile, but harmless to be listed.
|
ohair@1821
|
38 #
|
ohair@1821
|
39 # Tests that explicitly state "@run main/othervm ...", and are not listed here,
|
ohair@1821
|
40 # will be run in the same batch as the samevm tests.
|
ohair@1821
|
41 #
|
ohair@1821
|
42 # Shell tests are othervm by default.
|
ohair@1821
|
43 #
|
mduigou@3589
|
44 # List items are testnames followed by labels, all MUST BE commented
|
ohair@1821
|
45 # as to why they are here and use a label:
|
michaelm@4598
|
46 # generic-all Problems on all platforms
|
michaelm@4598
|
47 # generic-ARCH Where ARCH is one of: sparc, sparcv9, x64, i586, etc.
|
michaelm@4598
|
48 # OSNAME-all Where OSNAME is one of: solaris, linux, windows
|
michaelm@4598
|
49 # OSNAME-ARCH Specific on to one OSNAME and ARCH, e.g. solaris-x64
|
michaelm@4598
|
50 # OSNAME-REV Specific on to one OSNAME and REV, e.g. solaris-5.8
|
mduigou@3589
|
51 #
|
ohair@1821
|
52 # More than one label is allowed but must be on the same line.
|
ohair@1821
|
53 #
|
ohair@1821
|
54 #############################################################################
|
ohair@1821
|
55 #
|
ohair@1821
|
56 # Running the tests:
|
ohair@1821
|
57 # cd test && make JT_HOME=jtreg_home PRODUCT_HOME=jdk_home jdk_all
|
ohair@1821
|
58 # Or instead of jdk_all, use any of the jdk_* targets.
|
ohair@1821
|
59 #
|
ohair@1821
|
60 # Samevm Notes:
|
ohair@1821
|
61 # * Although some tests may have only been seen to fail on some platforms,
|
ohair@1821
|
62 # they might be flagged as 'generic-all' because the problem they have
|
ohair@1821
|
63 # could cause hidden slowdowns on other platforms.
|
ohair@1821
|
64 # Most samevm problems will be generic-all, but windows usually dislikes
|
ohair@1821
|
65 # them the most.
|
ohair@1821
|
66 # Address already in use or connection errors indicate a generic port issue.
|
ohair@1821
|
67 # (this is not necessarily a samevm issue, but an issue for running the tests
|
ohair@1821
|
68 # on shared machines, two people or two test runs will collide).
|
ohair@1821
|
69 # * Samevm problem (windows in particular) is not closing all input/output
|
ohair@1821
|
70 # * Samevm problem when a test calls setSecurityManager()
|
ohair@1821
|
71 # * Samevm problem with setHttps*() is used? (not exactly sure here)
|
ohair@1821
|
72 # * Samevm problem when stuffing system properties with non Strings or anything
|
ohair@1821
|
73 # * Samevm problem when changing vm settings, or registering any vm actions
|
ohair@1821
|
74 # * Samevm problems with deleteOnExit(), if it must happen at end of test
|
ohair@1821
|
75 # * Samevm problems with URLClassLoader? (no details here)
|
ohair@1821
|
76 # * Samevm problems with dependence on predictable GC or finalizations
|
ohair@1821
|
77 #
|
ohair@1821
|
78 # Any of the above problems may mean the test needs to be flagged as "othervm".
|
ohair@1821
|
79 #
|
ohair@1821
|
80 #############################################################################
|
ohair@1821
|
81 #
|
ohair@1821
|
82 # Fixing the tests:
|
ohair@1821
|
83 #
|
ohair@1821
|
84 # Some tests just may need to be run with "othervm", and that can easily be
|
ohair@1821
|
85 # done my adding a @run line (or modifying any existing @run):
|
ohair@1821
|
86 # @run main/othervm NameOfMainClass
|
ohair@1821
|
87 # Make sure this @run follows any use of @library.
|
ohair@1821
|
88 # Otherwise, if the test is a samevm possibility, make sure the test is
|
ohair@1821
|
89 # cleaning up after itself, closing all streams, deleting temp files, etc.
|
ohair@1821
|
90 #
|
ohair@1821
|
91 # Keep in mind that the bug could be in many places, and even different per
|
ohair@1821
|
92 # platform, it could be a bug in any one of:
|
ohair@1821
|
93 # - the testcase
|
ohair@1821
|
94 # - the jdk (jdk classes, native code, or hotspot)
|
ohair@1821
|
95 # - the native compiler
|
ohair@1821
|
96 # - the javac compiler
|
ohair@1821
|
97 # - the OS (depends on what the testcase does)
|
ohair@1821
|
98 #
|
ohair@1821
|
99 # If you managed to really fix one of these tests, here is how you can
|
ohair@1821
|
100 # remove tests from this list:
|
ohair@1821
|
101 # 1. Make sure test passes on all platforms with samevm, or mark it othervm
|
ohair@1821
|
102 # 2. Make sure test passes on all platforms when run with it's entire group
|
ohair@1821
|
103 # 3. Make sure both VMs are tested, -server and -client, if possible
|
ohair@1821
|
104 # 4. Make sure you try the -d64 option on Solaris
|
ohair@1821
|
105 # 5. Use a tool like JPRT or something to verify these results
|
ohair@1821
|
106 # 6. Delete lines in this file, include the changes with your test changes
|
ohair@1821
|
107 #
|
ohair@1821
|
108 # You may need to repeat your testing 2 or even 3 times to verify good
|
ohair@1821
|
109 # results, some of these samevm failures are not very predictable.
|
ohair@1821
|
110 #
|
ohair@1821
|
111 #############################################################################
|
ohair@1821
|
112
|
ohair@1821
|
113 ############################################################################
|
ohair@1821
|
114
|
ohair@1821
|
115 # jdk_awt
|
ohair@1821
|
116
|
ohair@1821
|
117 ############################################################################
|
ohair@1821
|
118
|
ohair@1821
|
119 # jdk_beans
|
ohair@1821
|
120
|
ohair@1821
|
121 ############################################################################
|
ohair@1821
|
122
|
ohair@1821
|
123 # jdk_lang
|
ohair@1821
|
124
|
dcubed@5762
|
125 # 7194607
|
dcubed@5762
|
126 java/lang/instrument/VerifyLocalVariableTableOnRetransformTest.sh generic-all
|
dcubed@5762
|
127
|
alanb@4504
|
128 # 6944188
|
michaelm@4598
|
129 java/lang/management/ThreadMXBean/ThreadStateTest.java generic-all
|
alanb@4504
|
130
|
smarks@4482
|
131 # 7067973
|
smarks@4482
|
132 java/lang/management/MemoryMXBean/CollectionUsageThreshold.java generic-all
|
smarks@4482
|
133
|
alanb@5087
|
134 # 7148492
|
alanb@5087
|
135 java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java generic-all
|
alanb@5087
|
136
|
jcoomes@5883
|
137 # 7196801
|
jcoomes@5883
|
138 java/lang/management/MemoryMXBean/LowMemoryTest2.sh generic-all
|
jcoomes@5883
|
139
|
jcoomes@5884
|
140 # Exclude until the fix for 7195557 propagates widely.
|
jcoomes@5884
|
141 java/lang/management/MemoryMXBean/CollectionUsageThresholdParallelGC.sh generic-all
|
jcoomes@5884
|
142 java/lang/management/MemoryMXBean/CollectionUsageThresholdSerialGC.sh generic-all
|
jcoomes@5884
|
143 java/lang/management/MemoryMXBean/MemoryTest.java generic-all
|
jcoomes@5884
|
144 java/lang/management/MemoryMXBean/MemoryTestAllGC.sh generic-all
|
jcoomes@5884
|
145
|
alanb@4928
|
146 ############################################################################
|
alanb@4928
|
147
|
alanb@4928
|
148 # jdk_management
|
alanb@4928
|
149
|
alanb@5964
|
150 ############################################################################
|
alanb@5964
|
151
|
alanb@5964
|
152 # jdk_jmx
|
alanb@5964
|
153
|
alanb@5060
|
154 # 6959636
|
alanb@5060
|
155 javax/management/loading/LibraryLoader/LibraryLoaderTest.java windows-all
|
alanb@5060
|
156
|
alanb@5060
|
157 # 7144846
|
alanb@5060
|
158 javax/management/remote/mandatory/connection/ReconnectTest.java generic-all
|
alanb@5060
|
159
|
sla@5866
|
160 # 7120365
|
sla@5866
|
161 javax/management/remote/mandatory/notif/DiffHBTest.java generic-all
|
sla@5866
|
162
|
ohair@1821
|
163 ############################################################################
|
ohair@1821
|
164
|
ohair@1821
|
165 # jdk_math
|
ohair@1821
|
166
|
ohair@1821
|
167 ############################################################################
|
ohair@1821
|
168
|
alanb@5964
|
169 # jdk_other
|
ohair@1821
|
170
|
alanb@4928
|
171 # 6988950
|
alanb@4928
|
172 demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java generic-all
|
alanb@4928
|
173
|
michaelm@5289
|
174 # 7162111
|
michaelm@5289
|
175 demo/jvmti/mtrace/TraceJFrame.java macosx-all
|
michaelm@5289
|
176 javax/script/CauseExceptionTest.java macosx-all
|
michaelm@5289
|
177 javax/script/GetInterfaceTest.java macosx-all
|
michaelm@5289
|
178 javax/script/JavaScriptScopeTest.java macosx-all
|
michaelm@5289
|
179 javax/script/NullUndefinedVarTest.java macosx-all
|
michaelm@5289
|
180 javax/script/PluggableContextTest.java macosx-all
|
michaelm@5289
|
181 javax/script/ProviderTest.sh macosx-all
|
michaelm@5289
|
182 javax/script/RhinoExceptionTest.java macosx-all
|
michaelm@5289
|
183 javax/script/StringWriterPrintTest.java macosx-all
|
michaelm@5289
|
184 javax/script/Test1.java macosx-all
|
michaelm@5289
|
185 javax/script/Test2.java macosx-all
|
michaelm@5289
|
186 javax/script/Test3.java macosx-all
|
michaelm@5289
|
187 javax/script/Test4.java macosx-all
|
michaelm@5289
|
188 javax/script/Test5.java macosx-all
|
michaelm@5289
|
189 javax/script/Test6.java macosx-all
|
michaelm@5289
|
190 javax/script/Test7.java macosx-all
|
michaelm@5289
|
191 javax/script/Test8.java macosx-all
|
michaelm@5289
|
192 javax/script/UnescapedBracketRegExTest.java macosx-all
|
michaelm@5289
|
193 javax/script/VersionTest.java macosx-all
|
ohair@1821
|
194 ############################################################################
|
ohair@1821
|
195
|
ohair@1821
|
196 # jdk_net
|
ohair@1821
|
197
|
alanb@4425
|
198 # Filed 7052625
|
michaelm@4598
|
199 com/sun/net/httpserver/bugs/6725892/Test.java generic-all
|
alanb@4425
|
200
|
alanb@4425
|
201 # Filed 7036666
|
michaelm@4598
|
202 com/sun/net/httpserver/Test9a.java generic-all
|
alanb@4425
|
203
|
weijun@4488
|
204 # 7079145 java/net/ipv6tests/UdpTest.java hang at IPv6 only data exchange
|
weijun@4488
|
205 java/net/ipv6tests/UdpTest.java linux-all
|
weijun@4488
|
206
|
michaelm@4654
|
207 # 7102670
|
michaelm@4654
|
208 java/net/InetAddress/CheckJNI.java linux-all
|
michaelm@4654
|
209
|
michaelm@4654
|
210 # failing on vista 32/64 on nightly
|
michaelm@4654
|
211 # 7102702
|
michaelm@4654
|
212 java/net/PortUnreachableException/OneExceptionOnly.java windows-all
|
alanb@5060
|
213
|
alanb@5087
|
214 # 7148829
|
alanb@5087
|
215 sun/net/InetAddress/nameservice/simple/CacheTest.java generic-all
|
alanb@5087
|
216 sun/net/InetAddress/nameservice/simple/DefaultCaching.java generic-all
|
alanb@5087
|
217
|
michaelm@5116
|
218 # 7122846
|
michaelm@5116
|
219 java/net/MulticastSocket/NoLoopbackPackets.java macosx-all
|
michaelm@5116
|
220 java/net/MulticastSocket/SetLoopbackMode.java macosx-all
|
michaelm@5116
|
221
|
michaelm@5116
|
222 # 7145658
|
michaelm@5116
|
223 java/net/MulticastSocket/Test.java macosx-all
|
michaelm@5116
|
224
|
michaelm@5116
|
225 #7143960
|
michaelm@5116
|
226 java/net/DatagramSocket/SendDatagramToBadAddress.java macosx-all
|
michaelm@5116
|
227
|
michaelm@5116
|
228 # 7150552
|
michaelm@5116
|
229 sun/net/www/protocol/http/B6299712.java macosx-all
|
michaelm@5116
|
230 java/net/CookieHandler/CookieManagerTest.java macosx-all
|
michaelm@5116
|
231
|
ohair@1821
|
232 ############################################################################
|
ohair@1821
|
233
|
alanb@2546
|
234 # jdk_io
|
alanb@2546
|
235
|
alanb@5751
|
236 # 7162111 - these tests need to be updated to run headless
|
michaelm@5116
|
237 java/io/Serializable/resolveClass/deserializeButton/run.sh macosx-all
|
alanb@5751
|
238 java/io/Serializable/serialver/classpath/run.sh macosx-all
|
alanb@5751
|
239 java/io/Serializable/serialver/nested/run.sh macosx-all
|
michaelm@5116
|
240
|
alanb@2546
|
241 ############################################################################
|
alanb@2546
|
242
|
ohair@1821
|
243 # jdk_nio
|
ohair@1821
|
244
|
alanb@2546
|
245 # 6963118
|
alanb@2546
|
246 java/nio/channels/Selector/Wakeup.java windows-all
|
ohair@2203
|
247
|
alanb@4820
|
248 # 7052549
|
alanb@4820
|
249 java/nio/channels/FileChannel/ReleaseOnCloseDeadlock.java windows-all
|
alanb@4504
|
250
|
michaelm@5116
|
251 # 7133499, 7133497
|
michaelm@5116
|
252 java/nio/channels/AsyncCloseAndInterrupt.java macosx-all
|
michaelm@5116
|
253 java/nio/channels/AsynchronousFileChannel/Lock.java macosx-all
|
michaelm@5116
|
254 java/nio/channels/FileChannel/Transfer.java macosx-all
|
michaelm@5116
|
255
|
michaelm@5116
|
256 # 7141822
|
michaelm@5116
|
257 java/nio/channels/DatagramChannel/ChangingAddress.java macosx-all
|
michaelm@5116
|
258
|
michaelm@5116
|
259 # 7132677
|
michaelm@5116
|
260 java/nio/channels/Selector/OutOfBand.java macosx-all
|
michaelm@5116
|
261
|
ohair@1821
|
262 ############################################################################
|
ohair@1821
|
263
|
ohair@1821
|
264 # jdk_rmi
|
ohair@1821
|
265
|
alanb@5087
|
266 # 7146541
|
alanb@5087
|
267 java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
|
alanb@5087
|
268
|
smarks@5801
|
269 # 7187882
|
smarks@5801
|
270 java/rmi/activation/checkusage/CheckUsage.java generic-all
|
smarks@5801
|
271
|
smarks@5801
|
272 # 7190106
|
smarks@5801
|
273 java/rmi/reliability/benchmark/runRmiBench.sh generic-all
|
smarks@5801
|
274
|
smarks@5801
|
275 # 7191877
|
smarks@5801
|
276 java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all
|
smarks@5801
|
277
|
smarks@5801
|
278 # 7195095
|
smarks@5801
|
279 sun/rmi/transport/proxy/EagerHttpFallback.java linux-all
|
smarks@5801
|
280
|
ohair@1821
|
281 ############################################################################
|
ohair@1821
|
282
|
ohair@1821
|
283 # jdk_security
|
ohair@1821
|
284
|
weijun@5865
|
285 # 7164518: no PortUnreachableException on Mac
|
weijun@5865
|
286 sun/security/krb5/auto/Unreachable.java macosx-all
|
weijun@5865
|
287
|
alanb@5751
|
288 # 7193792
|
alanb@5751
|
289 sun/security/pkcs11/ec/TestECDSA.java solaris-all
|
alanb@5751
|
290 sun/security/pkcs11/ec/TestECDSA.java linux-all
|
alanb@5751
|
291
|
alanb@5751
|
292 # 7193793
|
alanb@5751
|
293 sun/security/pkcs11/ec/TestECDH.java linux-all
|
alanb@5751
|
294
|
weijun@5870
|
295 # 7198198: the test also fails on SuSE Linux
|
weijun@5870
|
296 sun/security/pkcs11/ec/ReadCertificates.java linux-all
|
weijun@5870
|
297
|
alanb@5060
|
298 # 7147060
|
alanb@5060
|
299 com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
|
alanb@5060
|
300
|
weijun@5870
|
301 # 6988842: 4 tests failing on Solaris 5.10
|
weijun@5870
|
302 sun/security/pkcs11/Secmod/AddPrivateKey.java solaris-all
|
weijun@5870
|
303 sun/security/pkcs11/ec/ReadCertificates.java solaris-all
|
weijun@5870
|
304 sun/security/pkcs11/ec/ReadPKCS12.java solaris-all
|
weijun@5870
|
305 sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java solaris-all
|
weijun@4488
|
306
|
weijun@4551
|
307 # 7041639, Solaris DSA keypair generation bug (Note: jdk_util also affected)
|
weijun@4551
|
308 java/security/KeyPairGenerator/SolarisShortDSA.java solaris-all
|
weijun@4551
|
309 sun/security/tools/jarsigner/onlymanifest.sh solaris-all
|
weijun@4551
|
310 sun/security/tools/jarsigner/ts.sh solaris-all
|
weijun@4551
|
311 sun/security/tools/keytool/emptysubject.sh solaris-all
|
weijun@4551
|
312 sun/security/tools/keytool/importreadall.sh solaris-all
|
weijun@4551
|
313 sun/security/tools/keytool/readjar.sh solaris-all
|
weijun@4551
|
314 sun/security/tools/keytool/selfissued.sh solaris-all
|
weijun@4551
|
315 sun/security/tools/keytool/standard.sh solaris-all
|
weijun@4551
|
316
|
weijun@5994
|
317 # 8000439: NPG: REGRESSION : sun/security/krb5/auto/MaxRetries.java fails with timeout
|
weijun@5994
|
318 sun/security/krb5/auto/MaxRetries.java solaris-sparcv9
|
weijun@5994
|
319
|
ohair@1821
|
320 ############################################################################
|
ohair@1821
|
321
|
alanb@5060
|
322 # jdk_sound
|
ohair@1821
|
323
|
alanb@5060
|
324 ############################################################################
|
alanb@5060
|
325
|
alanb@5060
|
326 # jdk_swing
|
ohair@1821
|
327
|
ohair@1821
|
328 ############################################################################
|
ohair@1821
|
329
|
ohair@1821
|
330 # jdk_text
|
ohair@1821
|
331
|
naoto@5874
|
332 # 7196199
|
naoto@5874
|
333 java/text/Bidi/Bug6665028.java generic-all
|
alanb@5964
|
334
|
ohair@1821
|
335 ############################################################################
|
ohair@1821
|
336
|
ohair@1821
|
337 # jdk_tools
|
ohair@1821
|
338
|
alanb@5029
|
339 # 6461635
|
alanb@5029
|
340 com/sun/tools/attach/BasicTests.sh generic-all
|
alanb@5029
|
341
|
alanb@5964
|
342 # 7172176
|
alanb@5964
|
343 sun/tools/jconsole/ResourceCheckTest.sh generic-all
|
alanb@5964
|
344 sun/tools/jconsole/ImmutableResourceTest.sh generic-all
|
alanb@5964
|
345
|
alanb@5964
|
346 # 7132203
|
alanb@5964
|
347 sun/jvmstat/monitor/MonitoredVm/CR6672135.java generic-all
|
alanb@5964
|
348
|
alanb@5964
|
349 # Tests take too long, see 7143279
|
alanb@5964
|
350 tools/pack200/CommandLineTests.java generic-all
|
alanb@5964
|
351 tools/pack200/Pack200Test.java generic-all
|
alanb@5964
|
352
|
alanb@5964
|
353 # 7150569
|
alanb@5964
|
354 tools/launcher/UnicodeTest.java macosx-all
|
alanb@5964
|
355
|
alanb@5964
|
356 ############################################################################
|
alanb@5964
|
357
|
alanb@5964
|
358 # jdk_jdi
|
alanb@5964
|
359
|
ohair@2812
|
360 # Filed 6952105
|
michaelm@4598
|
361 com/sun/jdi/SuspendThreadTest.java generic-all
|
ohair@2812
|
362
|
alanb@4425
|
363 # Filed 6653793
|
michaelm@4598
|
364 com/sun/jdi/RedefineCrossEvent.java generic-all
|
alanb@4425
|
365
|
alanb@4425
|
366 # Filed 6987312
|
michaelm@4598
|
367 com/sun/jdi/DoubleAgentTest.java generic-all
|
alanb@4425
|
368
|
alanb@4425
|
369 # Filed 7020857
|
michaelm@4598
|
370 com/sun/jdi/FieldWatchpoints.java generic-all
|
alanb@4425
|
371
|
alanb@4425
|
372 # Filed 6402201
|
michaelm@4598
|
373 com/sun/jdi/ProcessAttachTest.sh generic-all
|
alanb@4425
|
374
|
ohair@1821
|
375 ############################################################################
|
ohair@1821
|
376
|
ohair@1821
|
377 # jdk_util
|
ohair@1821
|
378
|
alanb@5751
|
379 # 7162111 - test needs to be changed to run headless
|
alanb@5751
|
380 java/util/ResourceBundle/Control/Bug6530694.java macosx-all
|
alanb@5751
|
381
|
ohair@2812
|
382 # Filed 6933803
|
michaelm@4598
|
383 java/util/concurrent/ThreadPoolExecutor/CoreThreadTimeOut.java generic-all
|
ohair@2812
|
384
|
alanb@4425
|
385 # Filed 6772009
|
ohair@1821
|
386 java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
|
ohair@1821
|
387
|
weijun@4551
|
388 # 7041639, Solaris DSA keypair generation bug
|
weijun@4551
|
389 java/util/TimeZone/TimeZoneDatePermissionCheck.sh solaris-all
|
weijun@4551
|
390
|
ohair@1821
|
391 ############################################################################
|