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 # 7194607
 126 java/lang/instrument/VerifyLocalVariableTableOnRetransformTest.sh 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 # 7196801
 138 java/lang/management/MemoryMXBean/LowMemoryTest2.sh             generic-all
 139 
 140 # Exclude until the fix for 7195557 propagates widely.
 141 java/lang/management/MemoryMXBean/CollectionUsageThresholdParallelGC.sh generic-all
 142 java/lang/management/MemoryMXBean/CollectionUsageThresholdSerialGC.sh generic-all
 143 java/lang/management/MemoryMXBean/MemoryTest.java               generic-all
 144 java/lang/management/MemoryMXBean/MemoryTestAllGC.sh            generic-all
 145 
 146 # Exclude until hotspot/jdk repos are sync'd w.r.t. JAVA_MAX_SUPPORTED_VERSION
 147 # Needed when hotspot fix 7054345 is present.  Remove when the JDK source is 
 148 # updated accordingly.
 149 java/lang/System/Versions.java   generic-all
 150 
 151 ############################################################################
 152 
 153 # jdk_management
 154 
 155 ############################################################################
 156 
 157 # jdk_jmx
 158 
 159 # 6959636
 160 javax/management/loading/LibraryLoader/LibraryLoaderTest.java   windows-all
 161 
 162 # 7144846
 163 javax/management/remote/mandatory/connection/ReconnectTest.java generic-all
 164 
 165 # 7120365
 166 javax/management/remote/mandatory/notif/DiffHBTest.java         generic-all
 167 
 168 ############################################################################
 169 
 170 # jdk_math
 171 
 172 ############################################################################
 173 
 174 # jdk_other
 175 
 176 # 6988950
 177 demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java       generic-all
 178 
 179 # 7162111
 180 demo/jvmti/mtrace/TraceJFrame.java                              macosx-all
 181 javax/script/CauseExceptionTest.java                            macosx-all
 182 javax/script/GetInterfaceTest.java                              macosx-all
 183 javax/script/JavaScriptScopeTest.java                           macosx-all
 184 javax/script/NullUndefinedVarTest.java                          macosx-all
 185 javax/script/PluggableContextTest.java                          macosx-all
 186 javax/script/ProviderTest.sh                                    macosx-all
 187 javax/script/RhinoExceptionTest.java                            macosx-all
 188 javax/script/StringWriterPrintTest.java                         macosx-all
 189 javax/script/Test1.java                                         macosx-all
 190 javax/script/Test2.java                                         macosx-all
 191 javax/script/Test3.java                                         macosx-all
 192 javax/script/Test4.java                                         macosx-all
 193 javax/script/Test5.java                                         macosx-all
 194 javax/script/Test6.java                                         macosx-all
 195 javax/script/Test7.java                                         macosx-all
 196 javax/script/Test8.java                                         macosx-all
 197 javax/script/UnescapedBracketRegExTest.java                     macosx-all
 198 javax/script/VersionTest.java                                   macosx-all
 199 ############################################################################
 200 
 201 # jdk_net
 202 
 203 # Filed 7052625
 204 com/sun/net/httpserver/bugs/6725892/Test.java                   generic-all
 205 
 206 # Filed 7036666
 207 com/sun/net/httpserver/Test9a.java                              generic-all
 208 
 209 # 7079145 java/net/ipv6tests/UdpTest.java hang at IPv6 only data exchange
 210 java/net/ipv6tests/UdpTest.java                                 linux-all
 211 
 212 # 7102670
 213 java/net/InetAddress/CheckJNI.java                              linux-all
 214 
 215 # failing on vista 32/64 on nightly
 216 # 7102702
 217 java/net/PortUnreachableException/OneExceptionOnly.java         windows-all
 218 
 219 # 7148829
 220 sun/net/InetAddress/nameservice/simple/CacheTest.java           generic-all
 221 sun/net/InetAddress/nameservice/simple/DefaultCaching.java      generic-all
 222 
 223 # 7122846
 224 java/net/MulticastSocket/NoLoopbackPackets.java                  macosx-all
 225 java/net/MulticastSocket/SetLoopbackMode.java                    macosx-all
 226 
 227 # 7145658
 228 java/net/MulticastSocket/Test.java                               macosx-all
 229 
 230 #7143960
 231 java/net/DatagramSocket/SendDatagramToBadAddress.java            macosx-all
 232 
 233 # 7150552
 234 sun/net/www/protocol/http/B6299712.java                         macosx-all
 235 java/net/CookieHandler/CookieManagerTest.java                   macosx-all
 236 
 237 ############################################################################
 238 
 239 # jdk_io
 240 
 241 # 7162111 - these tests need to be updated to run headless
 242 java/io/Serializable/resolveClass/deserializeButton/run.sh      macosx-all
 243 java/io/Serializable/serialver/classpath/run.sh                 macosx-all
 244 java/io/Serializable/serialver/nested/run.sh                    macosx-all
 245 
 246 ############################################################################
 247 
 248 # jdk_nio
 249 
 250 # 6963118
 251 java/nio/channels/Selector/Wakeup.java                          windows-all
 252 
 253 # 7052549
 254 java/nio/channels/FileChannel/ReleaseOnCloseDeadlock.java       windows-all
 255 
 256 # 7133499, 7133497
 257 java/nio/channels/AsyncCloseAndInterrupt.java                   macosx-all
 258 java/nio/channels/AsynchronousFileChannel/Lock.java             macosx-all
 259 java/nio/channels/FileChannel/Transfer.java                     macosx-all
 260 
 261 # 7141822
 262 java/nio/channels/DatagramChannel/ChangingAddress.java          macosx-all
 263 
 264 # 7132677
 265 java/nio/channels/Selector/OutOfBand.java                       macosx-all
 266 
 267 ############################################################################
 268 
 269 # jdk_rmi
 270 
 271 # 7146541
 272 java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
 273 
 274 # 7187882
 275 java/rmi/activation/checkusage/CheckUsage.java                  generic-all
 276 
 277 # 7190106
 278 java/rmi/reliability/benchmark/runRmiBench.sh                   generic-all
 279 
 280 # 7191877
 281 java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java       generic-all
 282 
 283 # 7195095
 284 sun/rmi/transport/proxy/EagerHttpFallback.java                  linux-all
 285 
 286 ############################################################################
 287 
 288 # jdk_security
 289 
 290 # 7164518: no PortUnreachableException on Mac
 291 sun/security/krb5/auto/Unreachable.java                         macosx-all
 292 
 293 # 7193792
 294 sun/security/pkcs11/ec/TestECDSA.java                           solaris-all
 295 sun/security/pkcs11/ec/TestECDSA.java                           linux-all
 296 
 297 # 7193793
 298 sun/security/pkcs11/ec/TestECDH.java                            linux-all
 299 
 300 # 7198198: the test also fails on SuSE Linux
 301 sun/security/pkcs11/ec/ReadCertificates.java                    linux-all
 302 
 303 # 7147060
 304 com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java        generic-all
 305 
 306 # 6988842: 4 tests failing on Solaris 5.10
 307 sun/security/pkcs11/Secmod/AddPrivateKey.java                   solaris-all
 308 sun/security/pkcs11/ec/ReadCertificates.java                    solaris-all
 309 sun/security/pkcs11/ec/ReadPKCS12.java                          solaris-all
 310 sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java            solaris-all
 311 
 312 # 7041639, Solaris DSA keypair generation bug (Note: jdk_util also affected)
 313 java/security/KeyPairGenerator/SolarisShortDSA.java             solaris-all
 314 sun/security/tools/jarsigner/onlymanifest.sh                    solaris-all
 315 sun/security/tools/jarsigner/ts.sh                              solaris-all
 316 sun/security/tools/keytool/emptysubject.sh                      solaris-all
 317 sun/security/tools/keytool/importreadall.sh                     solaris-all
 318 sun/security/tools/keytool/readjar.sh                           solaris-all
 319 sun/security/tools/keytool/selfissued.sh                        solaris-all
 320 sun/security/tools/keytool/standard.sh                          solaris-all
 321 
 322 # 8000439: NPG: REGRESSION : sun/security/krb5/auto/MaxRetries.java fails with timeout
 323 sun/security/krb5/auto/MaxRetries.java                          solaris-sparcv9
 324 
 325 ############################################################################
 326 
 327 # jdk_sound
 328 
 329 ############################################################################
 330 
 331 # jdk_swing
 332 
 333 ############################################################################
 334 
 335 # jdk_text
 336 
 337 # 7196199
 338 java/text/Bidi/Bug6665028.java                                  generic-all
 339 
 340 ############################################################################
 341 
 342 # jdk_tools
 343 
 344 # 6461635
 345 com/sun/tools/attach/BasicTests.sh                              generic-all
 346 
 347 # 7172176
 348 sun/tools/jconsole/ResourceCheckTest.sh                         generic-all
 349 sun/tools/jconsole/ImmutableResourceTest.sh                     generic-all
 350 
 351 # 7132203
 352 sun/jvmstat/monitor/MonitoredVm/CR6672135.java                  generic-all
 353 
 354 # Tests take too long, see 7143279
 355 tools/pack200/CommandLineTests.java                             generic-all
 356 tools/pack200/Pack200Test.java                                  generic-all
 357 
 358 # 7150569
 359 tools/launcher/UnicodeTest.java                                 macosx-all
 360 
 361 ############################################################################
 362 
 363 # jdk_jdi
 364 
 365 # Filed 6952105
 366 com/sun/jdi/SuspendThreadTest.java                              generic-all
 367 
 368 # Filed 6653793
 369 com/sun/jdi/RedefineCrossEvent.java                             generic-all
 370 
 371 # Filed 6987312
 372 com/sun/jdi/DoubleAgentTest.java                                generic-all
 373 
 374 # Filed 7020857
 375 com/sun/jdi/FieldWatchpoints.java                               generic-all
 376 
 377 # Filed 6402201
 378 com/sun/jdi/ProcessAttachTest.sh                                generic-all
 379 
 380 ############################################################################
 381 
 382 # jdk_util
 383 
 384 # 7162111 - test needs to be changed to run headless
 385 java/util/ResourceBundle/Control/Bug6530694.java                macosx-all
 386 
 387 # Filed 6933803
 388 java/util/concurrent/ThreadPoolExecutor/CoreThreadTimeOut.java  generic-all
 389 
 390 # Filed 6772009
 391 java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
 392 
 393 # 7041639, Solaris DSA keypair generation bug
 394 java/util/TimeZone/TimeZoneDatePermissionCheck.sh               solaris-all
 395 
 396 ############################################################################