1 | ###########################################################################
|
---|
2 | #
|
---|
3 | # Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
|
---|
4 | # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
---|
5 | #
|
---|
6 | # This code is free software; you can redistribute it and/or modify it
|
---|
7 | # under the terms of the GNU General Public License version 2 only, as
|
---|
8 | # published by the Free Software Foundation. Oracle designates this
|
---|
9 | # particular file as subject to the "Classpath" exception as provided
|
---|
10 | # by Oracle in the LICENSE file that accompanied this code.
|
---|
11 | #
|
---|
12 | # This code is distributed in the hope that it will be useful, but WITHOUT
|
---|
13 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
---|
14 | # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
---|
15 | # version 2 for more details (a copy is included in the LICENSE file that
|
---|
16 | # accompanied this code).
|
---|
17 | #
|
---|
18 | # You should have received a copy of the GNU General Public License version
|
---|
19 | # 2 along with this work; if not, write to the Free Software Foundation,
|
---|
20 | # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
---|
21 | #
|
---|
22 | # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
---|
23 | # or visit www.oracle.com if you need additional information or have any
|
---|
24 | # questions.
|
---|
25 | #
|
---|
26 | ###########################################################################
|
---|
27 | #
|
---|
28 | # List of tests that should not be run by test/Makefile, for various reasons:
|
---|
29 | # 1. Does not run with jtreg -samevm mode
|
---|
30 | # 2. Causes problems in jtreg -samevm mode for jtreg or tests that follow it
|
---|
31 | # 3. The test is too slow or consumes too many system resources
|
---|
32 | # 4. The test fails when run on any official build systems
|
---|
33 | #
|
---|
34 | # It is possible that a test being on this list is a mistake, and that some
|
---|
35 | # other test in samevm mode caused tests to fail, mistakes happen.
|
---|
36 | #
|
---|
37 | # NOTE: This list originally came from jdk7 and may contain tests that
|
---|
38 | # only problems with jdk7. Once identified, they will be removed.
|
---|
39 | #
|
---|
40 | # Tests marked @ignore are not run by test/Makefile, but harmless to be listed.
|
---|
41 | #
|
---|
42 | # Tests that explicitly state "@run main/othervm ...", and are not listed here,
|
---|
43 | # will be run in the same batch as the samevm tests.
|
---|
44 | #
|
---|
45 | # Shell tests are othervm by default.
|
---|
46 | #
|
---|
47 | # List items are testnames followed by labels, all MUST BE commented
|
---|
48 | # as to why they are here and use a label:
|
---|
49 | # generic-all Problems on all platforms
|
---|
50 | # generic-ARCH Where ARCH is one of: sparc, sparcv9, x64, i586, etc.
|
---|
51 | # OSNAME-all Where OSNAME is one of: solaris, linux, windows
|
---|
52 | # OSNAME-ARCH Specific on to one OSNAME and ARCH, e.g. solaris-x64
|
---|
53 | # OSNAME-REV Specific on to one OSNAME and REV, e.g. solaris-5.8
|
---|
54 | #
|
---|
55 | # More than one label is allowed but must be on the same line.
|
---|
56 | #
|
---|
57 | #############################################################################
|
---|
58 | #
|
---|
59 | # Running the tests:
|
---|
60 | # cd test && make JT_HOME=jtreg_home PRODUCT_HOME=jdk_home jdk_all
|
---|
61 | # Or instead of jdk_all, use any of the jdk_* targets.
|
---|
62 | #
|
---|
63 | # Samevm Notes:
|
---|
64 | # * Although some tests may have only been seen to fail on some platforms,
|
---|
65 | # they might be flagged as 'generic-all' because the problem they have
|
---|
66 | # could cause hidden slowdowns on other platforms.
|
---|
67 | # Most samevm problems will be generic-all, but windows usually dislikes
|
---|
68 | # them the most.
|
---|
69 | # Address already in use or connection errors indicate a generic port issue.
|
---|
70 | # (this is not necessarily a samevm issue, but an issue for running the tests
|
---|
71 | # on shared machines, two people or two test runs will collide).
|
---|
72 | # * Samevm problem (windows in particular) is not closing all input/output
|
---|
73 | # * Samevm problem when a test calls setSecurityManager()
|
---|
74 | # * Samevm problem with setHttps*() is used? (not exactly sure here)
|
---|
75 | # * Samevm problem when stuffing system properties with non Strings or anything
|
---|
76 | # * Samevm problem when changing vm settings, or registering any vm actions
|
---|
77 | # * Samevm problems with deleteOnExit(), if it must happen at end of test
|
---|
78 | # * Samevm problems with URLClassLoader? (no details here)
|
---|
79 | # * Samevm problems with dependence on predictable GC or finalizations
|
---|
80 | #
|
---|
81 | # Any of the above problems may mean the test needs to be flagged as "othervm".
|
---|
82 | #
|
---|
83 | #############################################################################
|
---|
84 | #
|
---|
85 | # Fixing the tests:
|
---|
86 | #
|
---|
87 | # Some tests just may need to be run with "othervm", and that can easily be
|
---|
88 | # done my adding a @run line (or modifying any existing @run):
|
---|
89 | # @run main/othervm NameOfMainClass
|
---|
90 | # Make sure this @run follows any use of @library.
|
---|
91 | # Otherwise, if the test is a samevm possibility, make sure the test is
|
---|
92 | # cleaning up after itself, closing all streams, deleting temp files, etc.
|
---|
93 | #
|
---|
94 | # Keep in mind that the bug could be in many places, and even different per
|
---|
95 | # platform, it could be a bug in any one of:
|
---|
96 | # - the testcase
|
---|
97 | # - the jdk (jdk classes, native code, or hotspot)
|
---|
98 | # - the native compiler
|
---|
99 | # - the javac compiler
|
---|
100 | # - the OS (depends on what the testcase does)
|
---|
101 | #
|
---|
102 | # If you managed to really fix one of these tests, here is how you can
|
---|
103 | # remove tests from this list:
|
---|
104 | # 1. Make sure test passes on all platforms with samevm, or mark it othervm
|
---|
105 | # 2. Make sure test passes on all platforms when run with it's entire group
|
---|
106 | # 3. Make sure both VMs are tested, -server and -client, if possible
|
---|
107 | # 4. Make sure you try the -d64 option on Solaris
|
---|
108 | # 5. Use a tool like JPRT or something to verify these results
|
---|
109 | # 6. Delete lines in this file, include the changes with your test changes
|
---|
110 | #
|
---|
111 | # You may need to repeat your testing 2 or even 3 times to verify good
|
---|
112 | # results, some of these samevm failures are not very predictable.
|
---|
113 | #
|
---|
114 | #############################################################################
|
---|
115 |
|
---|
116 | ############################################################################
|
---|
117 |
|
---|
118 | # jdk_awt
|
---|
119 |
|
---|
120 | # None of the awt tests are using samevm, might not be worth the effort due
|
---|
121 | # to the vm overhead not being enough to make a difference.
|
---|
122 | # In general, the awt tests are problematic with or without samevm, and there
|
---|
123 | # are issues with using a Xvfb display.
|
---|
124 |
|
---|
125 | # Fails on solaris 11 i586, -client, in othervm mode not sure why
|
---|
126 | java/awt/image/mlib/MlibOpsTest.java generic-all
|
---|
127 |
|
---|
128 | # Fails on windows, othervm mode, various errors
|
---|
129 | java/awt/event/KeyEvent/KeyTyped/CtrlASCII.html generic-all
|
---|
130 |
|
---|
131 | # Fails with windows X64, othervm, -server
|
---|
132 | java/awt/Focus/FocusEmbeddedFrameTest/FocusEmbeddedFrameTest.java generic-all
|
---|
133 | java/awt/Frame/LayoutOnMaximizeTest/LayoutOnMaximizeTest.java generic-all
|
---|
134 |
|
---|
135 | ############################################################################
|
---|
136 |
|
---|
137 | # jdk_beans
|
---|
138 |
|
---|
139 | # A large set of the beans tests set the security manager, which would seem
|
---|
140 | # to indicate that a large number of them should be "othervm", yet are all
|
---|
141 | # very small tests and could greatly benefit from a samevm test run.
|
---|
142 | # So a large batch of beans tests are currently run with othervm mode.
|
---|
143 |
|
---|
144 | # Fails on OpenSolaris
|
---|
145 | java/beans/XMLEncoder/javax_swing_tree_TreePath.java generic-all
|
---|
146 |
|
---|
147 | # Hangs on most solaris runs.
|
---|
148 | java/beans/Introspector/memory/Test4508780.java generic-all
|
---|
149 |
|
---|
150 | # Fail on opensolartis, solaris, maybe solaris 8? Consistently, othervm
|
---|
151 | java/beans/Introspector/Test6194788.java generic-all
|
---|
152 | java/beans/Introspector/Test6422403.java generic-all
|
---|
153 | java/beans/Introspector/Test6528714.java generic-all
|
---|
154 | java/beans/Introspector/TestTypeResolver.java generic-all
|
---|
155 | java/beans/PropertyChangeSupport/TestEquals.java generic-all
|
---|
156 | java/beans/VetoableChangeSupport/Test4994635.java generic-all
|
---|
157 | java/beans/VetoableChangeSupport/TestEquals.java generic-all
|
---|
158 | java/beans/VetoableChangeSupport/TestListeners.java generic-all
|
---|
159 | java/beans/VetoableChangeSupport/TestSynchronization.java generic-all
|
---|
160 |
|
---|
161 | # Linux, some kind of problems with X11 display
|
---|
162 | java/beans/PropertyChangeSupport/Test4682386.java generic-all
|
---|
163 | java/beans/PropertyChangeSupport/TestSynchronization.java generic-all
|
---|
164 | java/beans/Statement/Test4653179.java generic-all
|
---|
165 |
|
---|
166 | # Problems with samevm and setting security manager (speculation partially)
|
---|
167 | java/beans/Beans/Test4080522.java generic-all
|
---|
168 | java/beans/EventHandler/Test6277246.java generic-all
|
---|
169 | java/beans/EventHandler/Test6277266.java generic-all
|
---|
170 | java/beans/Introspector/Test6277246.java generic-all
|
---|
171 | java/beans/Introspector/4168475/Test4168475.java generic-all
|
---|
172 | java/beans/Introspector/4520754/Test4520754.java generic-all
|
---|
173 | java/beans/Introspector/Test4144543.java generic-all
|
---|
174 |
|
---|
175 | ############################################################################
|
---|
176 |
|
---|
177 | # jdk_io
|
---|
178 |
|
---|
179 | # Many of these tests have a tendency to leave input streams open, which
|
---|
180 | # will cause following tests to be failures when used in samevm mode.
|
---|
181 |
|
---|
182 | # Fails on Windows, not closing a file?: 7059970
|
---|
183 | javax/imageio/plugins/png/ITXtTest.java generic-all
|
---|
184 |
|
---|
185 | # Fails on Windows 2000 & 2003/x64
|
---|
186 | # Exception: .\x.SetAccessPermission.dir: setWritable(false, true) Failed
|
---|
187 | # at SetAccess.doTest(SetAccess.java:144)
|
---|
188 | java/io/File/SetAccess.java generic-all
|
---|
189 |
|
---|
190 | # Should be othervm, or corrected for samevm, fails with samevm:
|
---|
191 | java/io/BufferedReader/BigMark.java generic-all
|
---|
192 | java/io/BufferedReader/ReadLineSync.java generic-all
|
---|
193 |
|
---|
194 | # Fails on OpenSolaris
|
---|
195 | java/io/File/GetXSpace.java generic-all
|
---|
196 |
|
---|
197 | # One of these is leaving "a.ser" file open, windows samevm
|
---|
198 | java/io/Serializable/duplicateSerialFields/Setup.java generic-all
|
---|
199 | java/io/Serializable/duplicateSerialFields/Test.java generic-all
|
---|
200 |
|
---|
201 | # One of these leaving foo.ser open, windows samevm problem
|
---|
202 | java/io/Serializable/enum/constantSubclasses/Read.java generic-all
|
---|
203 | java/io/Serializable/enum/constantSubclasses/Write.java generic-all
|
---|
204 | java/io/Serializable/enum/missingConstant/Read.java generic-all
|
---|
205 | java/io/Serializable/enum/missingConstant/Write.java generic-all
|
---|
206 |
|
---|
207 | # This is leaving subtest1.tmp open, windows samevm problem
|
---|
208 | java/io/Serializable/oldTests/AnnotateClass.java generic-all
|
---|
209 |
|
---|
210 | # One or more of these leave a piotest* file open, windows samevm
|
---|
211 | java/io/Serializable/oldTests/ArrayFields.java generic-all
|
---|
212 | java/io/Serializable/oldTests/ArraysOfArrays.java generic-all
|
---|
213 | java/io/Serializable/oldTests/BinaryTree.java generic-all
|
---|
214 | java/io/Serializable/oldTests/CircularList.java generic-all
|
---|
215 | java/io/Serializable/oldTests/SerializeWithException.java generic-all
|
---|
216 | java/io/Serializable/oldTests/SimpleArrays.java generic-all
|
---|
217 | java/io/Serializable/oldTests/WritePrimitive.java generic-all
|
---|
218 |
|
---|
219 | # Missing close on file 0.ser, windows samevm
|
---|
220 | java/io/Serializable/enum/badResolve/Read.java generic-all
|
---|
221 | java/io/Serializable/enum/badResolve/Write.java generic-all
|
---|
222 |
|
---|
223 | # One of these tests is leaving parents.ser open, windows samevm
|
---|
224 | java/io/Serializable/parents/EvolvedClass.java generic-all
|
---|
225 | java/io/Serializable/parents/OriginalClass.java generic-all
|
---|
226 |
|
---|
227 | # One of these tests is leaving file foo.ser and/or bar.ser open, windows samevm
|
---|
228 | java/io/Serializable/fieldTypeString/Read.java generic-all
|
---|
229 | java/io/Serializable/fieldTypeString/Write.java generic-all
|
---|
230 |
|
---|
231 | # One of these tests is leaving tmp.ser file open, windows samevm
|
---|
232 | java/io/Serializable/ClassCastExceptionDetail/Read.java generic-all
|
---|
233 | java/io/Serializable/ClassCastExceptionDetail/Write.java generic-all
|
---|
234 | java/io/Serializable/GetField/Read.java generic-all
|
---|
235 | java/io/Serializable/GetField/Read2.java generic-all
|
---|
236 | java/io/Serializable/GetField/Write.java generic-all
|
---|
237 | java/io/Serializable/PutField/Read.java generic-all
|
---|
238 | java/io/Serializable/PutField/Read2.java generic-all
|
---|
239 | java/io/Serializable/PutField/Write.java generic-all
|
---|
240 | java/io/Serializable/PutField/Write2.java generic-all
|
---|
241 | java/io/Serializable/arraySuidConflict/Read.java generic-all
|
---|
242 | java/io/Serializable/arraySuidConflict/Write.java generic-all
|
---|
243 | java/io/Serializable/backRefCNFException/Read.java generic-all
|
---|
244 | java/io/Serializable/backRefCNFException/Write.java generic-all
|
---|
245 | java/io/Serializable/class/Test.java generic-all
|
---|
246 | java/io/Serializable/evolution/AddedExternField/ReadAddedField.java generic-all
|
---|
247 | java/io/Serializable/evolution/AddedExternField/WriteAddedField.java generic-all
|
---|
248 | java/io/Serializable/evolution/AddedExternField/run.sh generic-all
|
---|
249 | java/io/Serializable/evolution/AddedField/ReadAddedField.java generic-all
|
---|
250 | java/io/Serializable/evolution/AddedField/WriteAddedField.java generic-all
|
---|
251 | java/io/Serializable/evolution/AddedSuperClass/ReadAddedSuperClass.java generic-all
|
---|
252 | java/io/Serializable/evolution/AddedSuperClass/ReadAddedSuperClass2.java generic-all
|
---|
253 | java/io/Serializable/evolution/AddedSuperClass/WriteAddedSuperClass.java generic-all
|
---|
254 | java/io/Serializable/proxy/skipMissing/Read.java generic-all
|
---|
255 | java/io/Serializable/proxy/skipMissing/Write.java generic-all
|
---|
256 | java/io/Serializable/readObjectNoData/Read.java generic-all
|
---|
257 | java/io/Serializable/readObjectNoData/Write.java generic-all
|
---|
258 | java/io/Serializable/skipWriteObject/Read.java generic-all
|
---|
259 | java/io/Serializable/skipWriteObject/Write.java generic-all
|
---|
260 | java/io/Serializable/skippedObjCNFException/Read.java generic-all
|
---|
261 | java/io/Serializable/skippedObjCNFException/Write.java generic-all
|
---|
262 | java/io/Serializable/stopCustomDeserialization/Read.java generic-all
|
---|
263 | java/io/Serializable/stopCustomDeserialization/Write.java generic-all
|
---|
264 | java/io/Serializable/unresolvedClassDesc/Read.java generic-all
|
---|
265 | java/io/Serializable/unresolvedClassDesc/Write.java generic-all
|
---|
266 | java/io/Serializable/unshared/Read.java generic-all
|
---|
267 | java/io/Serializable/unshared/Write.java generic-all
|
---|
268 | java/io/Serializable/wrongReturnTypes/Read.java generic-all
|
---|
269 | java/io/Serializable/wrongReturnTypes/Write.java generic-all
|
---|
270 |
|
---|
271 | # Windows samevm issues? triggers other tests to fail, missing close() on f.txt?
|
---|
272 | java/io/DataInputStream/OpsAfterClose.java generic-all
|
---|
273 |
|
---|
274 | # Windows 32bit samevm failure: RuntimeException: File.getFreeSpace() failed
|
---|
275 | java/io/File/MaxPathLength.java generic-all
|
---|
276 |
|
---|
277 | # Should be othervm, or corrected for samevm, fails with samevm:
|
---|
278 | java/io/File/DeleteOnExit.java generic-all
|
---|
279 | java/io/File/DeleteOnExitLong.java generic-all
|
---|
280 | java/io/File/DeleteOnExitNPE.java generic-all
|
---|
281 | java/io/File/IsHidden.java generic-all
|
---|
282 | java/io/FileDescriptor/FileChannelFDTest.java generic-all
|
---|
283 | java/io/FileDescriptor/Finalize.java generic-all
|
---|
284 | java/io/FileInputStream/FinalizeShdCallClose.java generic-all
|
---|
285 |
|
---|
286 | # Known to cause samevm issues on windows, other tests fail, missing close()?
|
---|
287 | java/io/FileInputStream/OpsAfterClose.java generic-all
|
---|
288 |
|
---|
289 | # Should be othervm, or corrected for samevm, fails with samevm:
|
---|
290 | java/io/FileOutputStream/FinalizeShdCallClose.java generic-all
|
---|
291 |
|
---|
292 | # Known to cause samevm issues on windows, other tests fail, missing close()?
|
---|
293 | java/io/FileOutputStream/OpsAfterClose.java generic-all
|
---|
294 |
|
---|
295 | # Windows samevm issues? triggers other tests to fail, missing close() on f.txt?
|
---|
296 | java/io/InputStream/OpsAfterClose.java generic-all
|
---|
297 |
|
---|
298 | # Missing close() on x.ReadBounds file? Windows samevm issues
|
---|
299 | java/io/InputStream/ReadParams.java generic-all
|
---|
300 |
|
---|
301 | # Known to cause samevm issues on windows, other tests fail, missing close()?
|
---|
302 | java/io/InputStreamReader/GrowAfterEOF.java generic-all
|
---|
303 |
|
---|
304 | # Should be othervm, or corrected for samevm, fails with samevm:
|
---|
305 | java/io/ObjectInputStream/ResolveProxyClass.java generic-all
|
---|
306 |
|
---|
307 | # Not doing a close() on x.ParameterCheck file? windows samevm cascade error
|
---|
308 | java/io/RandomAccessFile/ParameterCheck.java generic-all
|
---|
309 |
|
---|
310 | # Not doing a close on x.ReadLine file? windows cascade samevm problems
|
---|
311 | java/io/RandomAccessFile/ReadLine.java generic-all
|
---|
312 |
|
---|
313 | # Not doing close on file input x.WriteByteChars, windows samevm problems
|
---|
314 | java/io/RandomAccessFile/WriteBytesChars.java generic-all
|
---|
315 |
|
---|
316 | # Not doing close on file input x.WriteUTF, windows samevm problems
|
---|
317 | java/io/RandomAccessFile/WriteUTF.java generic-all
|
---|
318 |
|
---|
319 | # Possibly, not doing a close() on input.txt, windows samevm issues.
|
---|
320 | java/io/RandomAccessFile/skipBytes/SkipBytes.java generic-all
|
---|
321 | java/io/readBytes/MemoryLeak.java generic-all
|
---|
322 | java/io/readBytes/ReadBytesBounds.java generic-all
|
---|
323 |
|
---|
324 | # Missing close on fields.ser, windows samevm
|
---|
325 | java/io/Serializable/checkModifiers/CheckModifiers.java generic-all
|
---|
326 |
|
---|
327 | # Should be othervm, or corrected for samevm, fails with samevm:
|
---|
328 | java/io/Serializable/auditStreamSubclass/AuditStreamSubclass.java generic-all
|
---|
329 | java/io/Serializable/proxy/Basic.java generic-all
|
---|
330 |
|
---|
331 | # Possibly not doing a close() on input.txt, windows samevm issues.
|
---|
332 | java/io/StreamTokenizer/Comment.java generic-all
|
---|
333 |
|
---|
334 | ############################################################################
|
---|
335 |
|
---|
336 | # jdk_lang
|
---|
337 |
|
---|
338 | # Fails on OpenSolaris, see 6992968
|
---|
339 | java/lang/management/MemoryMXBean/CollectionUsageThresholdConcMarkSweepGC.sh generic-all
|
---|
340 |
|
---|
341 | # Solaris 10 sparc: main -- Error. Error while cleaning up threads after test
|
---|
342 | java/lang/management/ThreadMXBean/ThreadBlockedCount.java generic-all
|
---|
343 |
|
---|
344 | # Some of these tests (like java/lang/management) may just need to be marked
|
---|
345 | # othervm, but that is partially speculation.
|
---|
346 |
|
---|
347 | # Fails on Fedora 9 32bit,
|
---|
348 | # RuntimeException: Current Peak = 14 Expected to be == previous peak = 13 + 0
|
---|
349 | # at ResetPeakThreadCount.startThreads(ResetPeakThreadCount.java:141)
|
---|
350 | java/lang/management/ThreadMXBean/ResetPeakThreadCount.java generic-all
|
---|
351 |
|
---|
352 | # Fails on Fedora 9 32bit
|
---|
353 | # ATestCaseScaffold$TestCaseScaffoldException: TT[Trans12][001]
|
---|
354 | # incorrectly appeared before TT[Trans12][000] i=1 j=507 size=1014
|
---|
355 | # at ATestCaseScaffold.fail(ATestCaseScaffold.java:116)
|
---|
356 | java/lang/instrument/TransformerManagementThreadAddTests.java generic-all
|
---|
357 |
|
---|
358 | # Fails on OpenSolaris
|
---|
359 | java/lang/ClassLoader/UninitializedParent.java generic-all
|
---|
360 | java/lang/annotations/ParameterAnnotations.java generic-all
|
---|
361 |
|
---|
362 | # Times out on solaris 10 sparc
|
---|
363 | java/lang/ClassLoader/Assert.java generic-all
|
---|
364 |
|
---|
365 | # Fedora 9 X64, RuntimeException: MyThread expected to be blocked on lock, but got null
|
---|
366 | java/lang/management/ThreadMXBean/ThreadStateTest.java generic-all
|
---|
367 |
|
---|
368 | # RuntimeException: Uptime of the JVM is more than 30 minutes (32 minutes).
|
---|
369 | java/lang/management/RuntimeMXBean/UpTime.java generic-all
|
---|
370 |
|
---|
371 | # Times out on solaris sparc occasionally, in samevm mode
|
---|
372 | java/lang/Runtime/exec/ExecWithDir.java generic-all
|
---|
373 | java/lang/ProcessBuilder/Basic.java generic-all
|
---|
374 |
|
---|
375 | # Solaris sparc, samevm, java.lang.Exception: Read from closed pipe hangs
|
---|
376 | java/lang/Runtime/exec/SleepyCat.java generic-all
|
---|
377 |
|
---|
378 | # Need to be marked othervm, or changed to be samevm safe
|
---|
379 | java/lang/ClassLoader/defineClass/DefineClassByteBuffer.java generic-all
|
---|
380 | java/lang/ClassLoader/findSystemClass/Loader.java generic-all
|
---|
381 |
|
---|
382 | # Fedora 9 32bit, -client, samevm, Error while cleaning up threads after test
|
---|
383 | java/lang/management/ThreadMXBean/Locks.java generic-all
|
---|
384 |
|
---|
385 | # Need to be marked othervm, or changed to be samevm safe
|
---|
386 | java/lang/management/ClassLoadingMXBean/LoadCounts.java generic-all
|
---|
387 | java/lang/management/ManagementFactory/MBeanServerMXBeanUnsupportedTest.java generic-all
|
---|
388 | java/lang/management/ManagementFactory/MXBeanProxyTest.java generic-all
|
---|
389 | java/lang/management/ManagementFactory/ThreadMXBeanProxy.java generic-all
|
---|
390 | java/lang/management/MemoryMXBean/CollectionUsageThreshold.java generic-all
|
---|
391 | java/lang/management/MemoryMXBean/GetMBeanInfo.java generic-all
|
---|
392 | java/lang/management/MemoryMXBean/LowMemoryTest.java generic-all
|
---|
393 | java/lang/management/MemoryMXBean/MemoryManagement.java generic-all
|
---|
394 | java/lang/management/MemoryMXBean/MemoryTest.java generic-all
|
---|
395 | java/lang/management/MemoryMXBean/Pending.java generic-all
|
---|
396 |
|
---|
397 | # Problematic on all platforms (even as othervm)
|
---|
398 | java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java generic-all
|
---|
399 |
|
---|
400 | # Causes jtreg exit samevm issues due to non-String object in system properties
|
---|
401 | java/lang/management/RuntimeMXBean/GetSystemProperties.java generic-all
|
---|
402 |
|
---|
403 | # Need to be marked othervm, or changed to be samevm safe
|
---|
404 | java/lang/management/RuntimeMXBean/PropertiesTest.java generic-all
|
---|
405 | java/lang/management/ThreadMXBean/AllThreadIds.java generic-all
|
---|
406 | java/lang/management/ThreadMXBean/EnableTest.java generic-all
|
---|
407 | java/lang/management/ThreadMXBean/FindMonitorDeadlock.java generic-all
|
---|
408 | java/lang/management/ThreadMXBean/LockingThread.java generic-all
|
---|
409 | java/lang/management/ThreadMXBean/MonitorDeadlock.java generic-all
|
---|
410 | java/lang/management/ThreadMXBean/MyOwnSynchronizer.java generic-all
|
---|
411 | java/lang/management/ThreadMXBean/SharedSynchronizer.java generic-all
|
---|
412 | java/lang/management/ThreadMXBean/SynchronizerLockingThread.java generic-all
|
---|
413 | java/lang/management/ThreadMXBean/ThreadCounts.java generic-all
|
---|
414 |
|
---|
415 | # Need to be marked othervm, or changed to be samevm safe
|
---|
416 | java/lang/reflect/Proxy/Boxing.java generic-all
|
---|
417 | java/lang/reflect/Proxy/ClassRestrictions.java generic-all
|
---|
418 | java/lang/reflect/Proxy/returnTypes/Test.java generic-all
|
---|
419 |
|
---|
420 | # Need to be marked othervm, or changed to be samevm safe
|
---|
421 | java/lang/Runtime/exec/LotsOfOutput.java generic-all
|
---|
422 | java/lang/System/ExitFinalizersAndJIT.java generic-all
|
---|
423 | java/lang/System/finalization/FinThreads.java generic-all
|
---|
424 | java/lang/System/IgnoreNullSecurityManager.java generic-all
|
---|
425 | java/lang/Thread/GenerifyStackTraces.java generic-all
|
---|
426 | java/lang/Thread/StackTraces.java generic-all
|
---|
427 | java/lang/ThreadGroup/Daemon.java generic-all
|
---|
428 |
|
---|
429 | # Times out on solaris sparc -server
|
---|
430 | java/lang/ThreadLocal/MemoryLeak.java solaris-all
|
---|
431 |
|
---|
432 | # Windows X64, RuntimeException: MyThread expected to have RUNNABLE but got WAITING
|
---|
433 | java/lang/Thread/ThreadStateTest.java generic-all
|
---|
434 |
|
---|
435 | ############################################################################
|
---|
436 |
|
---|
437 | # jdk_management
|
---|
438 |
|
---|
439 | # Fails on windows: TEST RESULT: Error. failed to clean up files after test
|
---|
440 | javax/management/loading/LibraryLoader/LibraryLoaderTest.java windows-all
|
---|
441 |
|
---|
442 | # Fails on Solaris 10 sparc
|
---|
443 | # NoClassDefFoundError: javax/rmi/GetORBPropertiesFileAction$1
|
---|
444 | # at javax.rmi.GetORBPropertiesFileAction.getSystemProperty(PortableRemoteObject.java:230)
|
---|
445 | javax/management/remote/mandatory/connection/FailedConnectionTest.java generic-all
|
---|
446 | javax/management/remote/mandatory/connection/IIOPURLTest.java generic-all
|
---|
447 | javax/management/remote/mandatory/connection/IdleTimeoutTest.java generic-all
|
---|
448 |
|
---|
449 | # Fails on Solaris 10 sparc and Solaris 10 x86
|
---|
450 | # java.lang.NoClassDefFoundError: javax/rmi/GetORBPropertiesFileAction$1
|
---|
451 | # at javax.rmi.GetORBPropertiesFileAction.getSystemProperty(PortableRemoteObject.java:230)
|
---|
452 | sun/management/jmxremote/bootstrap/LocalOnlyTest.java generic-all
|
---|
453 | sun/management/jmxremote/bootstrap/RmiSslNoKeyStoreTest.sh generic-all
|
---|
454 |
|
---|
455 | # Fails on Solaris 10 sparc and Solaris 10 x86
|
---|
456 | # java.lang.NoClassDefFoundError: javax/rmi/GetORBPropertiesFileAction$1
|
---|
457 | # at javax.rmi.GetORBPropertiesFileAction.getSystemProperty(PortableRemoteObject.java:230)
|
---|
458 | javax/management/modelmbean/DescriptorSupportSerialTest.java generic-all
|
---|
459 | javax/management/modelmbean/UnserializableTargetObjectTest.java generic-all
|
---|
460 | javax/management/mxbean/GenericArrayTypeTest.java generic-all
|
---|
461 | javax/management/mxbean/MXBeanTest.java generic-all
|
---|
462 | javax/management/proxy/NotificationEmitterProxy.java generic-all
|
---|
463 | javax/management/proxy/ProxyObjectMethodsTest.java generic-all
|
---|
464 | javax/management/remote/mandatory/connection/AddressableTest.java generic-all
|
---|
465 | javax/management/remote/mandatory/connection/BrokenConnectionTest.java generic-all
|
---|
466 | javax/management/remote/mandatory/connection/CloseServerTest.java generic-all
|
---|
467 | javax/management/remote/mandatory/connection/CloseUnconnectedTest.java generic-all
|
---|
468 | javax/management/remote/mandatory/connection/ConnectionTest.java generic-all
|
---|
469 | javax/management/remote/mandatory/connection/DeadLockTest.java generic-all
|
---|
470 | javax/management/remote/mandatory/connection/FailedConnectioent/remote/mandatory/connection/IdleTimeoutTest.java generic-all
|
---|
471 | javax/management/remote/mandatory/connection/MultiOpenCloseTest.java generic-all
|
---|
472 | javax/management/remote/mandatory/connection/RMIConnectionIdTest.java generic-all
|
---|
473 | javax/management/remote/mandatory/connection/RMIExitTest.java generic-all
|
---|
474 | javax/management/remote/mandatory/connection/ReconnectTest.java generic-all
|
---|
475 | javax/management/remote/mandatory/connectorServer/RMIExporterTest.java generic-all
|
---|
476 | javax/management/remote/mandatory/loading/DeserializeEncodedURLTest.java generic-all
|
---|
477 | javax/management/remote/mandatory/loading/MethodResultTest.java generic-all
|
---|
478 | javax/management/remote/mandatory/loading/MissingClassTest.java generic-all
|
---|
479 | javax/management/remote/mandatory/loading/RMIDownloadTest.java generic-all
|
---|
480 | javax/management/remote/mandatory/loading/UserClassLoaderTest.java generic-all
|
---|
481 | javax/management/remote/mandatory/notif/AddRemoveTest.java generic-all
|
---|
482 | javax/management/remote/mandatory/notif/DiffHBTest.java generic-all
|
---|
483 | javax/management/remote/mandatory/notif/EmptyDomainNotificationTest.java generic-all
|
---|
484 | javax/management/remote/mandatory/notif/NotSerializableNotifTest.java generic-all
|
---|
485 | javax/management/remote/mandatory/notif/NotifBufferSizePropertyNameTest.java generic-all
|
---|
486 | javax/management/remote/mandatory/notif/NotifReconnectDeadlockTest.java generic-all
|
---|
487 | javax/management/remote/mandatory/notif/NotificationAccessControllerTest.java generic-all
|
---|
488 | javax/management/remote/mandatory/notif/NotificationBufferCreationTest.java generic-all
|
---|
489 | javax/management/remote/mandatory/notif/NotificationEmissionTest.java generic-all
|
---|
490 | javax/management/remote/mandatory/notif/ServerNotifs.java generic-all
|
---|
491 | javax/management/remote/mandatory/notif/UnexpectedNotifTest.java generic-all
|
---|
492 | javax/management/remote/mandatory/passwordAccessFile/NonJMXPrincipalsTest.java generic-all
|
---|
493 | javax/management/remote/mandatory/passwordAccessFile/PasswordAccessFileTest.java generic-all
|
---|
494 | javax/management/remote/mandatory/provider/ProviderTest.java generic-all
|
---|
495 | javax/management/remote/mandatory/serverError/JMXServerErrorTest.java generic-all
|
---|
496 | javax/management/remote/mandatory/threads/NoServerTimeoutTest.java generic-all
|
---|
497 |
|
---|
498 | # Solaris 10 sparc, NPE from org.omg.stub.javax.management.remote.rmi._RMIConnectionImpl_Tie._invoke
|
---|
499 | javax/management/remote/mandatory/threads/ExecutorTest.java generic-all
|
---|
500 |
|
---|
501 | # Linux 32bit Fedora 9, IllegalStateException
|
---|
502 | javax/management/monitor/RuntimeExceptionTest.java generic-all
|
---|
503 |
|
---|
504 | # Problems with rmi connection, othervm
|
---|
505 | javax/management/remote/mandatory/subjectDelegation/SubjectDelegation2Test.java generic-all
|
---|
506 |
|
---|
507 | # Fails with port already in use
|
---|
508 | sun/management/jmxremote/bootstrap/SSLConfigFilePermissionTest.sh generic-all
|
---|
509 |
|
---|
510 | # Fails with port already in use
|
---|
511 | sun/management/jmxremote/bootstrap/RmiRegistrySslTest.sh generic-all
|
---|
512 |
|
---|
513 | # Linux othervm, X64, java.lang.Exception: Failed: ratio=102.4027795593753
|
---|
514 | javax/management/remote/mandatory/notif/ListenerScaleTest.java generic-all
|
---|
515 |
|
---|
516 | # Windows run seems to have triggered a hotspot gc error (see 6801625)
|
---|
517 | com/sun/management/HotSpotDiagnosticMXBean/DumpHeap.sh generic-all
|
---|
518 |
|
---|
519 | # rmi problem? othervm, java.lang.reflect.UndeclaredThrowableException
|
---|
520 | javax/management/remote/mandatory/subjectDelegation/SubjectDelegation3Test.java generic-all
|
---|
521 |
|
---|
522 | # Linux Fedora 9 32bit NPE in rmi server somehere??? othervm
|
---|
523 | javax/management/remote/mandatory/notif/NotificationBufferDeadlockTest.java generic-all
|
---|
524 |
|
---|
525 | # Port already in use
|
---|
526 | sun/management/jmxremote/bootstrap/LocalManagementTest.sh generic-all
|
---|
527 |
|
---|
528 | # Failed to initialize connector (also overflowing jtreg io buffers)
|
---|
529 | sun/management/jmxremote/bootstrap/RmiBootstrapTest.sh generic-all
|
---|
530 | sun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh generic-all
|
---|
531 |
|
---|
532 | # Windows X64, java.lang.IllegalStateException
|
---|
533 | javax/management/monitor/AttributeArbitraryDataTypeTest.java generic-all
|
---|
534 |
|
---|
535 | ############################################################################
|
---|
536 |
|
---|
537 | # jdk_math
|
---|
538 |
|
---|
539 | # Problems with rounding add failures on solaris-sparcv9 and -server
|
---|
540 | java/math/BigDecimal/AddTests.java solaris-sparcv9
|
---|
541 |
|
---|
542 | # Problems on windows with samevm, missing inputstream close()?
|
---|
543 | # Also times out on solaris-sparcv9 -server
|
---|
544 | java/math/BigInteger/BigIntegerTest.java generic-all
|
---|
545 |
|
---|
546 | # Should be samevm? But seems problematic with samevm on windows
|
---|
547 | java/math/BigInteger/ModPow65537.java generic-all
|
---|
548 |
|
---|
549 | ############################################################################
|
---|
550 |
|
---|
551 | # jdk_misc
|
---|
552 |
|
---|
553 | # Fails on OpenSolaris
|
---|
554 | com/sun/java/swing/plaf/nimbus/Test6741426.java generic-all
|
---|
555 | com/sun/java/swing/plaf/nimbus/Test6849805.java generic-all
|
---|
556 | com/sun/org/apache/xml/internal/ws/server/Test.java generic-all
|
---|
557 |
|
---|
558 | # Need to be marked othervm, or changed to be samevm safe
|
---|
559 | com/sun/jndi/ldap/ReadTimeoutTest.java generic-all
|
---|
560 | com/sun/jndi/rmi/registry/RegistryContext/UnbindIdempotent.java generic-all
|
---|
561 |
|
---|
562 | # Need to be marked othervm, or changed to be samevm safe
|
---|
563 | com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
|
---|
564 |
|
---|
565 | # Leaves file rgba_* open, fails with windows samevm
|
---|
566 | javax/imageio/plugins/png/PngOutputTypeTest.java generic-all
|
---|
567 |
|
---|
568 | # One of these tests is leaving file IMGP1001.JPG open, windows samevm
|
---|
569 | javax/imageio/plugins/jpeg/ConcurrentReadingTest.java generic-all
|
---|
570 | javax/imageio/plugins/jpeg/ReadingInterruptionTest.java generic-all
|
---|
571 |
|
---|
572 | # One of these files is missing a close on writer_* files, windows samevm
|
---|
573 | javax/imageio/plugins/jpeg/ConcurrentWritingTest.java generic-all
|
---|
574 | javax/imageio/plugins/jpeg/WritingInterruptionTest.java generic-all
|
---|
575 |
|
---|
576 | # Exclude all javax/print tests, even if they passed, they may need samevm work
|
---|
577 |
|
---|
578 | # Times out on solaris-sparc, sparcv9, x64 -server, some on i586 -client
|
---|
579 | javax/print/attribute/CollateAttr.java generic-all
|
---|
580 | javax/print/attribute/PSCopiesFlavorTest.java generic-all
|
---|
581 |
|
---|
582 | # Only print test left, excluding just because all print tests have been
|
---|
583 | javax/print/attribute/MediaMappingsTest.java generic-all
|
---|
584 |
|
---|
585 | ############################################################################
|
---|
586 |
|
---|
587 | # jdk_net
|
---|
588 |
|
---|
589 | # Suspect many of these tests auffer from using fixed ports, no concrete
|
---|
590 | # evidence.
|
---|
591 |
|
---|
592 | # Failing 7060203 SocketException: maximum number of DatagramSockets reached
|
---|
593 | java/net/DatagramSocket/BindFailTest.java windows-all
|
---|
594 | java/net/DatagramSocket/ImplicitBind.java windows-all
|
---|
595 | java/net/DatagramSocket/InheritHandle.java windows-all
|
---|
596 | java/net/DatagramSocket/PortUnreachable.java windows-all
|
---|
597 | java/net/DatagramSocket/ReportSocketClosed.java windows-all
|
---|
598 | java/net/DatagramSocket/Send12k.java windows-all
|
---|
599 | java/net/DatagramSocket/SendDatagramToBadAddress.java windows-all
|
---|
600 | java/net/DatagramSocket/SetReceiveBufferSize.java windows-all
|
---|
601 | java/net/DatagramSocketImpl/CheckDiscard.java windows-all
|
---|
602 | java/net/InetAddress/IsReachable.java windows-all
|
---|
603 |
|
---|
604 | # Fails on OpenSolaris, see 7032247
|
---|
605 | java/net/InetAddress/GetLocalHostWithSM.java generic-all
|
---|
606 |
|
---|
607 | # Fails on OpenSolaris, see 6935199
|
---|
608 | java/net/CookieHandler/TestHttpCookie.java generic-all
|
---|
609 |
|
---|
610 | # Fails on OpenSolaris, see 6423396
|
---|
611 | com/sun/net/httpserver/bugs/B6373555.java generic-all
|
---|
612 |
|
---|
613 | # Fails on Linux Fedora 9, 32bit and 64bit, Windows 2000 & 2003/X64
|
---|
614 | # samevm "cleaning up threads" issue, kind of passes,
|
---|
615 | # then jtreg says: Error while cleaning up threads after test
|
---|
616 | # Could this be a hotspot issue? Or tests that need to be marked othervm?
|
---|
617 | sun/net/www/protocol/http/Finalizer.java generic-all
|
---|
618 | sun/net/www/protocol/http/RetryUponTimeout.java generic-all
|
---|
619 |
|
---|
620 | # Fails on OpenSolaris
|
---|
621 | java/net/NetworkInterface/NetParamsTest.java generic-all
|
---|
622 | sun/net/www/AuthHeaderTest.java generic-all
|
---|
623 | sun/net/www/protocol/http/HttpInputStream.java generic-all
|
---|
624 | sun/net/www/protocol/http/Modified.java generic-all
|
---|
625 | sun/net/www/protocol/http/ProtocolRedirect.java generic-all
|
---|
626 | sun/net/www/protocol/http/SetChunkedStreamingMode.java generic-all
|
---|
627 | sun/net/www/protocol/http/SetIfModifiedSince.java generic-all
|
---|
628 |
|
---|
629 | # Fails on OpenSolaris, BindException unexpected
|
---|
630 | java/net/BindException/Test.java generic-all
|
---|
631 |
|
---|
632 | # Fails on OpenSolaris, times out
|
---|
633 | java/net/MulticastSocket/SetOutgoingIf.java generic-all
|
---|
634 |
|
---|
635 | # Timed out on Solaris 10 X86.
|
---|
636 | com/sun/net/httpserver/Test3.java generic-all
|
---|
637 |
|
---|
638 | # Exception in test on windows
|
---|
639 | com/sun/net/httpserver/bugs/B6373555.java windows-all
|
---|
640 |
|
---|
641 | # One of these pollutes the samevm on Linux, too many open files, kills jtreg
|
---|
642 | com/sun/net/httpserver/bugs/B6339483.java generic-all
|
---|
643 | com/sun/net/httpserver/bugs/B6341616.java generic-all
|
---|
644 |
|
---|
645 | # Suspects in cascading samevm problem, solaris 11 i586 (needs othervm?)
|
---|
646 | # Suspect use of setHttps*()?
|
---|
647 | com/sun/net/httpserver/SelCacheTest.java generic-all
|
---|
648 | com/sun/net/httpserver/Test1.java generic-all
|
---|
649 | com/sun/net/httpserver/Test12.java generic-all
|
---|
650 | com/sun/net/httpserver/Test13.java generic-all
|
---|
651 | com/sun/net/httpserver/Test6a.java generic-all
|
---|
652 | com/sun/net/httpserver/Test7a.java generic-all
|
---|
653 | com/sun/net/httpserver/Test8a.java generic-all
|
---|
654 | com/sun/net/httpserver/Test9.java generic-all
|
---|
655 | com/sun/net/httpserver/Test9a.java generic-all
|
---|
656 |
|
---|
657 | # 10,000 connections, fails on Linux and makes tests&jtreg fail with samevm
|
---|
658 | com/sun/net/httpserver/bugs/B6361557.java generic-all
|
---|
659 |
|
---|
660 | # Address already in use with samevm? Always? Solaris sparc, probably ports
|
---|
661 | java/net/Authenticator/B4933582.sh generic-all
|
---|
662 | java/net/DatagramSocket/SendSize.java generic-all
|
---|
663 |
|
---|
664 | # Not closing stream on file i6a1, windows samevm problem
|
---|
665 | java/net/Inet6Address/serialize/Serialize.java generic-all
|
---|
666 |
|
---|
667 | # Linux x64 fails "network unreachable"?
|
---|
668 | java/net/ipv6tests/TcpTest.java generic-all
|
---|
669 |
|
---|
670 | # Linux i586, fails with unexpected output
|
---|
671 | java/net/MulticastSocket/NoLoopbackPackets.java linux-i586
|
---|
672 |
|
---|
673 | # Times out on windows x64, fails with samevm on solaris 11 i586
|
---|
674 | java/net/ServerSocket/AcceptCauseFileDescriptorLeak.java generic-all
|
---|
675 |
|
---|
676 | # Address already in use
|
---|
677 | java/net/DatagramSocket/DatagramTimeout.java generic-all
|
---|
678 |
|
---|
679 | # Fails on windows, takes too long and fails
|
---|
680 | # Solaris 10 sparcv9, samevm, java.lang.Exception: Takes too long. Dead lock
|
---|
681 | java/net/Socket/DeadlockTest.java generic-all
|
---|
682 |
|
---|
683 | # Linux i586 address already in use or connection error, samevm issues
|
---|
684 | java/net/Socket/AccurateTimeout.java generic-all
|
---|
685 | java/net/Socket/asyncClose/BrokenPipe.java generic-all
|
---|
686 | java/net/Socket/CloseAvailable.java generic-all
|
---|
687 | java/net/Socket/FDClose.java generic-all
|
---|
688 |
|
---|
689 | # Linux X64 address already in use, samevm issues
|
---|
690 | java/net/Socket/LingerTest.java generic-all
|
---|
691 | java/net/Socket/LinkLocal.java generic-all
|
---|
692 | java/net/Socket/NullHost.java generic-all
|
---|
693 | java/net/Socket/ProxyCons.java generic-all
|
---|
694 | java/net/Socket/ReadTimeout.java generic-all
|
---|
695 |
|
---|
696 | # Linux X64 address already in use, samevm issues
|
---|
697 | java/net/Socket/SetReceiveBufferSize.java generic-all
|
---|
698 |
|
---|
699 | # Linux i586 address already in use or connection error, samevm issues
|
---|
700 | java/net/Socket/setReuseAddress/Basic.java generic-all
|
---|
701 | java/net/Socket/setReuseAddress/Restart.java generic-all
|
---|
702 |
|
---|
703 | # Linux X64 address already in use, samevm issues
|
---|
704 | java/net/Socket/SetSoLinger.java generic-all
|
---|
705 |
|
---|
706 | # Address already in use, windows samevm
|
---|
707 | java/net/Socket/Timeout.java generic-all
|
---|
708 |
|
---|
709 | # Linux X64 address already in use, samevm issues
|
---|
710 | java/net/Socket/ShutdownBoth.java generic-all
|
---|
711 | java/net/Socket/SoTimeout.java generic-all
|
---|
712 | java/net/Socket/TestClose.java generic-all
|
---|
713 | java/net/Socket/UrgentDataTest.java generic-all
|
---|
714 | java/net/SocketInputStream/SocketClosedException.java generic-all
|
---|
715 | java/net/SocketInputStream/SocketTimeout.java generic-all
|
---|
716 |
|
---|
717 | # Linux i586, address already in use or timeout, samevm issues
|
---|
718 | java/net/URLConnection/contentHandler/UserContentHandler.java generic-all
|
---|
719 | java/net/URLConnection/DisconnectAfterEOF.java generic-all
|
---|
720 | java/net/URLConnection/HandleContentTypeWithAttrs.java generic-all
|
---|
721 | java/net/URLConnection/Responses.java generic-all
|
---|
722 | java/net/URLConnection/TimeoutTest.java generic-all
|
---|
723 | java/net/URLConnection/ZeroContentLength.java generic-all
|
---|
724 |
|
---|
725 | # Solaris 11 i586 fails with samevm, not sure why
|
---|
726 | java/net/Authenticator/B4769350.java generic-all
|
---|
727 | java/net/HttpURLConnection/HttpResponseCode.java generic-all
|
---|
728 | java/net/ResponseCache/B6181108.java generic-all
|
---|
729 | java/net/ResponseCache/ResponseCacheTest.java generic-all
|
---|
730 | java/net/URL/GetContent.java generic-all
|
---|
731 | java/net/URL/TestIPv6Addresses.java generic-all
|
---|
732 | java/net/URLClassLoader/HttpTest.java generic-all
|
---|
733 | java/net/URLConnection/HttpContinueStackOverflow.java generic-all
|
---|
734 | java/net/URLConnection/Redirect307Test.java generic-all
|
---|
735 | java/net/URLConnection/RedirectLimit.java generic-all
|
---|
736 | java/net/URLConnection/ResendPostBody.java generic-all
|
---|
737 | java/net/URL/OpenStream.java generic-all
|
---|
738 | java/net/URLClassLoader/ClassLoad.java generic-all
|
---|
739 | java/net/URLConnection/SetIfModifiedSince.java generic-all
|
---|
740 | java/net/URLConnection/URLConnectionHeaders.java generic-all
|
---|
741 |
|
---|
742 | # Linux i586 Connection refused or address already in use, samevm issues
|
---|
743 | sun/net/ftp/B6427768.java generic-all
|
---|
744 | sun/net/ftp/FtpGetContent.java generic-all
|
---|
745 | sun/net/ftp/FtpURL.java generic-all
|
---|
746 |
|
---|
747 | # Failed on solaris 10 i586, Exception: should have gotten HttpRetryException?
|
---|
748 | sun/net/www/http/ChunkedOutputStream/Test.java generic-all
|
---|
749 |
|
---|
750 | # Trouble cleaning up threads in samevm mode on solaris 11 i586
|
---|
751 | sun/net/www/http/HttpClient/ProxyTest.java generic-all
|
---|
752 | sun/net/www/http/ChunkedInputStream/ChunkedEncodingTest.java generic-all
|
---|
753 | sun/net/www/http/ChunkedInputStream/ChunkedEncodingWithProgressMonitorTest.java generic-all
|
---|
754 | sun/net/www/http/HttpClient/MultiThreadTest.java generic-all
|
---|
755 | sun/net/www/http/KeepAliveCache/KeepAliveTimerThread.java generic-all
|
---|
756 |
|
---|
757 | # Connection refused, windows samevm
|
---|
758 | sun/net/www/protocol/http/DigestTest.java generic-all
|
---|
759 |
|
---|
760 | ############################################################################
|
---|
761 |
|
---|
762 | # jdk_nio
|
---|
763 |
|
---|
764 | # Fails on Windows: 7012823
|
---|
765 | java/nio/MappedByteBuffer/Force.java windows-all
|
---|
766 |
|
---|
767 | # Fails on OpenSolaris, see 6983794
|
---|
768 | java/nio/channels/Selector/ConnectWrite.java generic-all
|
---|
769 |
|
---|
770 | # Unused Charset subclass: sun.nio.cs.ext.MS932DB RuntimeException
|
---|
771 | java/nio/charset/Charset/NIOCharsetAvailabilityTest.java generic-all
|
---|
772 |
|
---|
773 | # java.io.UnsupportedEncodingException: MS932_0213
|
---|
774 | sun/nio/cs/TestSJIS0213.java generic-all
|
---|
775 |
|
---|
776 | # Timeout on linux (Fedora 9)
|
---|
777 | java/nio/channels/DatagramChannel/Sender.java generic-all
|
---|
778 |
|
---|
779 | # Suspect many of these tests auffer from using fixed ports, no concrete
|
---|
780 | # evidence.
|
---|
781 |
|
---|
782 | # Fails on Windows 2000, Can't delete test directory .\x.SetLastModified.dir
|
---|
783 | # at SetLastModified.main(SetLastModified.java:107)
|
---|
784 | java/io/File/SetLastModified.java generic-all
|
---|
785 |
|
---|
786 | # Fails on Windows 2000, run.sh 40: save: fork_level=1 SetHandleInformation()
|
---|
787 | # failed: fd 0 handle 0x23fc type 0: The handle is invalid.
|
---|
788 | java/io/Serializable/evolution/RenamePackage/run.sh generic-all
|
---|
789 |
|
---|
790 | # Fails on Windows 2000, Execution failed: exit code 125
|
---|
791 | java/io/Serializable/serialver/classpath/run.sh generic-all
|
---|
792 |
|
---|
793 | # Fails on Solaris x86, times out.
|
---|
794 | java/nio/channels/SocketChannel/AsyncCloseChannel.java generic-all
|
---|
795 |
|
---|
796 | # Fails on Solaris 10 x86 BindException: Address already in use
|
---|
797 | java/nio/channels/DatagramChannel/SRTest.java generic-all
|
---|
798 |
|
---|
799 | # Fails on Solaris 8 x86, java.io.IOException: File too large
|
---|
800 | java/io/File/Basic.java generic-all
|
---|
801 |
|
---|
802 | # Fails on Solaris 8 x86, java.io.IOException: File too large
|
---|
803 | java/nio/channels/FileChannel/Size.java generic-all
|
---|
804 | java/nio/channels/FileChannel/Transfer.java generic-all
|
---|
805 |
|
---|
806 | # Fails on OpenSolaris, times out
|
---|
807 | java/nio/channels/DatagramChannel/AdaptDatagramSocket.java generic-all
|
---|
808 |
|
---|
809 | # Fails on OpenSolaris, various reasons, consustent failures, othervm
|
---|
810 | java/nio/Buffer/Basic.java generic-all
|
---|
811 | java/nio/channels/Channels/ReadOffset.java generic-all
|
---|
812 | java/nio/channels/FileChannel/Truncate.java generic-all
|
---|
813 | java/nio/channels/SelectionKey/AtomicAttachTest.java generic-all
|
---|
814 | java/nio/channels/Selector/WakeupAfterClose.java generic-all
|
---|
815 | java/nio/channels/SocketChannel/UnboundSocketTests.java generic-all
|
---|
816 |
|
---|
817 | # Triggers a hotspot crash on Fedora 9 32bit -server and Windows X64 samevm
|
---|
818 | sun/nio/cs/TestUTF8.java generic-all
|
---|
819 |
|
---|
820 | # Solaris sparc, socket timeout
|
---|
821 | java/nio/channels/spi/SelectorProvider/inheritedChannel/run_tests.sh generic-all
|
---|
822 |
|
---|
823 | # Runtime exception on windows X64, samevm mode
|
---|
824 | java/nio/channels/Selector/WakeupNow.java generic-all
|
---|
825 |
|
---|
826 | # Occasional errors, solarix x86, address already in use, othervm mode
|
---|
827 | java/nio/channels/Selector/SelectorTest.java generic-all
|
---|
828 |
|
---|
829 | # Timeouts etc. on Window
|
---|
830 | java/nio/channels/AsyncCloseAndInterrupt.java windows-all
|
---|
831 |
|
---|
832 | # Solaris sparc timeout
|
---|
833 | java/nio/channels/DatagramChannel/Connect.java generic-all
|
---|
834 |
|
---|
835 | # Solaris i586 timeouts
|
---|
836 | java/nio/channels/DatagramChannel/EmptyBuffer.java solaris-all
|
---|
837 |
|
---|
838 | # Gets java.lang.ExceptionInInitializerError on windows: (Windows 2000 only?)
|
---|
839 | java/nio/channels/FileChannel/Transfer.java windows-5.0
|
---|
840 |
|
---|
841 | # Failed loopback connection? On windows 32bit?
|
---|
842 | # Considered a stress test, can consume all resources.
|
---|
843 | java/nio/channels/Selector/LotsOfChannels.java generic-all
|
---|
844 |
|
---|
845 | # Solaris sparcv9, just fails with exception
|
---|
846 | java/nio/channels/Selector/OpRead.java solaris-sparc
|
---|
847 |
|
---|
848 | # Windows i586 client, crashed hotspot? Unpredictable
|
---|
849 | # Considered a stress test, can consume all resources.
|
---|
850 | java/nio/channels/Selector/RegAfterPreClose.java generic-all
|
---|
851 |
|
---|
852 | # Gets java.net.BindException alot (static port number?)
|
---|
853 | java/nio/channels/Selector/SelectAfterRead.java generic-all
|
---|
854 |
|
---|
855 | # Solaris i586, cannot assign address, samevm issues
|
---|
856 | java/nio/channels/Selector/SelectorLimit.java generic-all
|
---|
857 |
|
---|
858 | # Socket timeout windows X64
|
---|
859 | java/nio/channels/ServerSocketChannel/AdaptServerSocket.java windows-all
|
---|
860 |
|
---|
861 | # Solaris i586, cannot assign address, samevm issues
|
---|
862 | java/nio/channels/SocketChannel/CloseAfterConnect.java generic-all
|
---|
863 | java/nio/channels/SocketChannel/CloseRegisteredChannel.java generic-all
|
---|
864 |
|
---|
865 | # Timeouts etc. on Window
|
---|
866 | java/nio/channels/SocketChannel/ConnectState.java windows-all
|
---|
867 | java/nio/channels/SocketChannel/FinishConnect.java windows-all
|
---|
868 |
|
---|
869 | # Need to be marked othervm, or changed to be samevm safe
|
---|
870 | java/nio/channels/SocketChannel/OpenLeak.java generic-all
|
---|
871 |
|
---|
872 | # Solaris i586 java.net.BindExceptions
|
---|
873 | java/nio/channels/SocketChannel/Shutdown.java solaris-all
|
---|
874 | java/nio/channels/SocketChannel/Stream.java solaris-all
|
---|
875 |
|
---|
876 | # Gets java.net.BindException alot (static port number?)
|
---|
877 | java/nio/channels/SocketChannel/VectorIO.java generic-all
|
---|
878 |
|
---|
879 | # Solaris i586 java.net.BindExceptions
|
---|
880 | java/nio/channels/SocketChannel/VectorParams.java solaris-all
|
---|
881 |
|
---|
882 | # Linux i586 address already in use, samevm issues
|
---|
883 | java/nio/channels/SocketChannel/Write.java generic-all
|
---|
884 |
|
---|
885 | ############################################################################
|
---|
886 |
|
---|
887 | # jdk_rmi
|
---|
888 |
|
---|
889 | # Port already in use, fails on sparc, othervm
|
---|
890 | java/rmi/reliability/benchmark/runRmiBench.sh generic-all
|
---|
891 |
|
---|
892 | # Already in use port issues? othervm solaris
|
---|
893 | java/rmi/activation/rmidViaInheritedChannel/InheritedChannelNotServerSocket.java generic-all
|
---|
894 | java/rmi/activation/rmidViaInheritedChannel/RmidViaInheritedChannel.java generic-all
|
---|
895 |
|
---|
896 | # Address already in use, othervm mode, solaris
|
---|
897 | java/rmi/activation/Activatable/elucidateNoSuchMethod/ElucidateNoSuchMethod.java generic-all
|
---|
898 | java/rmi/activation/Activatable/forceLogSnapshot/ForceLogSnapshot.java generic-all
|
---|
899 |
|
---|
900 | # Registry already running on port, solaris
|
---|
901 | java/rmi/Naming/legalRegistryNames/LegalRegistryNames.java generic-all
|
---|
902 |
|
---|
903 | # Fails on Linux 32 and 64bit -server?, impl not garbage collected???
|
---|
904 | java/rmi/transport/pinLastArguments/PinLastArguments.java generic-all
|
---|
905 |
|
---|
906 | # Times out on solaris sparc
|
---|
907 | java/rmi/server/RemoteServer/AddrInUse.java generic-all
|
---|
908 |
|
---|
909 | # Connection error on Windows i586 -server
|
---|
910 | # Also connection errors in othervm on Solaris 10 sparc, same port???
|
---|
911 | sun/rmi/transport/tcp/DeadCachedConnection.java generic-all
|
---|
912 |
|
---|
913 | # Connection errors in othervm on Solaris 10 sparc, same port???
|
---|
914 | java/rmi/activation/Activatable/checkActivateRef/CheckActivateRef.java generic-all
|
---|
915 | java/rmi/activation/Activatable/checkAnnotations/CheckAnnotations.java generic-all
|
---|
916 | java/rmi/activation/Activatable/checkImplClassLoader/CheckImplClassLoader.java generic-all
|
---|
917 | java/rmi/activation/Activatable/checkRegisterInLog/CheckRegisterInLog.java generic-all
|
---|
918 | java/rmi/activation/Activatable/createPrivateActivable/CreatePrivateActivatable.java generic-all
|
---|
919 | java/rmi/activation/Activatable/downloadParameterClass/DownloadParameterClass.java generic-all
|
---|
920 | java/rmi/activation/Activatable/extLoadedImpl/ext.sh generic-all
|
---|
921 | java/rmi/activation/Activatable/inactiveGroup/InactiveGroup.java generic-all
|
---|
922 | java/rmi/activation/Activatable/lookupActivationSystem/LookupActivationSystem.java generic-all
|
---|
923 | java/rmi/activation/Activatable/nestedActivate/NestedActivate.java generic-all
|
---|
924 | java/rmi/activation/Activatable/restartCrashedService/RestartCrashedService.java generic-all
|
---|
925 | java/rmi/activation/Activatable/restartLatecomer/RestartLatecomer.java generic-all
|
---|
926 | java/rmi/activation/Activatable/shutdownGracefully/ShutdownGracefully.java generic-all
|
---|
927 | java/rmi/activation/Activatable/unregisterInactive/UnregisterInactive.java generic-all
|
---|
928 | java/rmi/activation/ActivateFailedException/activateFails/ActivateFails.java generic-all
|
---|
929 | java/rmi/activation/ActivationGroup/downloadActivationGroup/DownloadActivationGroup.java generic-all
|
---|
930 | java/rmi/activation/ActivationSystem/activeGroup/IdempotentActiveGroup.java generic-all
|
---|
931 | java/rmi/reliability/juicer/AppleUserImpl.java generic-all
|
---|
932 | java/rmi/server/RMISocketFactory/useSocketFactory/unicast/UseCustomSocketFactory.java generic-all
|
---|
933 | java/rmi/server/UnicastRemoteObject/keepAliveDuringCall/KeepAliveDuringCall.java generic-all
|
---|
934 | java/rmi/transport/handshakeTimeout/HandshakeTimeout.java generic-all
|
---|
935 | java/rmi/activation/Activatable/restartService/RestartService.java generic-all
|
---|
936 | java/rmi/activation/ActivationSystem/modifyDescriptor/ModifyDescriptor.java generic-all
|
---|
937 | java/rmi/activation/ActivationSystem/stubClassesPermitted/StubClassesPermitted.java generic-all
|
---|
938 | java/rmi/activation/ActivationSystem/unregisterGroup/UnregisterGroup.java generic-all
|
---|
939 | java/rmi/activation/CommandEnvironment/SetChildEnv.java generic-all
|
---|
940 | java/rmi/registry/classPathCodebase/ClassPathCodebase.java generic-all
|
---|
941 | java/rmi/registry/reexport/Reexport.java generic-all
|
---|
942 | java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java generic-all
|
---|
943 | java/rmi/server/Unreferenced/leaseCheckInterval/LeaseCheckInterval.java generic-all
|
---|
944 | java/rmi/server/Unreferenced/unreferencedContext/UnreferencedContext.java generic-all
|
---|
945 | java/rmi/server/useCustomRef/UseCustomRef.java generic-all
|
---|
946 | java/rmi/transport/checkFQDN/CheckFQDN.java generic-all
|
---|
947 | java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all
|
---|
948 | java/rmi/server/RMISocketFactory/useSocketFactory/activatable/UseCustomSocketFactory.java generic-all
|
---|
949 | java/rmi/server/RMISocketFactory/useSocketFactory/registry/UseCustomSocketFactory.java generic-all
|
---|
950 | java/rmi/server/UnicastRemoteObject/unexportObject/UnexportLeak.java generic-all
|
---|
951 |
|
---|
952 | ############################################################################
|
---|
953 |
|
---|
954 | # jdk_security
|
---|
955 |
|
---|
956 | # Lost provider? 7052537:
|
---|
957 | # java.security.NoSuchAlgorithmException: RSA KeyPairGenerator not available
|
---|
958 | java/security/SignedObject/Correctness.java generic-all
|
---|
959 |
|
---|
960 | # Fails on OpenSolaris, see 7032257
|
---|
961 | sun/security/pkcs11/ec/ReadCertificates.java generic-all
|
---|
962 | sun/security/pkcs11/ec/ReadPKCS12.java generic-all
|
---|
963 | sun/security/pkcs11/ec/TestCurves.java generic-all
|
---|
964 | sun/security/pkcs11/ec/TestECDSA.java generic-all
|
---|
965 | sun/security/pkcs11/ec/TestECGenSpec.java generic-all
|
---|
966 | sun/security/pkcs11/ec/TestKeyFactory.java generic-all
|
---|
967 | sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsURLConnection/CriticalSubjectAltName.java generic-all
|
---|
968 | sun/security/validator/CertReplace.java generic-all
|
---|
969 |
|
---|
970 | # java.security.cert.CertificateException: Certificate contains unsupported critical extensions: [2.5.29.17]
|
---|
971 | sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/DNSIdentities.java generic-all
|
---|
972 | sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/IPAddressIPIdentities.java generic-all
|
---|
973 | sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/IPIdentities.java generic-all
|
---|
974 | sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/Identities.java generic-all
|
---|
975 |
|
---|
976 | # jarsigner: unable to sign jar: java.io.IOException: invalid header field
|
---|
977 | sun/security/tools/jarsigner/emptymanifest.sh generic-all
|
---|
978 |
|
---|
979 | # Fails almost everywhere: Unexpected exit from test [exit code: 1]
|
---|
980 | com/sun/crypto/provider/KeyFactory/TestProviderLeak.java generic-all
|
---|
981 |
|
---|
982 | # Fails everywhere: java.lang.Exception: Function #1 check fails
|
---|
983 | # at StartDateTest.main(StartDateTest.java:63)
|
---|
984 | sun/security/tools/keytool/StartDateTest.java generic-all
|
---|
985 |
|
---|
986 | # Run too slow on Solaris 10 sparc
|
---|
987 | sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/SSLSocketTimeoutNulls.java solaris-sparc
|
---|
988 | sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ClientTimeout.java solaris-sparc
|
---|
989 | sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ServerTimeout.java solaris-sparc
|
---|
990 | sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/ReadTimeout.java solaris-sparc
|
---|
991 | sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/NotifyHandshakeTest.sh solaris-sparc
|
---|
992 | sun/security/tools/keytool/AltProviderPath.sh solaris-sparc
|
---|
993 |
|
---|
994 | # OpenSolaris, fails to compile when run with -samevm
|
---|
995 | sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/CheckMethods.java generic-all
|
---|
996 |
|
---|
997 | # Solaris 10 sparc, passed/failed confusion? java.security.ProviderException: update() failed
|
---|
998 | sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/AsyncSSLSocketClose.java generic-all
|
---|
999 |
|
---|
1000 | # Seem really slow on Solaris sparc, being excluded just for timing reasons
|
---|
1001 | sun/security/tools/jarsigner/AlgOptions.sh solaris-sparc
|
---|
1002 | sun/security/provider/PolicyFile/getinstance/getinstance.sh solaris-sparc
|
---|
1003 |
|
---|
1004 | # Timed out, Solaris 10 64bit sparcv9
|
---|
1005 | com/sun/crypto/provider/Cipher/DES/PaddingTest.java generic-all
|
---|
1006 |
|
---|
1007 | # Othervm, sparc, NoRouteToHostException: Cannot assign requested address
|
---|
1008 | sun/security/ssl/javax/net/ssl/NewAPIs/SessionCacheSizeTests.java generic-all
|
---|
1009 |
|
---|
1010 | # ProviderException: sun.security.pkcs11.wrapper.PKCS11Exception: CKR_DEVICE_ERROR
|
---|
1011 | # Does not seem to run on windows machines? dll missing?
|
---|
1012 | sun/security/pkcs11/rsa/TestKeyPairGenerator.java generic-all
|
---|
1013 |
|
---|
1014 | # Times out on windows X64, othervm mode
|
---|
1015 | # Solaris sparc and sparcv9 -server, timeout
|
---|
1016 | sun/security/ssl/javax/net/ssl/NewAPIs/SessionTimeOutTests.java generic-all
|
---|
1017 |
|
---|
1018 | # Various failures on Linux Fedora 9 X64, othervm mode
|
---|
1019 | lib/security/cacerts/VerifyCACerts.java generic-all
|
---|
1020 | sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/TestAllSuites.java generic-all
|
---|
1021 | sun/security/ssl/sanity/ciphersuites/CheckCipherSuites.java generic-all
|
---|
1022 | sun/security/tools/jarsigner/oldsig.sh generic-all
|
---|
1023 |
|
---|
1024 | # Various failures on Linux Fedora 9 X64, othervm mode
|
---|
1025 | # Does not seem to run on windows machines? dll missing?
|
---|
1026 | sun/security/ssl/sanity/interop/ClientJSSEServerJSSE.java generic-all
|
---|
1027 |
|
---|
1028 | # Linux i586 -server, buffer too short to hold shared secret?
|
---|
1029 | com/sun/crypto/provider/KeyAgreement/DHKeyAgreement2.java generic-all
|
---|
1030 |
|
---|
1031 | # Timeout on solaris-sparcv9 or exception thrown
|
---|
1032 | com/sun/crypto/provider/Cipher/RSA/TestOAEP_KAT.java solaris-all
|
---|
1033 |
|
---|
1034 | # Leaving file open: SerialVersion.current, windows samevm
|
---|
1035 | java/security/BasicPermission/SerialVersion.java generic-all
|
---|
1036 |
|
---|
1037 | # Solaris 11 i586, these all fail with samevm, need to be othervm???
|
---|
1038 | java/security/BasicPermission/NullOrEmptyName.java generic-all
|
---|
1039 |
|
---|
1040 | # Suspect missing close() on file PermClass.current, windows samevm cascade
|
---|
1041 | java/security/BasicPermission/PermClass.java generic-all
|
---|
1042 |
|
---|
1043 | # Solaris 11 i586, these all fail with samevm, need to be othervm???
|
---|
1044 | java/security/KeyPairGenerator/Failover.java generic-all
|
---|
1045 | java/security/Provider/DefaultPKCS11.java generic-all
|
---|
1046 | java/security/SecureClassLoader/DefineClassByteBuffer.java generic-all
|
---|
1047 | java/security/SecureRandom/GetAlgorithm.java generic-all
|
---|
1048 | java/security/Security/removing/RemoveProviders.java generic-all
|
---|
1049 | java/security/Signature/ByteBuffers.java generic-all
|
---|
1050 | java/security/Signature/NONEwithRSA.java generic-all
|
---|
1051 | java/security/Signature/SignWithOutputBuffer.java generic-all
|
---|
1052 | java/security/Signature/TestInitSignWithMyOwnRandom.java generic-all
|
---|
1053 | java/security/UnresolvedPermission/AccessorMethods.java generic-all
|
---|
1054 | java/security/UnresolvedPermission/Equals.java generic-all
|
---|
1055 |
|
---|
1056 | # Problems with windows x64
|
---|
1057 | sun/security/mscapi/IsSunMSCAPIAvailable.sh windows-x64
|
---|
1058 | sun/security/mscapi/RSAEncryptDecrypt.sh windows-x64
|
---|
1059 |
|
---|
1060 | # Do not seem to run on windows machines? dll missing?
|
---|
1061 | sun/security/pkcs11/Cipher/ReinitCipher.java windows-all
|
---|
1062 | sun/security/pkcs11/Cipher/TestRSACipher.java windows-all
|
---|
1063 | sun/security/pkcs11/Cipher/TestSymmCiphersNoPad.java windows-all
|
---|
1064 |
|
---|
1065 | # Do not seem to run on windows machines? dll missing?
|
---|
1066 | sun/security/pkcs11/ec/ReadCertificates.java windows-all
|
---|
1067 | sun/security/pkcs11/ec/ReadPKCS12.java windows-all
|
---|
1068 | sun/security/pkcs11/ec/TestCurves.java windows-all
|
---|
1069 | sun/security/pkcs11/ec/TestECDH.java windows-all
|
---|
1070 | sun/security/pkcs11/ec/TestECDSA.java windows-all
|
---|
1071 | sun/security/pkcs11/ec/TestECGenSpec.java windows-all
|
---|
1072 | sun/security/pkcs11/ec/TestKeyFactory.java windows-all
|
---|
1073 |
|
---|
1074 | # Do not seem to run on windows machines? dll missing?
|
---|
1075 | sun/security/pkcs11/KeyAgreement/TestShort.java windows-all
|
---|
1076 | sun/security/pkcs11/KeyGenerator/DESParity.java windows-all
|
---|
1077 |
|
---|
1078 | # Exception in test solaris-sparc -client -server, no windows
|
---|
1079 | sun/security/pkcs11/KeyGenerator/TestKeyGenerator.java windows-all solaris-all
|
---|
1080 |
|
---|
1081 | # Do not seem to run on windows machines? dll missing?
|
---|
1082 | sun/security/pkcs11/KeyStore/Basic.sh windows-all
|
---|
1083 | sun/security/pkcs11/KeyStore/ClientAuth.sh windows-all
|
---|
1084 |
|
---|
1085 | # Do not seem to run on windows machines? dll missing?
|
---|
1086 | sun/security/pkcs11/Mac/ReinitMac.java windows-all
|
---|
1087 | sun/security/pkcs11/MessageDigest/ByteBuffers.java windows-all
|
---|
1088 | sun/security/pkcs11/MessageDigest/DigestKAT.java windows-all
|
---|
1089 | sun/security/pkcs11/MessageDigest/ReinitDigest.java windows-all
|
---|
1090 | sun/security/pkcs11/Provider/ConfigQuotedString.sh windows-all
|
---|
1091 | sun/security/pkcs11/Provider/Login.sh windows-all
|
---|
1092 | sun/security/pkcs11/rsa/KeyWrap.java windows-all
|
---|
1093 | sun/security/pkcs11/rsa/TestCACerts.java windows-all
|
---|
1094 | sun/security/pkcs11/rsa/TestKeyFactory.java windows-all
|
---|
1095 | sun/security/pkcs11/rsa/TestSignatures.java windows-all
|
---|
1096 | sun/security/pkcs11/SampleTest.java windows-all
|
---|
1097 | sun/security/pkcs11/SecureRandom/Basic.java windows-all
|
---|
1098 | sun/security/pkcs11/Serialize/SerializeProvider.java windows-all
|
---|
1099 | sun/security/pkcs11/Signature/ByteBuffers.java windows-all
|
---|
1100 | sun/security/pkcs11/Signature/ReinitSignature.java windows-all
|
---|
1101 | sun/security/pkcs11/Signature/TestDSA.java windows-all
|
---|
1102 | sun/security/pkcs11/tls/TestKeyMaterial.java windows-all
|
---|
1103 | sun/security/pkcs11/tls/TestMasterSecret.java windows-all
|
---|
1104 | sun/security/pkcs11/tls/TestPremaster.java windows-all
|
---|
1105 | sun/security/pkcs11/tls/TestPRF.java windows-all
|
---|
1106 |
|
---|
1107 | # Fails on OpenSolaris java.net.BindException: Address already in use
|
---|
1108 | sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java generic-all
|
---|
1109 |
|
---|
1110 | # Timeout on solaris-sparcv9 or ArrayIndexOutOfBoundsException?
|
---|
1111 | sun/security/rsa/TestKeyPairGeneratorLength.java solaris-all
|
---|
1112 | sun/security/rsa/TestSignatures.java solaris-all
|
---|
1113 |
|
---|
1114 | # Timeout on solaris-sparc and i586 and x64, -client and -server
|
---|
1115 | sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/InterruptedIO.java solaris-all
|
---|
1116 |
|
---|
1117 | ############################################################################
|
---|
1118 |
|
---|
1119 | # jdk_swing (not using samevm)
|
---|
1120 |
|
---|
1121 | # Fails on solaris 10 sparc, throws RuntimeException that just says "failed"
|
---|
1122 | javax/swing/JLabel/6501991/bug6501991.java generic-all
|
---|
1123 |
|
---|
1124 | ############################################################################
|
---|
1125 |
|
---|
1126 | # jdk_text
|
---|
1127 |
|
---|
1128 | # Linux x64 occasional errors, no details
|
---|
1129 | java/text/Bidi/Bug6665028.java linux-x64
|
---|
1130 |
|
---|
1131 | ############################################################################
|
---|
1132 |
|
---|
1133 | # jdk_tools
|
---|
1134 |
|
---|
1135 | # Some of the tools tests kind of require "othervm" or if they don't will
|
---|
1136 | # always be firing up another VM anyway due to the nature of tools testing.
|
---|
1137 | # So most if not all tools tests are now being run with "othervm" mode.
|
---|
1138 | # Some of these tools tests have a tendency to use fixed ports, bad idea.
|
---|
1139 |
|
---|
1140 | # Failed 6963102, unreliable testcase
|
---|
1141 | sun/tools/jstatd/jstatdDefaults.sh generic-all
|
---|
1142 |
|
---|
1143 | # Native allocation errors on windows
|
---|
1144 | tools/pack200/MemoryAllocatorTest.java generic-all
|
---|
1145 |
|
---|
1146 | # Output of jps differs from expected output.
|
---|
1147 | # Invalid argument count on solaris-sparc and x64
|
---|
1148 | sun/tools/jstatd/jstatdPort.sh generic-all
|
---|
1149 |
|
---|
1150 | # othervm mode, Could not synchronize with target
|
---|
1151 | sun/tools/jps/jps-l_1.sh generic-all
|
---|
1152 | sun/tools/jps/jps-l_2.sh generic-all
|
---|
1153 | sun/tools/jps/jps-lm.sh generic-all
|
---|
1154 | sun/tools/jps/jps-Vvml_2.sh generic-all
|
---|
1155 | sun/tools/jps/jps-m_2.sh generic-all
|
---|
1156 |
|
---|
1157 | # Fails with othervm on OpenSolaris
|
---|
1158 | sun/tools/jps/jps-Defaults.sh generic-all
|
---|
1159 | sun/tools/jps/jps-V_2.sh generic-all
|
---|
1160 | sun/tools/jps/jps-Vm_2.sh generic-all
|
---|
1161 | sun/tools/jps/jps-Vvml.sh generic-all
|
---|
1162 | sun/tools/jps/jps-v_1.sh generic-all
|
---|
1163 | sun/tools/jps/jps-vm_1.sh generic-all
|
---|
1164 | sun/tools/jps/jps-Vvm.sh generic-all
|
---|
1165 | sun/tools/jps/jps-m.sh generic-all
|
---|
1166 |
|
---|
1167 | # Server name error, port 2098 problem?
|
---|
1168 | sun/tools/jstatd/jstatdServerName.sh generic-all
|
---|
1169 |
|
---|
1170 | # Problems on windows, jmap.exe hangs?
|
---|
1171 | com/sun/tools/attach/BasicTests.sh windows-all
|
---|
1172 |
|
---|
1173 | # Unexpected Monitor Exception, solaris sparc -client
|
---|
1174 | sun/jvmstat/monitor/MonitoredVm/MonitorVmStartTerminate.sh generic-all
|
---|
1175 |
|
---|
1176 | # Problems on windows, jmap.exe hangs? (these run jmap)
|
---|
1177 | sun/tools/jmap/Basic.sh windows-all
|
---|
1178 |
|
---|
1179 | # Invalid argument count on solaris-sparc and x64
|
---|
1180 | sun/tools/jstatd/jstatdDefaults.sh solaris-all
|
---|
1181 |
|
---|
1182 | # Solaris sparcv9, jps output does not match, x64 different
|
---|
1183 | sun/tools/jstatd/jstatdExternalRegistry.sh solaris-all
|
---|
1184 |
|
---|
1185 | # Solaris 10 sparc 32bit -client, java.lang.AssertionError: Some tests failed
|
---|
1186 | tools/jar/JarEntryTime.java generic-all
|
---|
1187 |
|
---|
1188 | # These tests fail on solaris sparc, all the time
|
---|
1189 | tools/jar/ChangeDir.java generic-all
|
---|
1190 |
|
---|
1191 | # Cannot write jar, on OpenSolaris and windows
|
---|
1192 | # Also, possible problems on windows, jmap.exe hangs?
|
---|
1193 | tools/jar/index/MetaInf.java generic-all
|
---|
1194 |
|
---|
1195 | # Cannot compile on OpenSolaris?
|
---|
1196 | com/sun/tools/extcheck/TestExtcheckArgs.java generic-all
|
---|
1197 |
|
---|
1198 | ############################################################################
|
---|
1199 |
|
---|
1200 | # jdk_util
|
---|
1201 |
|
---|
1202 | # Fails unpredictably: 6633113
|
---|
1203 | java/util/concurrent/SynchronousQueue/Fairness.java generic-all
|
---|
1204 |
|
---|
1205 | # Fails on OpenSolaris, see 6876961
|
---|
1206 | java/util/ResourceBundle/Test4300693.java generic-all
|
---|
1207 |
|
---|
1208 | # Fails Windows 2000, AssertionError: Some tests failed at Basic.java:96
|
---|
1209 | java/util/concurrent/TimeUnit/Basic.java generic-all
|
---|
1210 |
|
---|
1211 | # Assert error, failures, on Linux Fedora 9 -server
|
---|
1212 | # Windows samevm failure, assert error "Passed = 134, failed = 2"
|
---|
1213 | java/util/Arrays/ArrayObjectMethods.java generic-all
|
---|
1214 |
|
---|
1215 | # Windows 2000, -client, samevm, java.lang.Error: Completed != 2
|
---|
1216 | java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
|
---|
1217 |
|
---|
1218 | # Windows X64, Executor Stuck samevm mode:
|
---|
1219 | java/util/concurrent/FutureTask/BlockingTaskExecutor.java generic-all
|
---|
1220 |
|
---|
1221 | # Problems on windows, jmap.exe hangs? (these run jmap), fails on Solaris 10 x86
|
---|
1222 | java/util/concurrent/locks/Lock/TimedAcquireLeak.java generic-all
|
---|
1223 |
|
---|
1224 | # Solaris sparc client, some failures, "1 not equal to 3"?
|
---|
1225 | # also Linux problems with samevm mode, -server linux i586? 1 not equal to 3?
|
---|
1226 | java/util/concurrent/Executors/AutoShutdown.java generic-all
|
---|
1227 |
|
---|
1228 | # Fails on solaris-sparc -server (Set not equal to copy. 1)
|
---|
1229 | java/util/EnumSet/EnumSetBash.java solaris-sparc
|
---|
1230 |
|
---|
1231 | # Failing to close an input stream? "foo", triggers samevm windows failures
|
---|
1232 | java/util/Formatter/Constructors.java generic-all
|
---|
1233 |
|
---|
1234 | # Need to be marked othervm, or changed to be samevm safe
|
---|
1235 | java/util/Locale/Bug4175998Test.java generic-all
|
---|
1236 | java/util/Locale/Bug4184873Test.java generic-all
|
---|
1237 | java/util/Locale/LocaleTest.java generic-all
|
---|
1238 |
|
---|
1239 | # Need to be marked othervm, or changed to be samevm safe
|
---|
1240 | java/util/logging/LoggingDeadlock.java generic-all
|
---|
1241 | java/util/logging/LoggingDeadlock2.java generic-all
|
---|
1242 | java/util/logging/LoggingMXBeanTest.java generic-all
|
---|
1243 | java/util/logging/LoggingMXBeanTest2.java generic-all
|
---|
1244 | java/util/logging/LoggingNIOChange.java generic-all
|
---|
1245 | java/util/logging/ParentLoggersTest.java generic-all
|
---|
1246 |
|
---|
1247 | # Need to be marked othervm, or changed to be samevm safe
|
---|
1248 | java/util/ResourceBundle/Bug4168625Test.java generic-all
|
---|
1249 | java/util/ResourceBundle/Bug6359330.java generic-all
|
---|
1250 | java/util/ResourceBundle/TestBug4179766.java generic-all
|
---|
1251 |
|
---|
1252 | # Need to be marked othervm, or changed to be samevm safe
|
---|
1253 | java/util/WeakHashMap/GCDuringIteration.java generic-all
|
---|
1254 |
|
---|
1255 | # Possible missing input stream close()? Causes samevm issues on windows
|
---|
1256 | java/util/zip/InfoZip.java generic-all
|
---|
1257 |
|
---|
1258 | # Missing a close() on file Test0.zip? windows samevm cascade problem
|
---|
1259 | java/util/zip/ZipFile/Comment.java generic-all
|
---|
1260 |
|
---|
1261 | # Suspect missing close() on bad*.zip files, windows cascade errors with samevm
|
---|
1262 | java/util/zip/ZipFile/CorruptedZipFiles.java generic-all
|
---|
1263 |
|
---|
1264 | # Should be samevm but causes problems with samevm, no details:
|
---|
1265 | java/util/zip/ZipFile/ManyEntries.java generic-all
|
---|
1266 |
|
---|
1267 | ############################################################################
|
---|
1268 |
|
---|