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