source: trunk/openjdk/jdk/test/ProblemList.txt

Last change on this file was 309, checked in by dmik, 14 years ago

trunk: Merged in openjdk6 b24 from branches/vendor/oracle.

File size: 59.0 KB
Line 
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
126java/awt/image/mlib/MlibOpsTest.java generic-all
127
128# Fails on windows, othervm mode, various errors
129java/awt/event/KeyEvent/KeyTyped/CtrlASCII.html generic-all
130
131# Fails with windows X64, othervm, -server
132java/awt/Focus/FocusEmbeddedFrameTest/FocusEmbeddedFrameTest.java generic-all
133java/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
145java/beans/XMLEncoder/javax_swing_tree_TreePath.java generic-all
146
147# Hangs on most solaris runs.
148java/beans/Introspector/memory/Test4508780.java generic-all
149
150# Fail on opensolartis, solaris, maybe solaris 8? Consistently, othervm
151java/beans/Introspector/Test6194788.java generic-all
152java/beans/Introspector/Test6422403.java generic-all
153java/beans/Introspector/Test6528714.java generic-all
154java/beans/Introspector/TestTypeResolver.java generic-all
155java/beans/PropertyChangeSupport/TestEquals.java generic-all
156java/beans/VetoableChangeSupport/Test4994635.java generic-all
157java/beans/VetoableChangeSupport/TestEquals.java generic-all
158java/beans/VetoableChangeSupport/TestListeners.java generic-all
159java/beans/VetoableChangeSupport/TestSynchronization.java generic-all
160
161# Linux, some kind of problems with X11 display
162java/beans/PropertyChangeSupport/Test4682386.java generic-all
163java/beans/PropertyChangeSupport/TestSynchronization.java generic-all
164java/beans/Statement/Test4653179.java generic-all
165
166# Problems with samevm and setting security manager (speculation partially)
167java/beans/Beans/Test4080522.java generic-all
168java/beans/EventHandler/Test6277246.java generic-all
169java/beans/EventHandler/Test6277266.java generic-all
170java/beans/Introspector/Test6277246.java generic-all
171java/beans/Introspector/4168475/Test4168475.java generic-all
172java/beans/Introspector/4520754/Test4520754.java generic-all
173java/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
183javax/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)
188java/io/File/SetAccess.java generic-all
189
190# Should be othervm, or corrected for samevm, fails with samevm:
191java/io/BufferedReader/BigMark.java generic-all
192java/io/BufferedReader/ReadLineSync.java generic-all
193
194# Fails on OpenSolaris
195java/io/File/GetXSpace.java generic-all
196
197# One of these is leaving "a.ser" file open, windows samevm
198java/io/Serializable/duplicateSerialFields/Setup.java generic-all
199java/io/Serializable/duplicateSerialFields/Test.java generic-all
200
201# One of these leaving foo.ser open, windows samevm problem
202java/io/Serializable/enum/constantSubclasses/Read.java generic-all
203java/io/Serializable/enum/constantSubclasses/Write.java generic-all
204java/io/Serializable/enum/missingConstant/Read.java generic-all
205java/io/Serializable/enum/missingConstant/Write.java generic-all
206
207# This is leaving subtest1.tmp open, windows samevm problem
208java/io/Serializable/oldTests/AnnotateClass.java generic-all
209
210# One or more of these leave a piotest* file open, windows samevm
211java/io/Serializable/oldTests/ArrayFields.java generic-all
212java/io/Serializable/oldTests/ArraysOfArrays.java generic-all
213java/io/Serializable/oldTests/BinaryTree.java generic-all
214java/io/Serializable/oldTests/CircularList.java generic-all
215java/io/Serializable/oldTests/SerializeWithException.java generic-all
216java/io/Serializable/oldTests/SimpleArrays.java generic-all
217java/io/Serializable/oldTests/WritePrimitive.java generic-all
218
219# Missing close on file 0.ser, windows samevm
220java/io/Serializable/enum/badResolve/Read.java generic-all
221java/io/Serializable/enum/badResolve/Write.java generic-all
222
223# One of these tests is leaving parents.ser open, windows samevm
224java/io/Serializable/parents/EvolvedClass.java generic-all
225java/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
228java/io/Serializable/fieldTypeString/Read.java generic-all
229java/io/Serializable/fieldTypeString/Write.java generic-all
230
231# One of these tests is leaving tmp.ser file open, windows samevm
232java/io/Serializable/ClassCastExceptionDetail/Read.java generic-all
233java/io/Serializable/ClassCastExceptionDetail/Write.java generic-all
234java/io/Serializable/GetField/Read.java generic-all
235java/io/Serializable/GetField/Read2.java generic-all
236java/io/Serializable/GetField/Write.java generic-all
237java/io/Serializable/PutField/Read.java generic-all
238java/io/Serializable/PutField/Read2.java generic-all
239java/io/Serializable/PutField/Write.java generic-all
240java/io/Serializable/PutField/Write2.java generic-all
241java/io/Serializable/arraySuidConflict/Read.java generic-all
242java/io/Serializable/arraySuidConflict/Write.java generic-all
243java/io/Serializable/backRefCNFException/Read.java generic-all
244java/io/Serializable/backRefCNFException/Write.java generic-all
245java/io/Serializable/class/Test.java generic-all
246java/io/Serializable/evolution/AddedExternField/ReadAddedField.java generic-all
247java/io/Serializable/evolution/AddedExternField/WriteAddedField.java generic-all
248java/io/Serializable/evolution/AddedExternField/run.sh generic-all
249java/io/Serializable/evolution/AddedField/ReadAddedField.java generic-all
250java/io/Serializable/evolution/AddedField/WriteAddedField.java generic-all
251java/io/Serializable/evolution/AddedSuperClass/ReadAddedSuperClass.java generic-all
252java/io/Serializable/evolution/AddedSuperClass/ReadAddedSuperClass2.java generic-all
253java/io/Serializable/evolution/AddedSuperClass/WriteAddedSuperClass.java generic-all
254java/io/Serializable/proxy/skipMissing/Read.java generic-all
255java/io/Serializable/proxy/skipMissing/Write.java generic-all
256java/io/Serializable/readObjectNoData/Read.java generic-all
257java/io/Serializable/readObjectNoData/Write.java generic-all
258java/io/Serializable/skipWriteObject/Read.java generic-all
259java/io/Serializable/skipWriteObject/Write.java generic-all
260java/io/Serializable/skippedObjCNFException/Read.java generic-all
261java/io/Serializable/skippedObjCNFException/Write.java generic-all
262java/io/Serializable/stopCustomDeserialization/Read.java generic-all
263java/io/Serializable/stopCustomDeserialization/Write.java generic-all
264java/io/Serializable/unresolvedClassDesc/Read.java generic-all
265java/io/Serializable/unresolvedClassDesc/Write.java generic-all
266java/io/Serializable/unshared/Read.java generic-all
267java/io/Serializable/unshared/Write.java generic-all
268java/io/Serializable/wrongReturnTypes/Read.java generic-all
269java/io/Serializable/wrongReturnTypes/Write.java generic-all
270
271# Windows samevm issues? triggers other tests to fail, missing close() on f.txt?
272java/io/DataInputStream/OpsAfterClose.java generic-all
273
274# Windows 32bit samevm failure: RuntimeException: File.getFreeSpace() failed
275java/io/File/MaxPathLength.java generic-all
276
277# Should be othervm, or corrected for samevm, fails with samevm:
278java/io/File/DeleteOnExit.java generic-all
279java/io/File/DeleteOnExitLong.java generic-all
280java/io/File/DeleteOnExitNPE.java generic-all
281java/io/File/IsHidden.java generic-all
282java/io/FileDescriptor/FileChannelFDTest.java generic-all
283java/io/FileDescriptor/Finalize.java generic-all
284java/io/FileInputStream/FinalizeShdCallClose.java generic-all
285
286# Known to cause samevm issues on windows, other tests fail, missing close()?
287java/io/FileInputStream/OpsAfterClose.java generic-all
288
289# Should be othervm, or corrected for samevm, fails with samevm:
290java/io/FileOutputStream/FinalizeShdCallClose.java generic-all
291
292# Known to cause samevm issues on windows, other tests fail, missing close()?
293java/io/FileOutputStream/OpsAfterClose.java generic-all
294
295# Windows samevm issues? triggers other tests to fail, missing close() on f.txt?
296java/io/InputStream/OpsAfterClose.java generic-all
297
298# Missing close() on x.ReadBounds file? Windows samevm issues
299java/io/InputStream/ReadParams.java generic-all
300
301# Known to cause samevm issues on windows, other tests fail, missing close()?
302java/io/InputStreamReader/GrowAfterEOF.java generic-all
303
304# Should be othervm, or corrected for samevm, fails with samevm:
305java/io/ObjectInputStream/ResolveProxyClass.java generic-all
306
307# Not doing a close() on x.ParameterCheck file? windows samevm cascade error
308java/io/RandomAccessFile/ParameterCheck.java generic-all
309
310# Not doing a close on x.ReadLine file? windows cascade samevm problems
311java/io/RandomAccessFile/ReadLine.java generic-all
312
313# Not doing close on file input x.WriteByteChars, windows samevm problems
314java/io/RandomAccessFile/WriteBytesChars.java generic-all
315
316# Not doing close on file input x.WriteUTF, windows samevm problems
317java/io/RandomAccessFile/WriteUTF.java generic-all
318
319# Possibly, not doing a close() on input.txt, windows samevm issues.
320java/io/RandomAccessFile/skipBytes/SkipBytes.java generic-all
321java/io/readBytes/MemoryLeak.java generic-all
322java/io/readBytes/ReadBytesBounds.java generic-all
323
324# Missing close on fields.ser, windows samevm
325java/io/Serializable/checkModifiers/CheckModifiers.java generic-all
326
327# Should be othervm, or corrected for samevm, fails with samevm:
328java/io/Serializable/auditStreamSubclass/AuditStreamSubclass.java generic-all
329java/io/Serializable/proxy/Basic.java generic-all
330
331# Possibly not doing a close() on input.txt, windows samevm issues.
332java/io/StreamTokenizer/Comment.java generic-all
333
334############################################################################
335
336# jdk_lang
337
338# Fails on OpenSolaris, see 6992968
339java/lang/management/MemoryMXBean/CollectionUsageThresholdConcMarkSweepGC.sh generic-all
340
341# Solaris 10 sparc: main -- Error. Error while cleaning up threads after test
342java/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)
350java/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)
356java/lang/instrument/TransformerManagementThreadAddTests.java generic-all
357
358# Fails on OpenSolaris
359java/lang/ClassLoader/UninitializedParent.java generic-all
360java/lang/annotations/ParameterAnnotations.java generic-all
361
362# Times out on solaris 10 sparc
363java/lang/ClassLoader/Assert.java generic-all
364
365# Fedora 9 X64, RuntimeException: MyThread expected to be blocked on lock, but got null
366java/lang/management/ThreadMXBean/ThreadStateTest.java generic-all
367
368# RuntimeException: Uptime of the JVM is more than 30 minutes (32 minutes).
369java/lang/management/RuntimeMXBean/UpTime.java generic-all
370
371# Times out on solaris sparc occasionally, in samevm mode
372java/lang/Runtime/exec/ExecWithDir.java generic-all
373java/lang/ProcessBuilder/Basic.java generic-all
374
375# Solaris sparc, samevm, java.lang.Exception: Read from closed pipe hangs
376java/lang/Runtime/exec/SleepyCat.java generic-all
377
378# Need to be marked othervm, or changed to be samevm safe
379java/lang/ClassLoader/defineClass/DefineClassByteBuffer.java generic-all
380java/lang/ClassLoader/findSystemClass/Loader.java generic-all
381
382# Fedora 9 32bit, -client, samevm, Error while cleaning up threads after test
383java/lang/management/ThreadMXBean/Locks.java generic-all
384
385# Need to be marked othervm, or changed to be samevm safe
386java/lang/management/ClassLoadingMXBean/LoadCounts.java generic-all
387java/lang/management/ManagementFactory/MBeanServerMXBeanUnsupportedTest.java generic-all
388java/lang/management/ManagementFactory/MXBeanProxyTest.java generic-all
389java/lang/management/ManagementFactory/ThreadMXBeanProxy.java generic-all
390java/lang/management/MemoryMXBean/CollectionUsageThreshold.java generic-all
391java/lang/management/MemoryMXBean/GetMBeanInfo.java generic-all
392java/lang/management/MemoryMXBean/LowMemoryTest.java generic-all
393java/lang/management/MemoryMXBean/MemoryManagement.java generic-all
394java/lang/management/MemoryMXBean/MemoryTest.java generic-all
395java/lang/management/MemoryMXBean/Pending.java generic-all
396
397# Problematic on all platforms (even as othervm)
398java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java generic-all
399
400# Causes jtreg exit samevm issues due to non-String object in system properties
401java/lang/management/RuntimeMXBean/GetSystemProperties.java generic-all
402
403# Need to be marked othervm, or changed to be samevm safe
404java/lang/management/RuntimeMXBean/PropertiesTest.java generic-all
405java/lang/management/ThreadMXBean/AllThreadIds.java generic-all
406java/lang/management/ThreadMXBean/EnableTest.java generic-all
407java/lang/management/ThreadMXBean/FindMonitorDeadlock.java generic-all
408java/lang/management/ThreadMXBean/LockingThread.java generic-all
409java/lang/management/ThreadMXBean/MonitorDeadlock.java generic-all
410java/lang/management/ThreadMXBean/MyOwnSynchronizer.java generic-all
411java/lang/management/ThreadMXBean/SharedSynchronizer.java generic-all
412java/lang/management/ThreadMXBean/SynchronizerLockingThread.java generic-all
413java/lang/management/ThreadMXBean/ThreadCounts.java generic-all
414
415# Need to be marked othervm, or changed to be samevm safe
416java/lang/reflect/Proxy/Boxing.java generic-all
417java/lang/reflect/Proxy/ClassRestrictions.java generic-all
418java/lang/reflect/Proxy/returnTypes/Test.java generic-all
419
420# Need to be marked othervm, or changed to be samevm safe
421java/lang/Runtime/exec/LotsOfOutput.java generic-all
422java/lang/System/ExitFinalizersAndJIT.java generic-all
423java/lang/System/finalization/FinThreads.java generic-all
424java/lang/System/IgnoreNullSecurityManager.java generic-all
425java/lang/Thread/GenerifyStackTraces.java generic-all
426java/lang/Thread/StackTraces.java generic-all
427java/lang/ThreadGroup/Daemon.java generic-all
428
429# Times out on solaris sparc -server
430java/lang/ThreadLocal/MemoryLeak.java solaris-all
431
432# Windows X64, RuntimeException: MyThread expected to have RUNNABLE but got WAITING
433java/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
440javax/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)
445javax/management/remote/mandatory/connection/FailedConnectionTest.java generic-all
446javax/management/remote/mandatory/connection/IIOPURLTest.java generic-all
447javax/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)
452sun/management/jmxremote/bootstrap/LocalOnlyTest.java generic-all
453sun/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)
458javax/management/modelmbean/DescriptorSupportSerialTest.java generic-all
459javax/management/modelmbean/UnserializableTargetObjectTest.java generic-all
460javax/management/mxbean/GenericArrayTypeTest.java generic-all
461javax/management/mxbean/MXBeanTest.java generic-all
462javax/management/proxy/NotificationEmitterProxy.java generic-all
463javax/management/proxy/ProxyObjectMethodsTest.java generic-all
464javax/management/remote/mandatory/connection/AddressableTest.java generic-all
465javax/management/remote/mandatory/connection/BrokenConnectionTest.java generic-all
466javax/management/remote/mandatory/connection/CloseServerTest.java generic-all
467javax/management/remote/mandatory/connection/CloseUnconnectedTest.java generic-all
468javax/management/remote/mandatory/connection/ConnectionTest.java generic-all
469javax/management/remote/mandatory/connection/DeadLockTest.java generic-all
470javax/management/remote/mandatory/connection/FailedConnectioent/remote/mandatory/connection/IdleTimeoutTest.java generic-all
471javax/management/remote/mandatory/connection/MultiOpenCloseTest.java generic-all
472javax/management/remote/mandatory/connection/RMIConnectionIdTest.java generic-all
473javax/management/remote/mandatory/connection/RMIExitTest.java generic-all
474javax/management/remote/mandatory/connection/ReconnectTest.java generic-all
475javax/management/remote/mandatory/connectorServer/RMIExporterTest.java generic-all
476javax/management/remote/mandatory/loading/DeserializeEncodedURLTest.java generic-all
477javax/management/remote/mandatory/loading/MethodResultTest.java generic-all
478javax/management/remote/mandatory/loading/MissingClassTest.java generic-all
479javax/management/remote/mandatory/loading/RMIDownloadTest.java generic-all
480javax/management/remote/mandatory/loading/UserClassLoaderTest.java generic-all
481javax/management/remote/mandatory/notif/AddRemoveTest.java generic-all
482javax/management/remote/mandatory/notif/DiffHBTest.java generic-all
483javax/management/remote/mandatory/notif/EmptyDomainNotificationTest.java generic-all
484javax/management/remote/mandatory/notif/NotSerializableNotifTest.java generic-all
485javax/management/remote/mandatory/notif/NotifBufferSizePropertyNameTest.java generic-all
486javax/management/remote/mandatory/notif/NotifReconnectDeadlockTest.java generic-all
487javax/management/remote/mandatory/notif/NotificationAccessControllerTest.java generic-all
488javax/management/remote/mandatory/notif/NotificationBufferCreationTest.java generic-all
489javax/management/remote/mandatory/notif/NotificationEmissionTest.java generic-all
490javax/management/remote/mandatory/notif/ServerNotifs.java generic-all
491javax/management/remote/mandatory/notif/UnexpectedNotifTest.java generic-all
492javax/management/remote/mandatory/passwordAccessFile/NonJMXPrincipalsTest.java generic-all
493javax/management/remote/mandatory/passwordAccessFile/PasswordAccessFileTest.java generic-all
494javax/management/remote/mandatory/provider/ProviderTest.java generic-all
495javax/management/remote/mandatory/serverError/JMXServerErrorTest.java generic-all
496javax/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
499javax/management/remote/mandatory/threads/ExecutorTest.java generic-all
500
501# Linux 32bit Fedora 9, IllegalStateException
502javax/management/monitor/RuntimeExceptionTest.java generic-all
503
504# Problems with rmi connection, othervm
505javax/management/remote/mandatory/subjectDelegation/SubjectDelegation2Test.java generic-all
506
507# Fails with port already in use
508sun/management/jmxremote/bootstrap/SSLConfigFilePermissionTest.sh generic-all
509
510# Fails with port already in use
511sun/management/jmxremote/bootstrap/RmiRegistrySslTest.sh generic-all
512
513# Linux othervm, X64, java.lang.Exception: Failed: ratio=102.4027795593753
514javax/management/remote/mandatory/notif/ListenerScaleTest.java generic-all
515
516# Windows run seems to have triggered a hotspot gc error (see 6801625)
517com/sun/management/HotSpotDiagnosticMXBean/DumpHeap.sh generic-all
518
519# rmi problem? othervm, java.lang.reflect.UndeclaredThrowableException
520javax/management/remote/mandatory/subjectDelegation/SubjectDelegation3Test.java generic-all
521
522# Linux Fedora 9 32bit NPE in rmi server somehere??? othervm
523javax/management/remote/mandatory/notif/NotificationBufferDeadlockTest.java generic-all
524
525# Port already in use
526sun/management/jmxremote/bootstrap/LocalManagementTest.sh generic-all
527
528# Failed to initialize connector (also overflowing jtreg io buffers)
529sun/management/jmxremote/bootstrap/RmiBootstrapTest.sh generic-all
530sun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh generic-all
531
532# Windows X64, java.lang.IllegalStateException
533javax/management/monitor/AttributeArbitraryDataTypeTest.java generic-all
534
535############################################################################
536
537# jdk_math
538
539# Problems with rounding add failures on solaris-sparcv9 and -server
540java/math/BigDecimal/AddTests.java solaris-sparcv9
541
542# Problems on windows with samevm, missing inputstream close()?
543# Also times out on solaris-sparcv9 -server
544java/math/BigInteger/BigIntegerTest.java generic-all
545
546# Should be samevm? But seems problematic with samevm on windows
547java/math/BigInteger/ModPow65537.java generic-all
548
549############################################################################
550
551# jdk_misc
552
553# Fails on OpenSolaris
554com/sun/java/swing/plaf/nimbus/Test6741426.java generic-all
555com/sun/java/swing/plaf/nimbus/Test6849805.java generic-all
556com/sun/org/apache/xml/internal/ws/server/Test.java generic-all
557
558# Need to be marked othervm, or changed to be samevm safe
559com/sun/jndi/ldap/ReadTimeoutTest.java generic-all
560com/sun/jndi/rmi/registry/RegistryContext/UnbindIdempotent.java generic-all
561
562# Need to be marked othervm, or changed to be samevm safe
563com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
564
565# Leaves file rgba_* open, fails with windows samevm
566javax/imageio/plugins/png/PngOutputTypeTest.java generic-all
567
568# One of these tests is leaving file IMGP1001.JPG open, windows samevm
569javax/imageio/plugins/jpeg/ConcurrentReadingTest.java generic-all
570javax/imageio/plugins/jpeg/ReadingInterruptionTest.java generic-all
571
572# One of these files is missing a close on writer_* files, windows samevm
573javax/imageio/plugins/jpeg/ConcurrentWritingTest.java generic-all
574javax/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
579javax/print/attribute/CollateAttr.java generic-all
580javax/print/attribute/PSCopiesFlavorTest.java generic-all
581
582# Only print test left, excluding just because all print tests have been
583javax/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
593java/net/DatagramSocket/BindFailTest.java windows-all
594java/net/DatagramSocket/ImplicitBind.java windows-all
595java/net/DatagramSocket/InheritHandle.java windows-all
596java/net/DatagramSocket/PortUnreachable.java windows-all
597java/net/DatagramSocket/ReportSocketClosed.java windows-all
598java/net/DatagramSocket/Send12k.java windows-all
599java/net/DatagramSocket/SendDatagramToBadAddress.java windows-all
600java/net/DatagramSocket/SetReceiveBufferSize.java windows-all
601java/net/DatagramSocketImpl/CheckDiscard.java windows-all
602java/net/InetAddress/IsReachable.java windows-all
603
604# Fails on OpenSolaris, see 7032247
605java/net/InetAddress/GetLocalHostWithSM.java generic-all
606
607# Fails on OpenSolaris, see 6935199
608java/net/CookieHandler/TestHttpCookie.java generic-all
609
610# Fails on OpenSolaris, see 6423396
611com/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?
617sun/net/www/protocol/http/Finalizer.java generic-all
618sun/net/www/protocol/http/RetryUponTimeout.java generic-all
619
620# Fails on OpenSolaris
621java/net/NetworkInterface/NetParamsTest.java generic-all
622sun/net/www/AuthHeaderTest.java generic-all
623sun/net/www/protocol/http/HttpInputStream.java generic-all
624sun/net/www/protocol/http/Modified.java generic-all
625sun/net/www/protocol/http/ProtocolRedirect.java generic-all
626sun/net/www/protocol/http/SetChunkedStreamingMode.java generic-all
627sun/net/www/protocol/http/SetIfModifiedSince.java generic-all
628
629# Fails on OpenSolaris, BindException unexpected
630java/net/BindException/Test.java generic-all
631
632# Fails on OpenSolaris, times out
633java/net/MulticastSocket/SetOutgoingIf.java generic-all
634
635# Timed out on Solaris 10 X86.
636com/sun/net/httpserver/Test3.java generic-all
637
638# Exception in test on windows
639com/sun/net/httpserver/bugs/B6373555.java windows-all
640
641# One of these pollutes the samevm on Linux, too many open files, kills jtreg
642com/sun/net/httpserver/bugs/B6339483.java generic-all
643com/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*()?
647com/sun/net/httpserver/SelCacheTest.java generic-all
648com/sun/net/httpserver/Test1.java generic-all
649com/sun/net/httpserver/Test12.java generic-all
650com/sun/net/httpserver/Test13.java generic-all
651com/sun/net/httpserver/Test6a.java generic-all
652com/sun/net/httpserver/Test7a.java generic-all
653com/sun/net/httpserver/Test8a.java generic-all
654com/sun/net/httpserver/Test9.java generic-all
655com/sun/net/httpserver/Test9a.java generic-all
656
657# 10,000 connections, fails on Linux and makes tests&jtreg fail with samevm
658com/sun/net/httpserver/bugs/B6361557.java generic-all
659
660# Address already in use with samevm? Always? Solaris sparc, probably ports
661java/net/Authenticator/B4933582.sh generic-all
662java/net/DatagramSocket/SendSize.java generic-all
663
664# Not closing stream on file i6a1, windows samevm problem
665java/net/Inet6Address/serialize/Serialize.java generic-all
666
667# Linux x64 fails "network unreachable"?
668java/net/ipv6tests/TcpTest.java generic-all
669
670# Linux i586, fails with unexpected output
671java/net/MulticastSocket/NoLoopbackPackets.java linux-i586
672
673# Times out on windows x64, fails with samevm on solaris 11 i586
674java/net/ServerSocket/AcceptCauseFileDescriptorLeak.java generic-all
675
676# Address already in use
677java/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
681java/net/Socket/DeadlockTest.java generic-all
682
683# Linux i586 address already in use or connection error, samevm issues
684java/net/Socket/AccurateTimeout.java generic-all
685java/net/Socket/asyncClose/BrokenPipe.java generic-all
686java/net/Socket/CloseAvailable.java generic-all
687java/net/Socket/FDClose.java generic-all
688
689# Linux X64 address already in use, samevm issues
690java/net/Socket/LingerTest.java generic-all
691java/net/Socket/LinkLocal.java generic-all
692java/net/Socket/NullHost.java generic-all
693java/net/Socket/ProxyCons.java generic-all
694java/net/Socket/ReadTimeout.java generic-all
695
696# Linux X64 address already in use, samevm issues
697java/net/Socket/SetReceiveBufferSize.java generic-all
698
699# Linux i586 address already in use or connection error, samevm issues
700java/net/Socket/setReuseAddress/Basic.java generic-all
701java/net/Socket/setReuseAddress/Restart.java generic-all
702
703# Linux X64 address already in use, samevm issues
704java/net/Socket/SetSoLinger.java generic-all
705
706# Address already in use, windows samevm
707java/net/Socket/Timeout.java generic-all
708
709# Linux X64 address already in use, samevm issues
710java/net/Socket/ShutdownBoth.java generic-all
711java/net/Socket/SoTimeout.java generic-all
712java/net/Socket/TestClose.java generic-all
713java/net/Socket/UrgentDataTest.java generic-all
714java/net/SocketInputStream/SocketClosedException.java generic-all
715java/net/SocketInputStream/SocketTimeout.java generic-all
716
717# Linux i586, address already in use or timeout, samevm issues
718java/net/URLConnection/contentHandler/UserContentHandler.java generic-all
719java/net/URLConnection/DisconnectAfterEOF.java generic-all
720java/net/URLConnection/HandleContentTypeWithAttrs.java generic-all
721java/net/URLConnection/Responses.java generic-all
722java/net/URLConnection/TimeoutTest.java generic-all
723java/net/URLConnection/ZeroContentLength.java generic-all
724
725# Solaris 11 i586 fails with samevm, not sure why
726java/net/Authenticator/B4769350.java generic-all
727java/net/HttpURLConnection/HttpResponseCode.java generic-all
728java/net/ResponseCache/B6181108.java generic-all
729java/net/ResponseCache/ResponseCacheTest.java generic-all
730java/net/URL/GetContent.java generic-all
731java/net/URL/TestIPv6Addresses.java generic-all
732java/net/URLClassLoader/HttpTest.java generic-all
733java/net/URLConnection/HttpContinueStackOverflow.java generic-all
734java/net/URLConnection/Redirect307Test.java generic-all
735java/net/URLConnection/RedirectLimit.java generic-all
736java/net/URLConnection/ResendPostBody.java generic-all
737java/net/URL/OpenStream.java generic-all
738java/net/URLClassLoader/ClassLoad.java generic-all
739java/net/URLConnection/SetIfModifiedSince.java generic-all
740java/net/URLConnection/URLConnectionHeaders.java generic-all
741
742# Linux i586 Connection refused or address already in use, samevm issues
743sun/net/ftp/B6427768.java generic-all
744sun/net/ftp/FtpGetContent.java generic-all
745sun/net/ftp/FtpURL.java generic-all
746
747# Failed on solaris 10 i586, Exception: should have gotten HttpRetryException?
748sun/net/www/http/ChunkedOutputStream/Test.java generic-all
749
750# Trouble cleaning up threads in samevm mode on solaris 11 i586
751sun/net/www/http/HttpClient/ProxyTest.java generic-all
752sun/net/www/http/ChunkedInputStream/ChunkedEncodingTest.java generic-all
753sun/net/www/http/ChunkedInputStream/ChunkedEncodingWithProgressMonitorTest.java generic-all
754sun/net/www/http/HttpClient/MultiThreadTest.java generic-all
755sun/net/www/http/KeepAliveCache/KeepAliveTimerThread.java generic-all
756
757# Connection refused, windows samevm
758sun/net/www/protocol/http/DigestTest.java generic-all
759
760############################################################################
761
762# jdk_nio
763
764# Fails on Windows: 7012823
765java/nio/MappedByteBuffer/Force.java windows-all
766
767# Fails on OpenSolaris, see 6983794
768java/nio/channels/Selector/ConnectWrite.java generic-all
769
770# Unused Charset subclass: sun.nio.cs.ext.MS932DB RuntimeException
771java/nio/charset/Charset/NIOCharsetAvailabilityTest.java generic-all
772
773# java.io.UnsupportedEncodingException: MS932_0213
774sun/nio/cs/TestSJIS0213.java generic-all
775
776# Timeout on linux (Fedora 9)
777java/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)
784java/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.
788java/io/Serializable/evolution/RenamePackage/run.sh generic-all
789
790# Fails on Windows 2000, Execution failed: exit code 125
791java/io/Serializable/serialver/classpath/run.sh generic-all
792
793# Fails on Solaris x86, times out.
794java/nio/channels/SocketChannel/AsyncCloseChannel.java generic-all
795
796# Fails on Solaris 10 x86 BindException: Address already in use
797java/nio/channels/DatagramChannel/SRTest.java generic-all
798
799# Fails on Solaris 8 x86, java.io.IOException: File too large
800java/io/File/Basic.java generic-all
801
802# Fails on Solaris 8 x86, java.io.IOException: File too large
803java/nio/channels/FileChannel/Size.java generic-all
804java/nio/channels/FileChannel/Transfer.java generic-all
805
806# Fails on OpenSolaris, times out
807java/nio/channels/DatagramChannel/AdaptDatagramSocket.java generic-all
808
809# Fails on OpenSolaris, various reasons, consustent failures, othervm
810java/nio/Buffer/Basic.java generic-all
811java/nio/channels/Channels/ReadOffset.java generic-all
812java/nio/channels/FileChannel/Truncate.java generic-all
813java/nio/channels/SelectionKey/AtomicAttachTest.java generic-all
814java/nio/channels/Selector/WakeupAfterClose.java generic-all
815java/nio/channels/SocketChannel/UnboundSocketTests.java generic-all
816
817# Triggers a hotspot crash on Fedora 9 32bit -server and Windows X64 samevm
818sun/nio/cs/TestUTF8.java generic-all
819
820# Solaris sparc, socket timeout
821java/nio/channels/spi/SelectorProvider/inheritedChannel/run_tests.sh generic-all
822
823# Runtime exception on windows X64, samevm mode
824java/nio/channels/Selector/WakeupNow.java generic-all
825
826# Occasional errors, solarix x86, address already in use, othervm mode
827java/nio/channels/Selector/SelectorTest.java generic-all
828
829# Timeouts etc. on Window
830java/nio/channels/AsyncCloseAndInterrupt.java windows-all
831
832# Solaris sparc timeout
833java/nio/channels/DatagramChannel/Connect.java generic-all
834
835# Solaris i586 timeouts
836java/nio/channels/DatagramChannel/EmptyBuffer.java solaris-all
837
838# Gets java.lang.ExceptionInInitializerError on windows: (Windows 2000 only?)
839java/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.
843java/nio/channels/Selector/LotsOfChannels.java generic-all
844
845# Solaris sparcv9, just fails with exception
846java/nio/channels/Selector/OpRead.java solaris-sparc
847
848# Windows i586 client, crashed hotspot? Unpredictable
849# Considered a stress test, can consume all resources.
850java/nio/channels/Selector/RegAfterPreClose.java generic-all
851
852# Gets java.net.BindException alot (static port number?)
853java/nio/channels/Selector/SelectAfterRead.java generic-all
854
855# Solaris i586, cannot assign address, samevm issues
856java/nio/channels/Selector/SelectorLimit.java generic-all
857
858# Socket timeout windows X64
859java/nio/channels/ServerSocketChannel/AdaptServerSocket.java windows-all
860
861# Solaris i586, cannot assign address, samevm issues
862java/nio/channels/SocketChannel/CloseAfterConnect.java generic-all
863java/nio/channels/SocketChannel/CloseRegisteredChannel.java generic-all
864
865# Timeouts etc. on Window
866java/nio/channels/SocketChannel/ConnectState.java windows-all
867java/nio/channels/SocketChannel/FinishConnect.java windows-all
868
869# Need to be marked othervm, or changed to be samevm safe
870java/nio/channels/SocketChannel/OpenLeak.java generic-all
871
872# Solaris i586 java.net.BindExceptions
873java/nio/channels/SocketChannel/Shutdown.java solaris-all
874java/nio/channels/SocketChannel/Stream.java solaris-all
875
876# Gets java.net.BindException alot (static port number?)
877java/nio/channels/SocketChannel/VectorIO.java generic-all
878
879# Solaris i586 java.net.BindExceptions
880java/nio/channels/SocketChannel/VectorParams.java solaris-all
881
882# Linux i586 address already in use, samevm issues
883java/nio/channels/SocketChannel/Write.java generic-all
884
885############################################################################
886
887# jdk_rmi
888
889# Port already in use, fails on sparc, othervm
890java/rmi/reliability/benchmark/runRmiBench.sh generic-all
891
892# Already in use port issues? othervm solaris
893java/rmi/activation/rmidViaInheritedChannel/InheritedChannelNotServerSocket.java generic-all
894java/rmi/activation/rmidViaInheritedChannel/RmidViaInheritedChannel.java generic-all
895
896# Address already in use, othervm mode, solaris
897java/rmi/activation/Activatable/elucidateNoSuchMethod/ElucidateNoSuchMethod.java generic-all
898java/rmi/activation/Activatable/forceLogSnapshot/ForceLogSnapshot.java generic-all
899
900# Registry already running on port, solaris
901java/rmi/Naming/legalRegistryNames/LegalRegistryNames.java generic-all
902
903# Fails on Linux 32 and 64bit -server?, impl not garbage collected???
904java/rmi/transport/pinLastArguments/PinLastArguments.java generic-all
905
906# Times out on solaris sparc
907java/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???
911sun/rmi/transport/tcp/DeadCachedConnection.java generic-all
912
913# Connection errors in othervm on Solaris 10 sparc, same port???
914java/rmi/activation/Activatable/checkActivateRef/CheckActivateRef.java generic-all
915java/rmi/activation/Activatable/checkAnnotations/CheckAnnotations.java generic-all
916java/rmi/activation/Activatable/checkImplClassLoader/CheckImplClassLoader.java generic-all
917java/rmi/activation/Activatable/checkRegisterInLog/CheckRegisterInLog.java generic-all
918java/rmi/activation/Activatable/createPrivateActivable/CreatePrivateActivatable.java generic-all
919java/rmi/activation/Activatable/downloadParameterClass/DownloadParameterClass.java generic-all
920java/rmi/activation/Activatable/extLoadedImpl/ext.sh generic-all
921java/rmi/activation/Activatable/inactiveGroup/InactiveGroup.java generic-all
922java/rmi/activation/Activatable/lookupActivationSystem/LookupActivationSystem.java generic-all
923java/rmi/activation/Activatable/nestedActivate/NestedActivate.java generic-all
924java/rmi/activation/Activatable/restartCrashedService/RestartCrashedService.java generic-all
925java/rmi/activation/Activatable/restartLatecomer/RestartLatecomer.java generic-all
926java/rmi/activation/Activatable/shutdownGracefully/ShutdownGracefully.java generic-all
927java/rmi/activation/Activatable/unregisterInactive/UnregisterInactive.java generic-all
928java/rmi/activation/ActivateFailedException/activateFails/ActivateFails.java generic-all
929java/rmi/activation/ActivationGroup/downloadActivationGroup/DownloadActivationGroup.java generic-all
930java/rmi/activation/ActivationSystem/activeGroup/IdempotentActiveGroup.java generic-all
931java/rmi/reliability/juicer/AppleUserImpl.java generic-all
932java/rmi/server/RMISocketFactory/useSocketFactory/unicast/UseCustomSocketFactory.java generic-all
933java/rmi/server/UnicastRemoteObject/keepAliveDuringCall/KeepAliveDuringCall.java generic-all
934java/rmi/transport/handshakeTimeout/HandshakeTimeout.java generic-all
935java/rmi/activation/Activatable/restartService/RestartService.java generic-all
936java/rmi/activation/ActivationSystem/modifyDescriptor/ModifyDescriptor.java generic-all
937java/rmi/activation/ActivationSystem/stubClassesPermitted/StubClassesPermitted.java generic-all
938java/rmi/activation/ActivationSystem/unregisterGroup/UnregisterGroup.java generic-all
939java/rmi/activation/CommandEnvironment/SetChildEnv.java generic-all
940java/rmi/registry/classPathCodebase/ClassPathCodebase.java generic-all
941java/rmi/registry/reexport/Reexport.java generic-all
942java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java generic-all
943java/rmi/server/Unreferenced/leaseCheckInterval/LeaseCheckInterval.java generic-all
944java/rmi/server/Unreferenced/unreferencedContext/UnreferencedContext.java generic-all
945java/rmi/server/useCustomRef/UseCustomRef.java generic-all
946java/rmi/transport/checkFQDN/CheckFQDN.java generic-all
947java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all
948java/rmi/server/RMISocketFactory/useSocketFactory/activatable/UseCustomSocketFactory.java generic-all
949java/rmi/server/RMISocketFactory/useSocketFactory/registry/UseCustomSocketFactory.java generic-all
950java/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
958java/security/SignedObject/Correctness.java generic-all
959
960# Fails on OpenSolaris, see 7032257
961sun/security/pkcs11/ec/ReadCertificates.java generic-all
962sun/security/pkcs11/ec/ReadPKCS12.java generic-all
963sun/security/pkcs11/ec/TestCurves.java generic-all
964sun/security/pkcs11/ec/TestECDSA.java generic-all
965sun/security/pkcs11/ec/TestECGenSpec.java generic-all
966sun/security/pkcs11/ec/TestKeyFactory.java generic-all
967sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsURLConnection/CriticalSubjectAltName.java generic-all
968sun/security/validator/CertReplace.java generic-all
969
970# java.security.cert.CertificateException: Certificate contains unsupported critical extensions: [2.5.29.17]
971sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/DNSIdentities.java generic-all
972sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/IPAddressIPIdentities.java generic-all
973sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/IPIdentities.java generic-all
974sun/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
977sun/security/tools/jarsigner/emptymanifest.sh generic-all
978
979# Fails almost everywhere: Unexpected exit from test [exit code: 1]
980com/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)
984sun/security/tools/keytool/StartDateTest.java generic-all
985
986# Run too slow on Solaris 10 sparc
987sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/SSLSocketTimeoutNulls.java solaris-sparc
988sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ClientTimeout.java solaris-sparc
989sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ServerTimeout.java solaris-sparc
990sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/ReadTimeout.java solaris-sparc
991sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/NotifyHandshakeTest.sh solaris-sparc
992sun/security/tools/keytool/AltProviderPath.sh solaris-sparc
993
994# OpenSolaris, fails to compile when run with -samevm
995sun/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
998sun/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
1001sun/security/tools/jarsigner/AlgOptions.sh solaris-sparc
1002sun/security/provider/PolicyFile/getinstance/getinstance.sh solaris-sparc
1003
1004# Timed out, Solaris 10 64bit sparcv9
1005com/sun/crypto/provider/Cipher/DES/PaddingTest.java generic-all
1006
1007# Othervm, sparc, NoRouteToHostException: Cannot assign requested address
1008sun/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?
1012sun/security/pkcs11/rsa/TestKeyPairGenerator.java generic-all
1013
1014# Times out on windows X64, othervm mode
1015# Solaris sparc and sparcv9 -server, timeout
1016sun/security/ssl/javax/net/ssl/NewAPIs/SessionTimeOutTests.java generic-all
1017
1018# Various failures on Linux Fedora 9 X64, othervm mode
1019lib/security/cacerts/VerifyCACerts.java generic-all
1020sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/TestAllSuites.java generic-all
1021sun/security/ssl/sanity/ciphersuites/CheckCipherSuites.java generic-all
1022sun/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?
1026sun/security/ssl/sanity/interop/ClientJSSEServerJSSE.java generic-all
1027
1028# Linux i586 -server, buffer too short to hold shared secret?
1029com/sun/crypto/provider/KeyAgreement/DHKeyAgreement2.java generic-all
1030
1031# Timeout on solaris-sparcv9 or exception thrown
1032com/sun/crypto/provider/Cipher/RSA/TestOAEP_KAT.java solaris-all
1033
1034# Leaving file open: SerialVersion.current, windows samevm
1035java/security/BasicPermission/SerialVersion.java generic-all
1036
1037# Solaris 11 i586, these all fail with samevm, need to be othervm???
1038java/security/BasicPermission/NullOrEmptyName.java generic-all
1039
1040# Suspect missing close() on file PermClass.current, windows samevm cascade
1041java/security/BasicPermission/PermClass.java generic-all
1042
1043# Solaris 11 i586, these all fail with samevm, need to be othervm???
1044java/security/KeyPairGenerator/Failover.java generic-all
1045java/security/Provider/DefaultPKCS11.java generic-all
1046java/security/SecureClassLoader/DefineClassByteBuffer.java generic-all
1047java/security/SecureRandom/GetAlgorithm.java generic-all
1048java/security/Security/removing/RemoveProviders.java generic-all
1049java/security/Signature/ByteBuffers.java generic-all
1050java/security/Signature/NONEwithRSA.java generic-all
1051java/security/Signature/SignWithOutputBuffer.java generic-all
1052java/security/Signature/TestInitSignWithMyOwnRandom.java generic-all
1053java/security/UnresolvedPermission/AccessorMethods.java generic-all
1054java/security/UnresolvedPermission/Equals.java generic-all
1055
1056# Problems with windows x64
1057sun/security/mscapi/IsSunMSCAPIAvailable.sh windows-x64
1058sun/security/mscapi/RSAEncryptDecrypt.sh windows-x64
1059
1060# Do not seem to run on windows machines? dll missing?
1061sun/security/pkcs11/Cipher/ReinitCipher.java windows-all
1062sun/security/pkcs11/Cipher/TestRSACipher.java windows-all
1063sun/security/pkcs11/Cipher/TestSymmCiphersNoPad.java windows-all
1064
1065# Do not seem to run on windows machines? dll missing?
1066sun/security/pkcs11/ec/ReadCertificates.java windows-all
1067sun/security/pkcs11/ec/ReadPKCS12.java windows-all
1068sun/security/pkcs11/ec/TestCurves.java windows-all
1069sun/security/pkcs11/ec/TestECDH.java windows-all
1070sun/security/pkcs11/ec/TestECDSA.java windows-all
1071sun/security/pkcs11/ec/TestECGenSpec.java windows-all
1072sun/security/pkcs11/ec/TestKeyFactory.java windows-all
1073
1074# Do not seem to run on windows machines? dll missing?
1075sun/security/pkcs11/KeyAgreement/TestShort.java windows-all
1076sun/security/pkcs11/KeyGenerator/DESParity.java windows-all
1077
1078# Exception in test solaris-sparc -client -server, no windows
1079sun/security/pkcs11/KeyGenerator/TestKeyGenerator.java windows-all solaris-all
1080
1081# Do not seem to run on windows machines? dll missing?
1082sun/security/pkcs11/KeyStore/Basic.sh windows-all
1083sun/security/pkcs11/KeyStore/ClientAuth.sh windows-all
1084
1085# Do not seem to run on windows machines? dll missing?
1086sun/security/pkcs11/Mac/ReinitMac.java windows-all
1087sun/security/pkcs11/MessageDigest/ByteBuffers.java windows-all
1088sun/security/pkcs11/MessageDigest/DigestKAT.java windows-all
1089sun/security/pkcs11/MessageDigest/ReinitDigest.java windows-all
1090sun/security/pkcs11/Provider/ConfigQuotedString.sh windows-all
1091sun/security/pkcs11/Provider/Login.sh windows-all
1092sun/security/pkcs11/rsa/KeyWrap.java windows-all
1093sun/security/pkcs11/rsa/TestCACerts.java windows-all
1094sun/security/pkcs11/rsa/TestKeyFactory.java windows-all
1095sun/security/pkcs11/rsa/TestSignatures.java windows-all
1096sun/security/pkcs11/SampleTest.java windows-all
1097sun/security/pkcs11/SecureRandom/Basic.java windows-all
1098sun/security/pkcs11/Serialize/SerializeProvider.java windows-all
1099sun/security/pkcs11/Signature/ByteBuffers.java windows-all
1100sun/security/pkcs11/Signature/ReinitSignature.java windows-all
1101sun/security/pkcs11/Signature/TestDSA.java windows-all
1102sun/security/pkcs11/tls/TestKeyMaterial.java windows-all
1103sun/security/pkcs11/tls/TestMasterSecret.java windows-all
1104sun/security/pkcs11/tls/TestPremaster.java windows-all
1105sun/security/pkcs11/tls/TestPRF.java windows-all
1106
1107# Fails on OpenSolaris java.net.BindException: Address already in use
1108sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java generic-all
1109
1110# Timeout on solaris-sparcv9 or ArrayIndexOutOfBoundsException?
1111sun/security/rsa/TestKeyPairGeneratorLength.java solaris-all
1112sun/security/rsa/TestSignatures.java solaris-all
1113
1114# Timeout on solaris-sparc and i586 and x64, -client and -server
1115sun/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"
1122javax/swing/JLabel/6501991/bug6501991.java generic-all
1123
1124############################################################################
1125
1126# jdk_text
1127
1128# Linux x64 occasional errors, no details
1129java/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
1141sun/tools/jstatd/jstatdDefaults.sh generic-all
1142
1143# Native allocation errors on windows
1144tools/pack200/MemoryAllocatorTest.java generic-all
1145
1146# Output of jps differs from expected output.
1147# Invalid argument count on solaris-sparc and x64
1148sun/tools/jstatd/jstatdPort.sh generic-all
1149
1150# othervm mode, Could not synchronize with target
1151sun/tools/jps/jps-l_1.sh generic-all
1152sun/tools/jps/jps-l_2.sh generic-all
1153sun/tools/jps/jps-lm.sh generic-all
1154sun/tools/jps/jps-Vvml_2.sh generic-all
1155sun/tools/jps/jps-m_2.sh generic-all
1156
1157# Fails with othervm on OpenSolaris
1158sun/tools/jps/jps-Defaults.sh generic-all
1159sun/tools/jps/jps-V_2.sh generic-all
1160sun/tools/jps/jps-Vm_2.sh generic-all
1161sun/tools/jps/jps-Vvml.sh generic-all
1162sun/tools/jps/jps-v_1.sh generic-all
1163sun/tools/jps/jps-vm_1.sh generic-all
1164sun/tools/jps/jps-Vvm.sh generic-all
1165sun/tools/jps/jps-m.sh generic-all
1166
1167# Server name error, port 2098 problem?
1168sun/tools/jstatd/jstatdServerName.sh generic-all
1169
1170# Problems on windows, jmap.exe hangs?
1171com/sun/tools/attach/BasicTests.sh windows-all
1172
1173# Unexpected Monitor Exception, solaris sparc -client
1174sun/jvmstat/monitor/MonitoredVm/MonitorVmStartTerminate.sh generic-all
1175
1176# Problems on windows, jmap.exe hangs? (these run jmap)
1177sun/tools/jmap/Basic.sh windows-all
1178
1179# Invalid argument count on solaris-sparc and x64
1180sun/tools/jstatd/jstatdDefaults.sh solaris-all
1181
1182# Solaris sparcv9, jps output does not match, x64 different
1183sun/tools/jstatd/jstatdExternalRegistry.sh solaris-all
1184
1185# Solaris 10 sparc 32bit -client, java.lang.AssertionError: Some tests failed
1186tools/jar/JarEntryTime.java generic-all
1187
1188# These tests fail on solaris sparc, all the time
1189tools/jar/ChangeDir.java generic-all
1190
1191# Cannot write jar, on OpenSolaris and windows
1192# Also, possible problems on windows, jmap.exe hangs?
1193tools/jar/index/MetaInf.java generic-all
1194
1195# Cannot compile on OpenSolaris?
1196com/sun/tools/extcheck/TestExtcheckArgs.java generic-all
1197
1198############################################################################
1199
1200# jdk_util
1201
1202# Fails unpredictably: 6633113
1203java/util/concurrent/SynchronousQueue/Fairness.java generic-all
1204
1205# Fails on OpenSolaris, see 6876961
1206java/util/ResourceBundle/Test4300693.java generic-all
1207
1208# Fails Windows 2000, AssertionError: Some tests failed at Basic.java:96
1209java/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"
1213java/util/Arrays/ArrayObjectMethods.java generic-all
1214
1215# Windows 2000, -client, samevm, java.lang.Error: Completed != 2
1216java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
1217
1218# Windows X64, Executor Stuck samevm mode:
1219java/util/concurrent/FutureTask/BlockingTaskExecutor.java generic-all
1220
1221# Problems on windows, jmap.exe hangs? (these run jmap), fails on Solaris 10 x86
1222java/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?
1226java/util/concurrent/Executors/AutoShutdown.java generic-all
1227
1228# Fails on solaris-sparc -server (Set not equal to copy. 1)
1229java/util/EnumSet/EnumSetBash.java solaris-sparc
1230
1231# Failing to close an input stream? "foo", triggers samevm windows failures
1232java/util/Formatter/Constructors.java generic-all
1233
1234# Need to be marked othervm, or changed to be samevm safe
1235java/util/Locale/Bug4175998Test.java generic-all
1236java/util/Locale/Bug4184873Test.java generic-all
1237java/util/Locale/LocaleTest.java generic-all
1238
1239# Need to be marked othervm, or changed to be samevm safe
1240java/util/logging/LoggingDeadlock.java generic-all
1241java/util/logging/LoggingDeadlock2.java generic-all
1242java/util/logging/LoggingMXBeanTest.java generic-all
1243java/util/logging/LoggingMXBeanTest2.java generic-all
1244java/util/logging/LoggingNIOChange.java generic-all
1245java/util/logging/ParentLoggersTest.java generic-all
1246
1247# Need to be marked othervm, or changed to be samevm safe
1248java/util/ResourceBundle/Bug4168625Test.java generic-all
1249java/util/ResourceBundle/Bug6359330.java generic-all
1250java/util/ResourceBundle/TestBug4179766.java generic-all
1251
1252# Need to be marked othervm, or changed to be samevm safe
1253java/util/WeakHashMap/GCDuringIteration.java generic-all
1254
1255# Possible missing input stream close()? Causes samevm issues on windows
1256java/util/zip/InfoZip.java generic-all
1257
1258# Missing a close() on file Test0.zip? windows samevm cascade problem
1259java/util/zip/ZipFile/Comment.java generic-all
1260
1261# Suspect missing close() on bad*.zip files, windows cascade errors with samevm
1262java/util/zip/ZipFile/CorruptedZipFiles.java generic-all
1263
1264# Should be samevm but causes problems with samevm, no details:
1265java/util/zip/ZipFile/ManyEntries.java generic-all
1266
1267############################################################################
1268
Note: See TracBrowser for help on using the repository browser.