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
|
alanb@4928
|
140 ############################################################################
|
alanb@4928
|
141
|
alanb@4928
|
142 # jdk_management
|
alanb@4928
|
143
|
alanb@5060
|
144 # 6959636
|
alanb@5060
|
145 javax/management/loading/LibraryLoader/LibraryLoaderTest.java windows-all
|
alanb@5060
|
146
|
alanb@5060
|
147 # 7144846
|
alanb@5060
|
148 javax/management/remote/mandatory/connection/ReconnectTest.java generic-all
|
alanb@5060
|
149
|
alanb@5751
|
150 # 7158614, locks up Windows machines at least
|
alanb@5751
|
151 sun/management/jmxremote/startstop/JMXStartStopTest.sh windows-all
|
alanb@5751
|
152
|
ohair@1821
|
153 ############################################################################
|
ohair@1821
|
154
|
ohair@1821
|
155 # jdk_math
|
ohair@1821
|
156
|
ohair@1821
|
157 ############################################################################
|
ohair@1821
|
158
|
ohair@1821
|
159 # jdk_misc
|
ohair@1821
|
160
|
alanb@4928
|
161 # 6988950
|
alanb@4928
|
162 demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java generic-all
|
alanb@4928
|
163
|
michaelm@5289
|
164 # 7162111
|
michaelm@5289
|
165 demo/jvmti/mtrace/TraceJFrame.java macosx-all
|
michaelm@5289
|
166 javax/script/CauseExceptionTest.java macosx-all
|
michaelm@5289
|
167 javax/script/GetInterfaceTest.java macosx-all
|
michaelm@5289
|
168 javax/script/JavaScriptScopeTest.java macosx-all
|
michaelm@5289
|
169 javax/script/NullUndefinedVarTest.java macosx-all
|
michaelm@5289
|
170 javax/script/PluggableContextTest.java macosx-all
|
michaelm@5289
|
171 javax/script/ProviderTest.sh macosx-all
|
michaelm@5289
|
172 javax/script/RhinoExceptionTest.java macosx-all
|
michaelm@5289
|
173 javax/script/StringWriterPrintTest.java macosx-all
|
michaelm@5289
|
174 javax/script/Test1.java macosx-all
|
michaelm@5289
|
175 javax/script/Test2.java macosx-all
|
michaelm@5289
|
176 javax/script/Test3.java macosx-all
|
michaelm@5289
|
177 javax/script/Test4.java macosx-all
|
michaelm@5289
|
178 javax/script/Test5.java macosx-all
|
michaelm@5289
|
179 javax/script/Test6.java macosx-all
|
michaelm@5289
|
180 javax/script/Test7.java macosx-all
|
michaelm@5289
|
181 javax/script/Test8.java macosx-all
|
michaelm@5289
|
182 javax/script/UnescapedBracketRegExTest.java macosx-all
|
michaelm@5289
|
183 javax/script/VersionTest.java macosx-all
|
ohair@1821
|
184 ############################################################################
|
ohair@1821
|
185
|
ohair@1821
|
186 # jdk_net
|
ohair@1821
|
187
|
alanb@4425
|
188 # Filed 7052625
|
michaelm@4598
|
189 com/sun/net/httpserver/bugs/6725892/Test.java generic-all
|
alanb@4425
|
190
|
alanb@4425
|
191 # Filed 7036666
|
michaelm@4598
|
192 com/sun/net/httpserver/Test9a.java generic-all
|
alanb@4425
|
193
|
weijun@4488
|
194 # 7079145 java/net/ipv6tests/UdpTest.java hang at IPv6 only data exchange
|
weijun@4488
|
195 java/net/ipv6tests/UdpTest.java linux-all
|
weijun@4488
|
196
|
michaelm@4654
|
197 # 7102670
|
michaelm@4654
|
198 java/net/InetAddress/CheckJNI.java linux-all
|
michaelm@4654
|
199
|
michaelm@4654
|
200 # failing on vista 32/64 on nightly
|
michaelm@4654
|
201 # 7102702
|
michaelm@4654
|
202 java/net/PortUnreachableException/OneExceptionOnly.java windows-all
|
alanb@5060
|
203
|
alanb@5087
|
204 # 7148829
|
alanb@5087
|
205 sun/net/InetAddress/nameservice/simple/CacheTest.java generic-all
|
alanb@5087
|
206 sun/net/InetAddress/nameservice/simple/DefaultCaching.java generic-all
|
alanb@5087
|
207
|
michaelm@5116
|
208 # 7122846
|
michaelm@5116
|
209 java/net/MulticastSocket/NoLoopbackPackets.java macosx-all
|
michaelm@5116
|
210 java/net/MulticastSocket/SetLoopbackMode.java macosx-all
|
michaelm@5116
|
211
|
michaelm@5116
|
212 # 7145658
|
michaelm@5116
|
213 java/net/MulticastSocket/Test.java macosx-all
|
michaelm@5116
|
214
|
michaelm@5116
|
215 #7143960
|
michaelm@5116
|
216 java/net/DatagramSocket/SendDatagramToBadAddress.java macosx-all
|
michaelm@5116
|
217
|
michaelm@5116
|
218 # 7150552
|
michaelm@5116
|
219 sun/net/www/protocol/http/B6299712.java macosx-all
|
michaelm@5116
|
220 java/net/CookieHandler/CookieManagerTest.java macosx-all
|
michaelm@5116
|
221
|
weijun@5457
|
222 # 7164518
|
weijun@5457
|
223 sun/security/krb5/auto/Unreachable.java macosx-all
|
weijun@5457
|
224
|
michaelm@5289
|
225 # JPRT needs to set 127.0.0.1 in proxy bypass list
|
michaelm@5289
|
226 java/net/URLClassLoader/closetest/CloseTest.java macosx-all
|
ohair@1821
|
227 ############################################################################
|
ohair@1821
|
228
|
alanb@2546
|
229 # jdk_io
|
alanb@2546
|
230
|
alanb@5751
|
231 # 7162111 - these tests need to be updated to run headless
|
michaelm@5116
|
232 java/io/Serializable/resolveClass/deserializeButton/run.sh macosx-all
|
alanb@5751
|
233 java/io/Serializable/serialver/classpath/run.sh macosx-all
|
alanb@5751
|
234 java/io/Serializable/serialver/nested/run.sh macosx-all
|
michaelm@5116
|
235
|
alanb@2546
|
236 ############################################################################
|
alanb@2546
|
237
|
ohair@1821
|
238 # jdk_nio
|
ohair@1821
|
239
|
alanb@2546
|
240 # 6963118
|
alanb@2546
|
241 java/nio/channels/Selector/Wakeup.java windows-all
|
ohair@2203
|
242
|
alanb@4820
|
243 # 7052549
|
alanb@4820
|
244 java/nio/channels/FileChannel/ReleaseOnCloseDeadlock.java windows-all
|
alanb@4504
|
245
|
michaelm@5116
|
246 # 7133499, 7133497
|
michaelm@5116
|
247 java/nio/channels/AsyncCloseAndInterrupt.java macosx-all
|
michaelm@5116
|
248 java/nio/channels/AsynchronousFileChannel/Lock.java macosx-all
|
michaelm@5116
|
249 java/nio/channels/FileChannel/Transfer.java macosx-all
|
michaelm@5116
|
250
|
michaelm@5116
|
251 # 7141822
|
michaelm@5116
|
252 java/nio/channels/DatagramChannel/ChangingAddress.java macosx-all
|
michaelm@5116
|
253
|
michaelm@5116
|
254 # 7132677
|
michaelm@5116
|
255 java/nio/channels/Selector/OutOfBand.java macosx-all
|
michaelm@5116
|
256
|
alanb@5751
|
257 # 7142919
|
alanb@5751
|
258 java/nio/channels/AsyncCloseAndInterrupt.java solaris-all
|
alanb@5751
|
259
|
ohair@1821
|
260 ############################################################################
|
ohair@1821
|
261
|
ohair@1821
|
262 # jdk_rmi
|
ohair@1821
|
263
|
alanb@5087
|
264 # 7146541
|
alanb@5087
|
265 java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
|
alanb@5087
|
266
|
smarks@5801
|
267 # 7187882
|
smarks@5801
|
268 java/rmi/activation/checkusage/CheckUsage.java generic-all
|
smarks@5801
|
269
|
smarks@5801
|
270 # 7190106
|
smarks@5801
|
271 java/rmi/reliability/benchmark/runRmiBench.sh generic-all
|
smarks@5801
|
272
|
smarks@5801
|
273 # 7191877
|
smarks@5801
|
274 java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all
|
smarks@5801
|
275
|
smarks@5801
|
276 # 7195095
|
smarks@5801
|
277 sun/rmi/transport/proxy/EagerHttpFallback.java linux-all
|
smarks@5801
|
278
|
ohair@1821
|
279 ############################################################################
|
ohair@1821
|
280
|
ohair@1821
|
281 # jdk_security
|
ohair@1821
|
282
|
alanb@5751
|
283 # 7193792
|
alanb@5751
|
284 sun/security/pkcs11/ec/TestECDSA.java solaris-all
|
alanb@5751
|
285 sun/security/pkcs11/ec/TestECDSA.java linux-all
|
alanb@5751
|
286
|
alanb@5751
|
287 # 7193793
|
alanb@5751
|
288 sun/security/pkcs11/ec/TestECDH.java linux-all
|
alanb@5751
|
289
|
alanb@5060
|
290 # 7147060
|
alanb@5060
|
291 com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
|
alanb@5060
|
292
|
vinnie@5111
|
293 # Failing on Solaris i586, 3/9/2010, not a -samevm issue (jdk_security3)
|
vinnie@5111
|
294 sun/security/pkcs11/Secmod/AddPrivateKey.java solaris-i586
|
vinnie@5317
|
295 sun/security/pkcs11/ec/ReadCertificates.java generic-all
|
vinnie@5317
|
296 sun/security/pkcs11/ec/ReadPKCS12.java generic-all
|
vinnie@5111
|
297 sun/security/pkcs11/ec/TestCurves.java solaris-i586
|
vinnie@5111
|
298 #sun/security/pkcs11/ec/TestECGenSpec.java solaris-i586
|
vinnie@5111
|
299 #sun/security/pkcs11/ec/TestKeyFactory.java solaris-i586
|
vinnie@5317
|
300 sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java generic-all
|
vinnie@5111
|
301
|
weijun@4479
|
302 # Fails on Fedora 9/Ubuntu 10.04 64bit, PKCS11Exception: CKR_DEVICE_ERROR
|
michaelm@4598
|
303 sun/security/pkcs11/KeyAgreement/TestDH.java generic-all
|
ohair@2017
|
304
|
ohair@1821
|
305 # Run too slow on Solaris 10 sparc
|
ohair@1821
|
306 sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/SSLSocketTimeoutNulls.java solaris-sparc
|
ohair@1821
|
307 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ClientTimeout.java solaris-sparc
|
ohair@1821
|
308 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ServerTimeout.java solaris-sparc
|
ohair@1821
|
309 sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/ReadTimeout.java solaris-sparc
|
ohair@1821
|
310 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/NotifyHandshakeTest.sh solaris-sparc
|
ohair@1821
|
311
|
ohair@1821
|
312 # Solaris 10 sparc, passed/failed confusion? java.security.ProviderException: update() failed
|
ohair@1821
|
313 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/AsyncSSLSocketClose.java generic-all
|
ohair@1821
|
314
|
ohair@1821
|
315 # Othervm, sparc, NoRouteToHostException: Cannot assign requested address
|
ohair@1821
|
316 sun/security/ssl/javax/net/ssl/NewAPIs/SessionCacheSizeTests.java generic-all
|
ohair@1821
|
317
|
ohair@1821
|
318 # Times out on windows X64, othervm mode
|
ohair@1821
|
319 # Solaris sparc and sparcv9 -server, timeout
|
michaelm@4598
|
320 sun/security/ssl/javax/net/ssl/NewAPIs/SessionTimeOutTests.java generic-all
|
ohair@1821
|
321
|
ohair@1821
|
322 # Various failures on Linux Fedora 9 X64, othervm mode
|
ohair@1821
|
323 sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/TestAllSuites.java generic-all
|
michaelm@4598
|
324 sun/security/ssl/sanity/ciphersuites/CheckCipherSuites.java generic-all
|
ohair@1821
|
325
|
ohair@1821
|
326 # Various failures on Linux Fedora 9 X64, othervm mode
|
michaelm@4598
|
327 sun/security/ssl/sanity/interop/ClientJSSEServerJSSE.java generic-all
|
ohair@1821
|
328
|
weijun@4488
|
329 # 7079203 sun/security/tools/keytool/printssl.sh fails on solaris with timeout
|
weijun@4488
|
330 sun/security/tools/keytool/printssl.sh solaris-all
|
weijun@4488
|
331
|
weijun@4551
|
332 # 7041639, Solaris DSA keypair generation bug (Note: jdk_util also affected)
|
weijun@4551
|
333 java/security/KeyPairGenerator/SolarisShortDSA.java solaris-all
|
weijun@4551
|
334 sun/security/tools/jarsigner/onlymanifest.sh solaris-all
|
weijun@4551
|
335 sun/security/tools/jarsigner/ts.sh solaris-all
|
weijun@4551
|
336 sun/security/tools/keytool/emptysubject.sh solaris-all
|
weijun@4551
|
337 sun/security/tools/keytool/importreadall.sh solaris-all
|
weijun@4551
|
338 sun/security/tools/keytool/readjar.sh solaris-all
|
weijun@4551
|
339 sun/security/tools/keytool/selfissued.sh solaris-all
|
weijun@4551
|
340 sun/security/tools/keytool/standard.sh solaris-all
|
weijun@4551
|
341
|
ohair@1821
|
342 ############################################################################
|
ohair@1821
|
343
|
alanb@5060
|
344 # jdk_sound
|
ohair@1821
|
345
|
alanb@5060
|
346 ############################################################################
|
alanb@5060
|
347
|
alanb@5060
|
348 # jdk_swing
|
ohair@1821
|
349
|
ohair@1821
|
350 ############################################################################
|
ohair@1821
|
351
|
ohair@1821
|
352 # jdk_text
|
ohair@1821
|
353
|
ohair@1821
|
354 ############################################################################
|
ohair@1821
|
355
|
ohair@1821
|
356 # jdk_tools
|
ohair@1821
|
357
|
alanb@5029
|
358 # 6461635
|
alanb@5029
|
359 com/sun/tools/attach/BasicTests.sh generic-all
|
alanb@5029
|
360
|
ohair@2812
|
361 # Filed 6952105
|
michaelm@4598
|
362 com/sun/jdi/SuspendThreadTest.java generic-all
|
ohair@2812
|
363
|
alanb@4425
|
364 # Filed 6653793
|
michaelm@4598
|
365 com/sun/jdi/RedefineCrossEvent.java generic-all
|
alanb@4425
|
366
|
alanb@4425
|
367 # Filed 6987312
|
michaelm@4598
|
368 com/sun/jdi/DoubleAgentTest.java generic-all
|
alanb@4425
|
369
|
alanb@4425
|
370 # Filed 7020857
|
michaelm@4598
|
371 com/sun/jdi/FieldWatchpoints.java generic-all
|
alanb@4425
|
372
|
alanb@4425
|
373 # Filed 6402201
|
michaelm@4598
|
374 com/sun/jdi/ProcessAttachTest.sh generic-all
|
alanb@4425
|
375
|
alanb@5736
|
376 # Filed 7172176
|
michaelm@4598
|
377 sun/tools/jconsole/ResourceCheckTest.sh generic-all
|
alanb@5493
|
378 sun/tools/jconsole/ImmutableResourceTest.sh generic-all
|
alanb@5493
|
379
|
alanb@4968
|
380 # 7132203
|
alanb@4968
|
381 sun/jvmstat/monitor/MonitoredVm/CR6672135.java generic-all
|
alanb@4968
|
382
|
alanb@5060
|
383 # Tests take too long, see 7143279
|
alanb@5029
|
384 tools/pack200/CommandLineTests.java generic-all
|
alanb@5029
|
385 tools/pack200/Pack200Test.java generic-all
|
alanb@5029
|
386
|
michaelm@5116
|
387 # 7150569
|
michaelm@5116
|
388 tools/launcher/UnicodeTest.java macosx-all
|
michaelm@5116
|
389
|
ohair@1821
|
390 ############################################################################
|
ohair@1821
|
391
|
ohair@1821
|
392 # jdk_util
|
ohair@1821
|
393
|
alanb@5751
|
394 # 7162111 - test needs to be changed to run headless
|
alanb@5751
|
395 java/util/ResourceBundle/Control/Bug6530694.java macosx-all
|
alanb@5751
|
396
|
ohair@2812
|
397 # Filed 6933803
|
michaelm@4598
|
398 java/util/concurrent/ThreadPoolExecutor/CoreThreadTimeOut.java generic-all
|
ohair@2812
|
399
|
alanb@4425
|
400 # Filed 6772009
|
ohair@1821
|
401 java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
|
ohair@1821
|
402
|
weijun@4551
|
403 # 7041639, Solaris DSA keypair generation bug
|
weijun@4551
|
404 java/util/TimeZone/TimeZoneDatePermissionCheck.sh solaris-all
|
weijun@4551
|
405
|
ohair@1821
|
406 ############################################################################
|