ohair@1821
|
1 ###########################################################################
|
ohair@1821
|
2 #
|
ohair@3909
|
3 # Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
|
ohair@1821
|
4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
ohair@1821
|
5 #
|
ohair@1821
|
6 # This code is free software; you can redistribute it and/or modify it
|
ohair@1821
|
7 # under the terms of the GNU General Public License version 2 only, as
|
ohair@2362
|
8 # published by the Free Software Foundation. Oracle designates this
|
ohair@1821
|
9 # particular file as subject to the "Classpath" exception as provided
|
ohair@2362
|
10 # by Oracle in the LICENSE file that accompanied this code.
|
ohair@1821
|
11 #
|
ohair@1821
|
12 # This code is distributed in the hope that it will be useful, but WITHOUT
|
ohair@1821
|
13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
ohair@1821
|
14 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
ohair@1821
|
15 # version 2 for more details (a copy is included in the LICENSE file that
|
ohair@1821
|
16 # accompanied this code).
|
ohair@1821
|
17 #
|
ohair@1821
|
18 # You should have received a copy of the GNU General Public License version
|
ohair@1821
|
19 # 2 along with this work; if not, write to the Free Software Foundation,
|
ohair@1821
|
20 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
ohair@1821
|
21 #
|
ohair@2362
|
22 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
ohair@2362
|
23 # or visit www.oracle.com if you need additional information or have any
|
ohair@2362
|
24 # questions.
|
ohair@1821
|
25 #
|
ohair@1821
|
26 ###########################################################################
|
ohair@1821
|
27 #
|
ohair@1821
|
28 # List of tests that should not be run by test/Makefile, for various reasons:
|
ohair@1821
|
29 # 1. Does not run with jtreg -samevm mode
|
ohair@1821
|
30 # 2. Causes problems in jtreg -samevm mode for jtreg or tests that follow it
|
ohair@1821
|
31 # 3. The test is too slow or consumes too many system resources
|
ohair@1821
|
32 # 4. The test fails when run on any official build systems
|
ohair@1821
|
33 #
|
ohair@1821
|
34 # It is possible that a test being on this list is a mistake, and that some
|
ohair@1821
|
35 # other test in samevm mode caused tests to fail, mistakes happen.
|
ohair@1821
|
36 #
|
ohair@1821
|
37 # Tests marked @ignore are not run by test/Makefile, but harmless to be listed.
|
ohair@1821
|
38 #
|
ohair@1821
|
39 # Tests that explicitly state "@run main/othervm ...", and are not listed here,
|
ohair@1821
|
40 # will be run in the same batch as the samevm tests.
|
ohair@1821
|
41 #
|
ohair@1821
|
42 # Shell tests are othervm by default.
|
ohair@1821
|
43 #
|
mduigou@3589
|
44 # List items are testnames followed by labels, all MUST BE commented
|
ohair@1821
|
45 # as to why they are here and use a label:
|
ohair@1821
|
46 # generic-all Problems on all platforms
|
ohair@1821
|
47 # generic-ARCH Where ARCH is one of: sparc, sparcv9, x64, i586, etc.
|
ohair@1821
|
48 # OSNAME-all Where OSNAME is one of: solaris, linux, windows
|
ohair@1821
|
49 # OSNAME-ARCH Specific on to one OSNAME and ARCH, e.g. solaris-x64
|
ohair@1821
|
50 # OSNAME-REV Specific on to one OSNAME and REV, e.g. solaris-5.8
|
mduigou@3589
|
51 #
|
ohair@1821
|
52 # More than one label is allowed but must be on the same line.
|
ohair@1821
|
53 #
|
ohair@1821
|
54 #############################################################################
|
ohair@1821
|
55 #
|
ohair@1821
|
56 # Running the tests:
|
ohair@1821
|
57 # cd test && make JT_HOME=jtreg_home PRODUCT_HOME=jdk_home jdk_all
|
ohair@1821
|
58 # Or instead of jdk_all, use any of the jdk_* targets.
|
ohair@1821
|
59 #
|
ohair@1821
|
60 # Samevm Notes:
|
ohair@1821
|
61 # * Although some tests may have only been seen to fail on some platforms,
|
ohair@1821
|
62 # they might be flagged as 'generic-all' because the problem they have
|
ohair@1821
|
63 # could cause hidden slowdowns on other platforms.
|
ohair@1821
|
64 # Most samevm problems will be generic-all, but windows usually dislikes
|
ohair@1821
|
65 # them the most.
|
ohair@1821
|
66 # Address already in use or connection errors indicate a generic port issue.
|
ohair@1821
|
67 # (this is not necessarily a samevm issue, but an issue for running the tests
|
ohair@1821
|
68 # on shared machines, two people or two test runs will collide).
|
ohair@1821
|
69 # * Samevm problem (windows in particular) is not closing all input/output
|
ohair@1821
|
70 # * Samevm problem when a test calls setSecurityManager()
|
ohair@1821
|
71 # * Samevm problem with setHttps*() is used? (not exactly sure here)
|
ohair@1821
|
72 # * Samevm problem when stuffing system properties with non Strings or anything
|
ohair@1821
|
73 # * Samevm problem when changing vm settings, or registering any vm actions
|
ohair@1821
|
74 # * Samevm problems with deleteOnExit(), if it must happen at end of test
|
ohair@1821
|
75 # * Samevm problems with URLClassLoader? (no details here)
|
ohair@1821
|
76 # * Samevm problems with dependence on predictable GC or finalizations
|
ohair@1821
|
77 #
|
ohair@1821
|
78 # Any of the above problems may mean the test needs to be flagged as "othervm".
|
ohair@1821
|
79 #
|
ohair@1821
|
80 #############################################################################
|
ohair@1821
|
81 #
|
ohair@1821
|
82 # Fixing the tests:
|
ohair@1821
|
83 #
|
ohair@1821
|
84 # Some tests just may need to be run with "othervm", and that can easily be
|
ohair@1821
|
85 # done my adding a @run line (or modifying any existing @run):
|
ohair@1821
|
86 # @run main/othervm NameOfMainClass
|
ohair@1821
|
87 # Make sure this @run follows any use of @library.
|
ohair@1821
|
88 # Otherwise, if the test is a samevm possibility, make sure the test is
|
ohair@1821
|
89 # cleaning up after itself, closing all streams, deleting temp files, etc.
|
ohair@1821
|
90 #
|
ohair@1821
|
91 # Keep in mind that the bug could be in many places, and even different per
|
ohair@1821
|
92 # platform, it could be a bug in any one of:
|
ohair@1821
|
93 # - the testcase
|
ohair@1821
|
94 # - the jdk (jdk classes, native code, or hotspot)
|
ohair@1821
|
95 # - the native compiler
|
ohair@1821
|
96 # - the javac compiler
|
ohair@1821
|
97 # - the OS (depends on what the testcase does)
|
ohair@1821
|
98 #
|
ohair@1821
|
99 # If you managed to really fix one of these tests, here is how you can
|
ohair@1821
|
100 # remove tests from this list:
|
ohair@1821
|
101 # 1. Make sure test passes on all platforms with samevm, or mark it othervm
|
ohair@1821
|
102 # 2. Make sure test passes on all platforms when run with it's entire group
|
ohair@1821
|
103 # 3. Make sure both VMs are tested, -server and -client, if possible
|
ohair@1821
|
104 # 4. Make sure you try the -d64 option on Solaris
|
ohair@1821
|
105 # 5. Use a tool like JPRT or something to verify these results
|
ohair@1821
|
106 # 6. Delete lines in this file, include the changes with your test changes
|
ohair@1821
|
107 #
|
ohair@1821
|
108 # You may need to repeat your testing 2 or even 3 times to verify good
|
ohair@1821
|
109 # results, some of these samevm failures are not very predictable.
|
ohair@1821
|
110 #
|
ohair@1821
|
111 #############################################################################
|
ohair@1821
|
112
|
ohair@1821
|
113 ############################################################################
|
ohair@1821
|
114
|
ohair@1821
|
115 # jdk_awt
|
ohair@1821
|
116
|
ohair@1821
|
117 # None of the awt tests are using samevm, might not be worth the effort due
|
ohair@1821
|
118 # to the vm overhead not being enough to make a difference.
|
ohair@1821
|
119 # In general, the awt tests are problematic with or without samevm, and there
|
ohair@1821
|
120 # are issues with using a Xvfb display.
|
ohair@1821
|
121
|
ohair@1821
|
122 # Fails on solaris sparc, timedout? in othervm mode
|
ohair@1821
|
123 java/awt/event/MouseEvent/AcceptExtraButton/AcceptExtraButton.java generic-all
|
ohair@1821
|
124
|
ohair@1821
|
125 # Causes hang in samevm mode??? Solaris 11 i586
|
ohair@1821
|
126 java/awt/FullScreen/SetFSWindow/FSFrame.java generic-all
|
ohair@1821
|
127
|
ohair@1821
|
128 # Fails on solaris 11 i586, -client, in othervm mode not sure why
|
ohair@1821
|
129 java/awt/Component/PrintAllXcheckJNI/PrintAllXcheckJNI.java generic-all
|
ohair@1821
|
130 java/awt/Focus/CloseDialogActivateOwnerTest/CloseDialogActivateOwnerTest.java generic-all
|
ohair@1821
|
131 java/awt/FontClass/FontAccess.java generic-all
|
ohair@1821
|
132 java/awt/Mixing/HWDisappear.java generic-all
|
ohair@1821
|
133 java/awt/Mixing/MixingInHwPanel.java generic-all
|
ohair@1821
|
134 java/awt/Mouse/MaximizedFrameTest/MaximizedFrameTest.html generic-all
|
ohair@1821
|
135 java/awt/Robot/AcceptExtraMouseButtons/AcceptExtraMouseButtons.java generic-all
|
ohair@1821
|
136 java/awt/Toolkit/SecurityTest/SecurityTest2.java generic-all
|
ohair@1821
|
137 java/awt/image/mlib/MlibOpsTest.java generic-all
|
ohair@1821
|
138
|
ohair@1821
|
139 # Fails on windows, othervm mode, various errors
|
ohair@1821
|
140 java/awt/Focus/NonFocusableWindowTest/NonfocusableOwnerTest.java generic-all
|
ohair@1821
|
141 java/awt/Focus/OwnedWindowFocusIMECrashTest/OwnedWindowFocusIMECrashTest.java generic-all
|
ohair@1821
|
142 java/awt/FullScreen/NoResizeEventOnDMChangeTest/NoResizeEventOnDMChangeTest.java generic-all
|
ohair@1821
|
143 java/awt/Mouse/MouseModifiersUnitTest/MouseModifiersUnitTest_Standard.java generic-all
|
ohair@1821
|
144 java/awt/event/KeyEvent/KeyTyped/CtrlASCII.html generic-all
|
ohair@1821
|
145 java/awt/font/Threads/FontThread.java generic-all
|
ohair@1821
|
146 java/awt/print/PrinterJob/PrtException.java generic-all
|
ohair@1821
|
147
|
ohair@1821
|
148 # Fails with windows X64, othervm, -server
|
ohair@1821
|
149 com/sun/awt/Translucency/WindowOpacity.java generic-all
|
ohair@1821
|
150 java/awt/EventDispatchThread/HandleExceptionOnEDT/HandleExceptionOnEDT.java generic-all
|
ohair@1821
|
151 java/awt/EventDispatchThread/LoopRobustness/LoopRobustness.html generic-all
|
ohair@1821
|
152 java/awt/Focus/AppletInitialFocusTest/AppletInitialFocusTest1.html generic-all
|
ohair@1821
|
153 java/awt/Focus/FocusEmbeddedFrameTest/FocusEmbeddedFrameTest.java generic-all
|
ohair@1821
|
154 java/awt/Frame/LayoutOnMaximizeTest/LayoutOnMaximizeTest.java generic-all
|
ohair@1821
|
155 java/awt/FullScreen/TranslucentWindow/TranslucentWindow.java generic-all
|
ohair@1821
|
156 java/awt/Mixing/MixingOnShrinkingHWButton.java generic-all
|
ohair@1821
|
157 java/awt/Mouse/MouseModifiersUnitTest/ExtraButtonDrag.java generic-all
|
ohair@1821
|
158
|
ohair@1821
|
159 ############################################################################
|
ohair@1821
|
160
|
ohair@1821
|
161 # jdk_beans
|
ohair@1821
|
162
|
ohair@1821
|
163 # A large set of the beans tests set the security manager, which would seem
|
ohair@1821
|
164 # to indicate that a large number of them should be "othervm", yet are all
|
ohair@1821
|
165 # very small tests and could greatly benefit from a samevm test run.
|
ohair@1821
|
166 # So a large batch of beans tests are currently run with othervm mode.
|
ohair@1821
|
167
|
ohair@2812
|
168 # Filed 6986807
|
ohair@2812
|
169 java/beans/Introspector/TestTypeResolver.java generic-all
|
ohair@2812
|
170
|
ohair@2812
|
171 # Filed 6986813
|
ohair@2812
|
172 java/beans/Introspector/memory/Test4508780.java generic-all
|
ohair@2812
|
173
|
ohair@1821
|
174 # Linux, some kind of problems with X11 display
|
ohair@1821
|
175 java/beans/PropertyChangeSupport/Test4682386.java generic-all
|
ohair@1821
|
176 java/beans/PropertyChangeSupport/TestSynchronization.java generic-all
|
ohair@1821
|
177 java/beans/Statement/Test4653179.java generic-all
|
ohair@1821
|
178
|
ohair@1821
|
179 # Runs REALLY slow on Solaris sparc for some reason, both -client and -server
|
ohair@1821
|
180 java/beans/XMLEncoder/Test4625418.java solaris-sparc
|
ohair@1821
|
181
|
ohair@1821
|
182 # Problems with samevm and setting security manager (speculation partially)
|
ohair@1821
|
183 java/beans/Introspector/4168475/Test4168475.java generic-all
|
ohair@1821
|
184 java/beans/Introspector/4520754/Test4520754.java generic-all
|
ohair@1821
|
185 java/beans/Introspector/6380849/TestBeanInfo.java generic-all
|
ohair@1821
|
186 java/beans/Introspector/Test4144543.java generic-all
|
ohair@1821
|
187
|
ohair@1821
|
188 # Failed to call method solaris-sparc???
|
ohair@1821
|
189 java/beans/EventHandler/Test6788531.java generic-all
|
ohair@1821
|
190
|
ohair@1821
|
191 # Jar or class not found???
|
ohair@1821
|
192 java/beans/XMLEncoder/6329581/Test6329581.java generic-all
|
ohair@1821
|
193
|
ohair@1821
|
194 ############################################################################
|
ohair@1821
|
195
|
ohair@1821
|
196 # jdk_lang
|
ohair@1821
|
197
|
mduigou@4215
|
198 # requires junit
|
mduigou@4215
|
199 java/lang/invoke/InvokeDynamicPrintArgs.java generic-all
|
mduigou@4215
|
200
|
ohair@1821
|
201 ############################################################################
|
ohair@1821
|
202
|
ohair@1821
|
203 # jdk_management
|
ohair@1821
|
204
|
smarks@4482
|
205 # 7067973
|
smarks@4482
|
206 java/lang/management/MemoryMXBean/CollectionUsageThreshold.java generic-all
|
smarks@4482
|
207
|
ohair@2500
|
208 # Failing, bug was filed: 6959636
|
ohair@2500
|
209 javax/management/loading/LibraryLoader/LibraryLoaderTest.java generic-all
|
ohair@2500
|
210
|
ohair@2402
|
211 # Access denied messages on windows/mks, filed 6954450
|
ohair@2402
|
212 sun/management/jmxremote/bootstrap/RmiSslNoKeyStoreTest.sh windows-all
|
ohair@2402
|
213
|
ohair@2203
|
214 # Fails on linux: KO: StringMonitor notification missed or not emitted
|
ohair@2203
|
215 javax/management/monitor/NonComparableAttributeValueTest.java generic-all
|
ohair@2203
|
216
|
ohair@2203
|
217 # Port conflict? Fails with communication error
|
ohair@2203
|
218 sun/management/jmxremote/bootstrap/PasswordFilePermissionTest.sh generic-all
|
ohair@2203
|
219
|
ohair@2017
|
220 # Fails on Windows 2000, Test failed for iiop java.lang.NullPointerException
|
ohair@2017
|
221 # at org.omg.stub.javax.management.remote.rmi._RMIConnectionImpl_Tie._invoke(Unknown Source)
|
ohair@2017
|
222 # at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(CorbaServerRequestDispatcherImpl.java:653)
|
ohair@2017
|
223 javax/management/remote/mandatory/connection/ReconnectTest.java generic-all
|
ohair@2017
|
224
|
ohair@1821
|
225 # Solaris 10 sparc, NPE from org.omg.stub.javax.management.remote.rmi._RMIConnectionImpl_Tie._invoke
|
ohair@1821
|
226 javax/management/remote/mandatory/threads/ExecutorTest.java generic-all
|
ohair@1821
|
227
|
ohair@1821
|
228 # Linux 32bit Fedora 9, IllegalStateException
|
ohair@1821
|
229 javax/management/monitor/RuntimeExceptionTest.java generic-all
|
ohair@1821
|
230
|
mduigou@3589
|
231 # Problems with rmi connection, othervm
|
ohair@1821
|
232 javax/management/remote/mandatory/subjectDelegation/SubjectDelegation2Test.java generic-all
|
ohair@1821
|
233
|
ohair@1821
|
234 # Fails with port already in use
|
ohair@1821
|
235 sun/management/jmxremote/bootstrap/SSLConfigFilePermissionTest.sh generic-all
|
ohair@1821
|
236
|
ohair@1821
|
237 # Fails with port already in use
|
ohair@1821
|
238 sun/management/jmxremote/bootstrap/RmiRegistrySslTest.sh generic-all
|
ohair@1821
|
239
|
ohair@1821
|
240 # Windows, connection can't last that long
|
ohair@1821
|
241 javax/management/eventService/LeaseTest.java generic-all
|
ohair@1821
|
242
|
ohair@1821
|
243 # Linux othervm, X64, java.lang.Exception: Failed: ratio=102.4027795593753
|
ohair@1821
|
244 javax/management/remote/mandatory/notif/ListenerScaleTest.java generic-all
|
ohair@1821
|
245
|
ohair@1821
|
246 # Windows run seems to have triggered a hotspot gc error (see 6801625)
|
ohair@1821
|
247 com/sun/management/HotSpotDiagnosticMXBean/DumpHeap.sh generic-all
|
ohair@1821
|
248
|
ohair@1821
|
249 # rmi problem? othervm, java.lang.reflect.UndeclaredThrowableException
|
ohair@1821
|
250 javax/management/remote/mandatory/subjectDelegation/SubjectDelegation3Test.java generic-all
|
ohair@1821
|
251
|
ohair@1821
|
252 # Linux Fedora 9 32bit NPE in rmi server somehere??? othervm
|
ohair@1821
|
253 javax/management/remote/mandatory/notif/NotificationBufferDeadlockTest.java generic-all
|
ohair@1821
|
254
|
ohair@1821
|
255 # Times out on solaris sparc, with othervm
|
ohair@1821
|
256 javax/management/eventService/AddRemoveListenerTest.java generic-all
|
ohair@1821
|
257
|
ohair@1821
|
258 # Linux i586 and x64 -server, timed out waiting for threads to expire? othervm
|
ohair@1821
|
259 javax/management/eventService/EventClientThreadTest.java generic-all
|
ohair@1821
|
260
|
ohair@1821
|
261 # Linux i586 -server, Expected to receive 20, but got 21, othervm
|
ohair@1821
|
262 # Fails on Linux X64 -server 20!=21
|
ohair@1821
|
263 javax/management/eventService/FetchingTest.java generic-all
|
ohair@1821
|
264
|
ohair@1821
|
265 # NPE on windows 2000 i586 -client and -server
|
ohair@1821
|
266 javax/management/eventService/CustomForwarderTest.java windows-all
|
ohair@1821
|
267
|
ohair@1821
|
268 # Windows i586 failure, callback did not complete
|
ohair@1821
|
269 javax/management/eventService/LeaseManagerDeadlockTest.java windows-all
|
ohair@1821
|
270
|
ohair@1821
|
271 # Port already in use
|
ohair@1821
|
272 sun/management/jmxremote/bootstrap/LocalManagementTest.sh generic-all
|
ohair@1821
|
273
|
ohair@1821
|
274 # Failed to initialize connector (also overflowing jtreg io buffers)
|
ohair@1821
|
275 sun/management/jmxremote/bootstrap/RmiBootstrapTest.sh generic-all
|
ohair@1821
|
276 sun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh generic-all
|
ohair@1821
|
277
|
ohair@1821
|
278 # Windows X64, java.lang.IllegalStateException
|
ohair@1821
|
279 javax/management/monitor/AttributeArbitraryDataTypeTest.java generic-all
|
ohair@1821
|
280
|
ohair@1821
|
281 ############################################################################
|
ohair@1821
|
282
|
ohair@1821
|
283 # jdk_math
|
ohair@1821
|
284
|
ohair@1821
|
285 ############################################################################
|
ohair@1821
|
286
|
ohair@1821
|
287 # jdk_misc
|
ohair@1821
|
288
|
ohair@1821
|
289 # Need to be marked othervm, or changed to be samevm safe
|
ohair@1821
|
290 com/sun/jndi/rmi/registry/RegistryContext/UnbindIdempotent.java generic-all
|
ohair@1821
|
291
|
ohair@1821
|
292 # Need to be marked othervm, or changed to be samevm safe
|
ohair@1821
|
293 com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
|
ohair@1821
|
294
|
ohair@1821
|
295 # Solaris sparc and others, exception in initializer
|
ohair@1821
|
296 javax/imageio/CachePremissionsTest/CachePermissionsTest.java generic-all
|
ohair@1821
|
297
|
ohair@1821
|
298 # Leaves file rgba_* open, fails with windows samevm
|
ohair@1821
|
299 javax/imageio/plugins/png/PngOutputTypeTest.java generic-all
|
ohair@1821
|
300
|
ohair@1821
|
301 # Suspect test.png file is left open, windows samevm problems
|
ohair@1821
|
302 javax/imageio/plugins/png/ITXtTest.java generic-all
|
ohair@1821
|
303
|
ohair@1821
|
304 # Solaris sparc and others, failed to compile testcase
|
ohair@1821
|
305 javax/imageio/metadata/DOML3Node.java generic-all
|
ohair@1821
|
306
|
ohair@1821
|
307 # One of these tests is leaving file IMGP1001.JPG open, windows samevm
|
ohair@1821
|
308 javax/imageio/plugins/jpeg/ConcurrentReadingTest.java generic-all
|
ohair@1821
|
309 javax/imageio/plugins/jpeg/ReadingInterruptionTest.java generic-all
|
ohair@1821
|
310
|
ohair@1821
|
311 # One of these files is missing a close on writer_* files, windows samevm
|
ohair@1821
|
312 javax/imageio/plugins/jpeg/ConcurrentWritingTest.java generic-all
|
ohair@1821
|
313 javax/imageio/plugins/jpeg/WritingInterruptionTest.java generic-all
|
ohair@1821
|
314
|
ohair@1821
|
315 # Leaving file test.jpg open, windows samevm
|
ohair@1821
|
316 javax/imageio/plugins/jpeg/ReadAsGrayTest.java generic-all
|
ohair@1821
|
317
|
ohair@1821
|
318 # Missing close on file wbmp*, windows samevm
|
ohair@1821
|
319 javax/imageio/plugins/wbmp/CanDecodeTest.java generic-all
|
ohair@1821
|
320
|
ohair@1934
|
321 # Failures on OpenSolaris, cannot read input files? samevm issues?
|
ohair@1934
|
322 javax/imageio/metadata/BooleanAttributes.java generic-all
|
ohair@1934
|
323 javax/imageio/plugins/bmp/BMPSubsamplingTest.java generic-all
|
ohair@1934
|
324 javax/imageio/plugins/bmp/TopDownTest.java generic-all
|
ohair@1934
|
325 javax/imageio/plugins/gif/EncodeSubImageTest.java generic-all
|
ohair@1934
|
326 javax/imageio/plugins/gif/GifTransparencyTest.java generic-all
|
ohair@1934
|
327 javax/imageio/plugins/png/GrayPngTest.java generic-all
|
ohair@1934
|
328 javax/imageio/plugins/png/ItxtUtf8Test.java generic-all
|
ohair@1934
|
329 javax/imageio/plugins/png/MergeStdCommentTest.java generic-all
|
ohair@1934
|
330 javax/imageio/plugins/png/ShortHistogramTest.java generic-all
|
ohair@1934
|
331 javax/imageio/plugins/shared/BitDepth.java generic-all
|
ohair@1934
|
332
|
ohair@1821
|
333 # Exclude all javax/print tests, even if they passed, they may need samevm work
|
ohair@1821
|
334
|
ohair@1821
|
335 # Times out on solaris-sparc, sparcv9, x64 -server, some on i586 -client
|
ohair@1821
|
336 javax/print/attribute/autosense/PrintAutoSenseData.java generic-all
|
ohair@1821
|
337 javax/print/attribute/Chroma.java generic-all
|
ohair@1821
|
338 javax/print/attribute/CollateAttr.java generic-all
|
ohair@1821
|
339 javax/print/attribute/PSCopiesFlavorTest.java generic-all
|
ohair@1821
|
340 javax/print/LookupServices.java generic-all
|
ohair@1821
|
341 javax/print/TestRaceCond.java generic-all
|
ohair@1821
|
342
|
ohair@1821
|
343 # These tests really require a printer (might all be windows only tests?)
|
ohair@1821
|
344 javax/print/CheckDupFlavor.java generic-all
|
ohair@1821
|
345 javax/print/PrintSE/PrintSE.sh generic-all
|
ohair@1821
|
346 javax/print/attribute/ChromaticityValues.java generic-all
|
ohair@1821
|
347 javax/print/attribute/GetCopiesSupported.java generic-all
|
ohair@1821
|
348 javax/print/attribute/SidesPageRangesTest.java generic-all
|
ohair@1821
|
349 javax/print/attribute/SupportedPrintableAreas.java generic-all
|
jgodinez@2043
|
350 javax/print/attribute/AttributeTest.java generic-all
|
ohair@1821
|
351
|
ohair@1821
|
352 # Only print test left, excluding just because all print tests have been
|
ohair@1821
|
353 javax/print/attribute/MediaMappingsTest.java generic-all
|
ohair@1821
|
354
|
alanb@4425
|
355 # Filed 7058852
|
alanb@4425
|
356 javax/sound/sampled/FileWriter/AlawEncoderSync.java generic-all
|
alanb@4425
|
357
|
ohair@1821
|
358 ############################################################################
|
ohair@1821
|
359
|
ohair@1821
|
360 # jdk_net
|
ohair@1821
|
361
|
alanb@4425
|
362 # Filed 7052625
|
alanb@4425
|
363 com/sun/net/httpserver/bugs/6725892/Test.java generic-all
|
alanb@4425
|
364
|
alanb@4425
|
365 # Filed 7036666
|
alanb@4425
|
366 com/sun/net/httpserver/Test9a.java generic-all
|
alanb@4425
|
367
|
ohair@1821
|
368 ############################################################################
|
ohair@1821
|
369
|
alanb@2546
|
370 # jdk_io
|
alanb@2546
|
371
|
alanb@2546
|
372 # 6962637
|
alanb@2546
|
373 java/io/File/MaxPathLength.java windows-all
|
alanb@2546
|
374
|
alanb@2546
|
375 ############################################################################
|
alanb@2546
|
376
|
ohair@1821
|
377 # jdk_nio
|
ohair@1821
|
378
|
alanb@2546
|
379 # 6963118
|
alanb@2546
|
380 java/nio/channels/Selector/Wakeup.java windows-all
|
ohair@2203
|
381
|
ohair@1821
|
382 ############################################################################
|
ohair@1821
|
383
|
ohair@1821
|
384 # jdk_rmi
|
ohair@1821
|
385
|
ohair@1821
|
386 # Port already in use, fails on sparc, othervm
|
ohair@1821
|
387 java/rmi/reliability/benchmark/runRmiBench.sh generic-all
|
ohair@1821
|
388
|
ohair@1821
|
389 # Already in use port issues? othervm solaris
|
ohair@1821
|
390 java/rmi/activation/rmidViaInheritedChannel/InheritedChannelNotServerSocket.java generic-all
|
ohair@1821
|
391 java/rmi/activation/rmidViaInheritedChannel/RmidViaInheritedChannel.java generic-all
|
ohair@1821
|
392
|
mchung@3405
|
393 java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java generic-all
|
mchung@3405
|
394 java/rmi/transport/dgcDeadLock/TestImpl_Stub.java generic-all
|
mchung@3405
|
395
|
ohair@1821
|
396 # Address already in use, othervm mode, solaris
|
ohair@1821
|
397 java/rmi/activation/Activatable/elucidateNoSuchMethod/ElucidateNoSuchMethod.java generic-all
|
ohair@1821
|
398 java/rmi/activation/Activatable/forceLogSnapshot/ForceLogSnapshot.java generic-all
|
ohair@1821
|
399
|
ohair@1821
|
400 # Registry already running on port, solaris
|
ohair@1821
|
401 java/rmi/Naming/legalRegistryNames/LegalRegistryNames.java generic-all
|
ohair@1821
|
402
|
ohair@1821
|
403 # Fails on Linux 32 and 64bit -server?, impl not garbage collected???
|
ohair@1821
|
404 java/rmi/transport/pinLastArguments/PinLastArguments.java generic-all
|
ohair@1821
|
405
|
ohair@1821
|
406 # Times out on solaris sparc
|
ohair@1821
|
407 java/rmi/server/RemoteServer/AddrInUse.java generic-all
|
ohair@1821
|
408
|
ohair@1821
|
409 # Connection error on Windows i586 -server
|
mduigou@3589
|
410 # Also connection errors in othervm on Solaris 10 sparc, same port???
|
ohair@1821
|
411 sun/rmi/transport/tcp/DeadCachedConnection.java generic-all
|
ohair@1821
|
412
|
mduigou@3589
|
413 # Connection errors in othervm on Solaris 10 sparc, same port???
|
ohair@1821
|
414 java/rmi/activation/Activatable/checkActivateRef/CheckActivateRef.java generic-all
|
ohair@1821
|
415 java/rmi/activation/Activatable/checkAnnotations/CheckAnnotations.java generic-all
|
ohair@1821
|
416 java/rmi/activation/Activatable/checkImplClassLoader/CheckImplClassLoader.java generic-all
|
ohair@1821
|
417 java/rmi/activation/Activatable/checkRegisterInLog/CheckRegisterInLog.java generic-all
|
ohair@1821
|
418 java/rmi/activation/Activatable/createPrivateActivable/CreatePrivateActivatable.java generic-all
|
ohair@1821
|
419 java/rmi/activation/Activatable/downloadParameterClass/DownloadParameterClass.java generic-all
|
ohair@1821
|
420 java/rmi/activation/Activatable/extLoadedImpl/ext.sh generic-all
|
ohair@1821
|
421 java/rmi/activation/Activatable/inactiveGroup/InactiveGroup.java generic-all
|
ohair@1821
|
422 java/rmi/activation/Activatable/lookupActivationSystem/LookupActivationSystem.java generic-all
|
ohair@1821
|
423 java/rmi/activation/Activatable/nestedActivate/NestedActivate.java generic-all
|
ohair@1821
|
424 java/rmi/activation/Activatable/restartCrashedService/RestartCrashedService.java generic-all
|
ohair@1821
|
425 java/rmi/activation/Activatable/restartLatecomer/RestartLatecomer.java generic-all
|
ohair@1821
|
426 java/rmi/activation/Activatable/shutdownGracefully/ShutdownGracefully.java generic-all
|
ohair@1821
|
427 java/rmi/activation/Activatable/unregisterInactive/UnregisterInactive.java generic-all
|
ohair@1821
|
428 java/rmi/activation/ActivateFailedException/activateFails/ActivateFails.java generic-all
|
ohair@1821
|
429 java/rmi/activation/ActivationGroup/downloadActivationGroup/DownloadActivationGroup.java generic-all
|
ohair@1821
|
430 java/rmi/activation/ActivationSystem/activeGroup/IdempotentActiveGroup.java generic-all
|
ohair@1821
|
431 java/rmi/reliability/juicer/AppleUserImpl.java generic-all
|
ohair@1821
|
432 java/rmi/server/RMISocketFactory/useSocketFactory/unicast/UseCustomSocketFactory.java generic-all
|
ohair@1821
|
433 java/rmi/server/UnicastRemoteObject/keepAliveDuringCall/KeepAliveDuringCall.java generic-all
|
ohair@1821
|
434 java/rmi/transport/handshakeTimeout/HandshakeTimeout.java generic-all
|
ohair@1821
|
435 java/rmi/activation/Activatable/restartService/RestartService.java generic-all
|
ohair@1821
|
436 java/rmi/activation/ActivationSystem/modifyDescriptor/ModifyDescriptor.java generic-all
|
ohair@1821
|
437 java/rmi/activation/ActivationSystem/stubClassesPermitted/StubClassesPermitted.java generic-all
|
ohair@1821
|
438 java/rmi/activation/ActivationSystem/unregisterGroup/UnregisterGroup.java generic-all
|
ohair@1821
|
439 java/rmi/activation/CommandEnvironment/SetChildEnv.java generic-all
|
ohair@1821
|
440 java/rmi/registry/classPathCodebase/ClassPathCodebase.java generic-all
|
ohair@1821
|
441 java/rmi/registry/reexport/Reexport.java generic-all
|
ohair@1821
|
442 java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java generic-all
|
ohair@1821
|
443 java/rmi/server/Unreferenced/leaseCheckInterval/LeaseCheckInterval.java generic-all
|
ohair@1821
|
444 java/rmi/server/Unreferenced/unreferencedContext/UnreferencedContext.java generic-all
|
ohair@1821
|
445 java/rmi/server/useCustomRef/UseCustomRef.java generic-all
|
ohair@1821
|
446 java/rmi/transport/checkFQDN/CheckFQDN.java generic-all
|
ohair@1821
|
447 java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all
|
ohair@1821
|
448 java/rmi/server/RMISocketFactory/useSocketFactory/activatable/UseCustomSocketFactory.java generic-all
|
ohair@1821
|
449 java/rmi/server/RMISocketFactory/useSocketFactory/registry/UseCustomSocketFactory.java generic-all
|
ohair@1821
|
450 java/rmi/server/UnicastRemoteObject/unexportObject/UnexportLeak.java generic-all
|
ohair@1821
|
451
|
ohair@1821
|
452 ############################################################################
|
ohair@1821
|
453
|
ohair@1821
|
454 # jdk_security
|
ohair@1821
|
455
|
ohair@2228
|
456 # Failing on Solaris i586, 3/9/2010, not a -samevm issue (jdk_security3)
|
ohair@2228
|
457 sun/security/pkcs11/Secmod/AddPrivateKey.java solaris-i586
|
ohair@2228
|
458 sun/security/pkcs11/ec/ReadCertificates.java solaris-i586
|
ohair@2228
|
459 sun/security/pkcs11/ec/ReadPKCS12.java solaris-i586
|
ohair@2228
|
460 sun/security/pkcs11/ec/TestCurves.java solaris-i586
|
ohair@2228
|
461 sun/security/pkcs11/ec/TestECDSA.java solaris-i586
|
weijun@4479
|
462 #sun/security/pkcs11/ec/TestECGenSpec.java solaris-i586
|
weijun@4479
|
463 #sun/security/pkcs11/ec/TestKeyFactory.java solaris-i586
|
weijun@4479
|
464 sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java solaris-i586
|
ohair@2228
|
465
|
weijun@4479
|
466 # Directly references PKCS11 class
|
weijun@4479
|
467 sun/security/pkcs11/Provider/Absolute.java windows-x64
|
ohair@2203
|
468
|
weijun@4479
|
469 # Fails on Fedora 9/Ubuntu 10.04 64bit, PKCS11Exception: CKR_DEVICE_ERROR
|
ohair@2017
|
470 sun/security/pkcs11/KeyAgreement/TestDH.java generic-all
|
ohair@2017
|
471
|
ohair@1821
|
472 # Run too slow on Solaris 10 sparc
|
ohair@1821
|
473 sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/SSLSocketTimeoutNulls.java solaris-sparc
|
ohair@1821
|
474 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ClientTimeout.java solaris-sparc
|
ohair@1821
|
475 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ServerTimeout.java solaris-sparc
|
ohair@1821
|
476 sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/ReadTimeout.java solaris-sparc
|
ohair@1821
|
477 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/NotifyHandshakeTest.sh solaris-sparc
|
ohair@1821
|
478
|
ohair@1821
|
479 # Solaris 10 sparc, passed/failed confusion? java.security.ProviderException: update() failed
|
ohair@1821
|
480 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/AsyncSSLSocketClose.java generic-all
|
ohair@1821
|
481
|
ohair@1821
|
482 # Othervm, sparc, NoRouteToHostException: Cannot assign requested address
|
ohair@1821
|
483 sun/security/ssl/javax/net/ssl/NewAPIs/SessionCacheSizeTests.java generic-all
|
ohair@1821
|
484
|
ohair@1821
|
485 # Times out on windows X64, othervm mode
|
ohair@1821
|
486 # Solaris sparc and sparcv9 -server, timeout
|
ohair@1821
|
487 sun/security/ssl/javax/net/ssl/NewAPIs/SessionTimeOutTests.java generic-all
|
ohair@1821
|
488
|
ohair@1821
|
489 # Various failures on Linux Fedora 9 X64, othervm mode
|
ohair@1821
|
490 sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/TestAllSuites.java generic-all
|
ohair@1821
|
491 sun/security/ssl/sanity/ciphersuites/CheckCipherSuites.java generic-all
|
ohair@1821
|
492
|
ohair@1821
|
493 # Various failures on Linux Fedora 9 X64, othervm mode
|
ohair@1821
|
494 sun/security/ssl/sanity/interop/ClientJSSEServerJSSE.java generic-all
|
ohair@1821
|
495
|
ohair@1821
|
496 ############################################################################
|
ohair@1821
|
497
|
ohair@1821
|
498 # jdk_swing (not using samevm)
|
ohair@1821
|
499
|
ohair@1821
|
500 # Fails on solaris 11 i586, with othervm
|
ohair@1821
|
501 javax/swing/JFileChooser/6570445/bug6570445.java generic-all
|
ohair@1821
|
502 javax/swing/JFileChooser/6738668/bug6738668.java generic-all
|
ohair@1821
|
503 javax/swing/JPopupMenu/6675802/bug6675802.java generic-all
|
ohair@1821
|
504 javax/swing/system/6799345/TestShutdown.java generic-all
|
ohair@1821
|
505
|
ohair@1821
|
506 ############################################################################
|
ohair@1821
|
507
|
ohair@1821
|
508 # jdk_text
|
ohair@1821
|
509
|
ohair@1821
|
510 # Linux x64 occasional errors, no details
|
ohair@1821
|
511 java/text/Bidi/Bug6665028.java linux-x64
|
ohair@1821
|
512
|
ohair@1821
|
513 ############################################################################
|
ohair@1821
|
514
|
ohair@1821
|
515 # jdk_tools
|
ohair@1821
|
516
|
ohair@2812
|
517 # Filed 6952105
|
ohair@2812
|
518 com/sun/jdi/SuspendThreadTest.java generic-all
|
ohair@2812
|
519
|
alanb@4425
|
520 # Filed 6653793
|
alanb@4425
|
521 com/sun/jdi/RedefineCrossEvent.java generic-all
|
alanb@4425
|
522
|
alanb@4425
|
523 # Filed 6987312
|
alanb@4425
|
524 com/sun/jdi/DoubleAgentTest.java generic-all
|
alanb@4425
|
525
|
alanb@4425
|
526 # Filed 7020857
|
alanb@4425
|
527 com/sun/jdi/FieldWatchpoints.java generic-all
|
alanb@4425
|
528
|
alanb@4425
|
529 # Filed 6402201
|
alanb@4425
|
530 com/sun/jdi/ProcessAttachTest.sh generic-all
|
alanb@4425
|
531
|
ohair@2812
|
532 # Filed 6986875
|
ohair@2812
|
533 sun/tools/jps/jps-Vvml.sh generic-all
|
ohair@2812
|
534
|
ohair@2812
|
535 # Filed 6979016
|
ohair@2812
|
536 sun/tools/jconsole/ResourceCheckTest.sh generic-all
|
ohair@2812
|
537
|
ohair@1821
|
538 ############################################################################
|
ohair@1821
|
539
|
ohair@1821
|
540 # jdk_util
|
ohair@1821
|
541
|
ohair@3866
|
542 # Filed 7027061
|
ohair@3866
|
543 java/util/Locale/Bug6989440.java windows-all
|
ohair@3866
|
544
|
ohair@2812
|
545 # Filed 6933803
|
ohair@2812
|
546 java/util/concurrent/ThreadPoolExecutor/CoreThreadTimeOut.java generic-all
|
ohair@2812
|
547
|
smarks@3653
|
548 # Filed 7022325
|
ohair@2203
|
549 # Fails with assertion error on windows
|
ohair@2203
|
550 # 11 separate stacktraces created... file reuse problem?
|
ohair@2203
|
551 java/util/zip/ZipFile/ReadLongZipFileName.java generic-all
|
ohair@2203
|
552
|
alanb@4425
|
553 # Filed 6772009
|
ohair@1821
|
554 java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
|
ohair@1821
|
555
|
ohair@1821
|
556 ############################################################################
|
ohair@1821
|
557
|