1 ########################################################################### 2 # 3 # Copyright (c) 2009, 2012, 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 # Tests marked @ignore are not run by test/Makefile, but harmless to be listed. 38 # 39 # Tests that explicitly state "@run main/othervm ...", and are not listed here, 40 # will be run in the same batch as the samevm tests. 41 # 42 # Shell tests are othervm by default. 43 # 44 # List items are testnames followed by labels, all MUST BE commented 45 # as to why they are here and use a label: 46 # generic-all Problems on all platforms 47 # generic-ARCH Where ARCH is one of: sparc, sparcv9, x64, i586, etc. 48 # OSNAME-all Where OSNAME is one of: solaris, linux, windows 49 # OSNAME-ARCH Specific on to one OSNAME and ARCH, e.g. solaris-x64 50 # OSNAME-REV Specific on to one OSNAME and REV, e.g. solaris-5.8 51 # 52 # More than one label is allowed but must be on the same line. 53 # 54 ############################################################################# 55 # 56 # Running the tests: 57 # cd test && make JT_HOME=jtreg_home PRODUCT_HOME=jdk_home jdk_all 58 # Or instead of jdk_all, use any of the jdk_* targets. 59 # 60 # Samevm Notes: 61 # * Although some tests may have only been seen to fail on some platforms, 62 # they might be flagged as 'generic-all' because the problem they have 63 # could cause hidden slowdowns on other platforms. 64 # Most samevm problems will be generic-all, but windows usually dislikes 65 # them the most. 66 # Address already in use or connection errors indicate a generic port issue. 67 # (this is not necessarily a samevm issue, but an issue for running the tests 68 # on shared machines, two people or two test runs will collide). 69 # * Samevm problem (windows in particular) is not closing all input/output 70 # * Samevm problem when a test calls setSecurityManager() 71 # * Samevm problem with setHttps*() is used? (not exactly sure here) 72 # * Samevm problem when stuffing system properties with non Strings or anything 73 # * Samevm problem when changing vm settings, or registering any vm actions 74 # * Samevm problems with deleteOnExit(), if it must happen at end of test 75 # * Samevm problems with URLClassLoader? (no details here) 76 # * Samevm problems with dependence on predictable GC or finalizations 77 # 78 # Any of the above problems may mean the test needs to be flagged as "othervm". 79 # 80 ############################################################################# 81 # 82 # Fixing the tests: 83 # 84 # Some tests just may need to be run with "othervm", and that can easily be 85 # done my adding a @run line (or modifying any existing @run): 86 # @run main/othervm NameOfMainClass 87 # Make sure this @run follows any use of @library. 88 # Otherwise, if the test is a samevm possibility, make sure the test is 89 # cleaning up after itself, closing all streams, deleting temp files, etc. 90 # 91 # Keep in mind that the bug could be in many places, and even different per 92 # platform, it could be a bug in any one of: 93 # - the testcase 94 # - the jdk (jdk classes, native code, or hotspot) 95 # - the native compiler 96 # - the javac compiler 97 # - the OS (depends on what the testcase does) 98 # 99 # If you managed to really fix one of these tests, here is how you can 100 # remove tests from this list: 101 # 1. Make sure test passes on all platforms with samevm, or mark it othervm 102 # 2. Make sure test passes on all platforms when run with it's entire group 103 # 3. Make sure both VMs are tested, -server and -client, if possible 104 # 4. Make sure you try the -d64 option on Solaris 105 # 5. Use a tool like JPRT or something to verify these results 106 # 6. Delete lines in this file, include the changes with your test changes 107 # 108 # You may need to repeat your testing 2 or even 3 times to verify good 109 # results, some of these samevm failures are not very predictable. 110 # 111 ############################################################################# 112 113 ############################################################################ 114 115 # jdk_awt 116 117 ############################################################################ 118 119 # jdk_beans 120 121 ############################################################################ 122 123 # jdk_lang 124 125 # 7123972 126 java/lang/annotation/loaderLeak/Main.java generic-all 127 128 # 6944188 129 java/lang/management/ThreadMXBean/ThreadStateTest.java generic-all 130 131 # 7067973 132 java/lang/management/MemoryMXBean/CollectionUsageThreshold.java generic-all 133 134 # 7148492 135 java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java generic-all 136 137 ############################################################################ 138 139 # jdk_management 140 141 # 6959636 142 javax/management/loading/LibraryLoader/LibraryLoaderTest.java windows-all 143 144 # 7144846 145 javax/management/remote/mandatory/connection/ReconnectTest.java generic-all 146 147 # 7149181 148 sun/management/jmxremote/startstop/JMXStartStopTest.sh generic-all 149 150 ############################################################################ 151 152 # jdk_math 153 154 ############################################################################ 155 156 # jdk_misc 157 158 # 6988950 159 demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java generic-all 160 161 # Need to be marked othervm, or changed to be samevm safe 162 com/sun/jndi/rmi/registry/RegistryContext/UnbindIdempotent.java generic-all 163 164 ############################################################################ 165 166 # jdk_net 167 168 # Filed 7052625 169 com/sun/net/httpserver/bugs/6725892/Test.java generic-all 170 171 # Filed 7036666 172 com/sun/net/httpserver/Test9a.java generic-all 173 174 # 7079145 java/net/ipv6tests/UdpTest.java hang at IPv6 only data exchange 175 java/net/ipv6tests/UdpTest.java linux-all 176 177 # 7081476 178 java/net/InetSocketAddress/B6469803.java generic-all 179 180 # 7102670 181 java/net/InetAddress/CheckJNI.java linux-all 182 183 # failing on vista 32/64 on nightly 184 # 7102702 185 java/net/PortUnreachableException/OneExceptionOnly.java windows-all 186 187 # 7148829 188 sun/net/InetAddress/nameservice/simple/CacheTest.java generic-all 189 sun/net/InetAddress/nameservice/simple/DefaultCaching.java generic-all 190 191 # 7122846 192 java/net/MulticastSocket/NoLoopbackPackets.java macosx-all 193 java/net/MulticastSocket/SetLoopbackMode.java macosx-all 194 195 # 7145658 196 java/net/MulticastSocket/Test.java macosx-all 197 198 #7143960 199 java/net/DatagramSocket/SendDatagramToBadAddress.java macosx-all 200 201 # 7150552 202 sun/net/www/protocol/http/B6299712.java macosx-all 203 java/net/CookieHandler/CookieManagerTest.java macosx-all 204 205 ############################################################################ 206 207 # jdk_io 208 209 # 6962637 210 java/io/File/MaxPathLength.java windows-all 211 212 # 7076644 213 java/io/File/Basic.java windows-all 214 215 # 7145435 - Test needs AWT window server, does not work headless 216 java/io/Serializable/resolveClass/deserializeButton/run.sh macosx-all 217 218 ############################################################################ 219 220 # jdk_nio 221 222 # 6963118 223 java/nio/channels/Selector/Wakeup.java windows-all 224 225 # 7052549 226 java/nio/channels/FileChannel/ReleaseOnCloseDeadlock.java windows-all 227 228 # 7133499, 7133497 229 java/nio/channels/AsyncCloseAndInterrupt.java macosx-all 230 java/nio/channels/AsynchronousFileChannel/Lock.java macosx-all 231 java/nio/channels/FileChannel/Transfer.java macosx-all 232 233 # 7141822 234 java/nio/channels/DatagramChannel/ChangingAddress.java macosx-all 235 236 # 7132677 237 java/nio/channels/Selector/OutOfBand.java macosx-all 238 239 ############################################################################ 240 241 # jdk_rmi 242 243 # 7140992 244 java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java generic-all 245 246 # 6948101 247 java/rmi/transport/pinLastArguments/PinLastArguments.java generic-all 248 249 # 7146541 250 java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all 251 252 # 7132247 253 java/rmi/registry/readTest/readTest.sh windows-all 254 255 # 7142596 256 java/rmi/transport/pinClientSocketFactory/PinClientSocketFactory.java generic-all 257 258 ############################################################################ 259 260 # jdk_security 261 262 # 7147060 263 com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all 264 265 # Failing on Solaris i586, 3/9/2010, not a -samevm issue (jdk_security3) 266 sun/security/pkcs11/Secmod/AddPrivateKey.java solaris-i586 267 sun/security/pkcs11/ec/ReadCertificates.java solaris-i586 268 sun/security/pkcs11/ec/ReadPKCS12.java solaris-i586 269 sun/security/pkcs11/ec/TestCurves.java solaris-i586 270 sun/security/pkcs11/ec/TestECDSA.java solaris-i586 271 #sun/security/pkcs11/ec/TestECGenSpec.java solaris-i586 272 #sun/security/pkcs11/ec/TestKeyFactory.java solaris-i586 273 sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java solaris-i586 274 275 # Fails on Fedora 9/Ubuntu 10.04 64bit, PKCS11Exception: CKR_DEVICE_ERROR 276 sun/security/pkcs11/KeyAgreement/TestDH.java generic-all 277 278 # Run too slow on Solaris 10 sparc 279 sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/SSLSocketTimeoutNulls.java solaris-sparc 280 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ClientTimeout.java solaris-sparc 281 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ServerTimeout.java solaris-sparc 282 sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/ReadTimeout.java solaris-sparc 283 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/NotifyHandshakeTest.sh solaris-sparc 284 285 # Solaris 10 sparc, passed/failed confusion? java.security.ProviderException: update() failed 286 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/AsyncSSLSocketClose.java generic-all 287 288 # Othervm, sparc, NoRouteToHostException: Cannot assign requested address 289 sun/security/ssl/javax/net/ssl/NewAPIs/SessionCacheSizeTests.java generic-all 290 291 # Times out on windows X64, othervm mode 292 # Solaris sparc and sparcv9 -server, timeout 293 sun/security/ssl/javax/net/ssl/NewAPIs/SessionTimeOutTests.java generic-all 294 295 # Various failures on Linux Fedora 9 X64, othervm mode 296 sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/TestAllSuites.java generic-all 297 sun/security/ssl/sanity/ciphersuites/CheckCipherSuites.java generic-all 298 299 # Various failures on Linux Fedora 9 X64, othervm mode 300 sun/security/ssl/sanity/interop/ClientJSSEServerJSSE.java generic-all 301 302 # 7079203 sun/security/tools/keytool/printssl.sh fails on solaris with timeout 303 sun/security/tools/keytool/printssl.sh solaris-all 304 305 # 7041639, Solaris DSA keypair generation bug (Note: jdk_util also affected) 306 java/security/KeyPairGenerator/SolarisShortDSA.java solaris-all 307 sun/security/tools/jarsigner/onlymanifest.sh solaris-all 308 sun/security/tools/jarsigner/ts.sh solaris-all 309 sun/security/tools/keytool/emptysubject.sh solaris-all 310 sun/security/tools/keytool/importreadall.sh solaris-all 311 sun/security/tools/keytool/readjar.sh solaris-all 312 sun/security/tools/keytool/selfissued.sh solaris-all 313 sun/security/tools/keytool/standard.sh solaris-all 314 315 ############################################################################ 316 317 # jdk_sound 318 319 ############################################################################ 320 321 # jdk_swing 322 323 ############################################################################ 324 325 # jdk_text 326 327 ############################################################################ 328 329 # jdk_tools 330 331 # 6461635 332 com/sun/tools/attach/BasicTests.sh generic-all 333 334 # Filed 6952105 335 com/sun/jdi/SuspendThreadTest.java generic-all 336 337 # Filed 6653793 338 com/sun/jdi/RedefineCrossEvent.java generic-all 339 340 # Filed 6987312 341 com/sun/jdi/DoubleAgentTest.java generic-all 342 343 # Filed 7020857 344 com/sun/jdi/FieldWatchpoints.java generic-all 345 346 # Filed 6402201 347 com/sun/jdi/ProcessAttachTest.sh generic-all 348 349 # Filed 6979016 350 sun/tools/jconsole/ResourceCheckTest.sh generic-all 351 352 # 7132203 353 sun/jvmstat/monitor/MonitoredVm/CR6672135.java generic-all 354 355 # Tests take too long, see 7143279 356 tools/pack200/CommandLineTests.java generic-all 357 tools/pack200/Pack200Test.java generic-all 358 359 # 7150569 360 tools/launcher/UnicodeTest.java macosx-all 361 362 ############################################################################ 363 364 # jdk_util 365 366 # Filed 6933803 367 java/util/concurrent/ThreadPoolExecutor/CoreThreadTimeOut.java generic-all 368 369 # Filed 6772009 370 java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all 371 372 # 7041639, Solaris DSA keypair generation bug 373 java/util/TimeZone/TimeZoneDatePermissionCheck.sh solaris-all 374 375 # 7150557 376 java/util/prefs/RemoveReadOnlyNode.java macosx-all 377 java/util/prefs/RemoveUnregedListener.java macosx-all 378 379 ############################################################################