1 ###########################################################################
   2 #
   3 # Copyright (c) 2009, 2013, 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.
   9 #
  10 # This code is distributed in the hope that it will be useful, but WITHOUT
  11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13 # version 2 for more details (a copy is included in the LICENSE file that
  14 # accompanied this code).
  15 #
  16 # You should have received a copy of the GNU General Public License version
  17 # 2 along with this work; if not, write to the Free Software Foundation,
  18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19 #
  20 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21 # or visit www.oracle.com if you need additional information or have any
  22 # questions.
  23 #
  24 ###########################################################################
  25 #
  26 # List of tests that should not be run by test/Makefile, for various reasons:
  27 #   1. Does not run with jtreg -samevm mode
  28 #   2. Causes problems in jtreg -samevm mode for jtreg or tests that follow it
  29 #   3. The test is too slow or consumes too many system resources
  30 #   4. The test fails when run on any official build systems
  31 #
  32 # It is possible that a test being on this list is a mistake, and that some
  33 #   other test in samevm mode caused tests to fail, mistakes happen.
  34 #
  35 # Tests marked @ignore are not run by test/Makefile, but harmless to be listed.
  36 #
  37 # Tests that explicitly state "@run main/othervm ...", and are not listed here,
  38 #   will be run in the same batch as the samevm tests.
  39 #
  40 # Shell tests are othervm by default.
  41 #
  42 # List items  are testnames followed by labels, all MUST BE commented
  43 #   as to why they are here and use a label:
  44 #     generic-all       Problems on all platforms
  45 #     generic-ARCH      Where ARCH is one of: sparc, sparcv9, x64, i586, etc.
  46 #     OSNAME-all        Where OSNAME is one of: solaris, linux, windows, macosx
  47 #     OSNAME-ARCH       Specific on to one OSNAME and ARCH, e.g. solaris-amd64
  48 #     OSNAME-REV        Specific on to one OSNAME and REV, e.g. solaris-5.8
  49 #
  50 # More than one label is allowed but must be on the same line.
  51 #
  52 #############################################################################
  53 #
  54 # Running the tests:
  55 #    cd test && make JT_HOME=jtreg_home PRODUCT_HOME=jdk_home jdk_all
  56 #  Or instead of jdk_all, use any of the jdk_* targets.
  57 #
  58 # Samevm Notes:
  59 #  * Although some tests may have only been seen to fail on some platforms,
  60 #    they might be flagged as 'generic-all' because the problem they have
  61 #    could cause hidden slowdowns on other platforms.
  62 #    Most samevm problems will be generic-all, but windows usually dislikes
  63 #    them the most.
  64 #    Address already in use or connection errors indicate a generic port issue.
  65 #    (this is not necessarily a samevm issue, but an issue for running the tests
  66 #     on shared machines, two people or two test runs will collide).
  67 #  * Samevm problem (windows in particular) is not closing all input/output
  68 #  * Samevm problem when a test calls setSecurityManager()
  69 #  * Samevm problem with setHttps*() is used? (not exactly sure here)
  70 #  * Samevm problem when stuffing system properties with non Strings or anything
  71 #  * Samevm problem when changing vm settings, or registering any vm actions
  72 #  * Samevm problems with deleteOnExit(), if it must happen at end of test
  73 #  * Samevm problems with URLClassLoader? (no details here)
  74 #  * Samevm problems with dependence on predictable GC or finalizations
  75 #
  76 # Any of the above problems may mean the test needs to be flagged as "othervm".
  77 #
  78 #############################################################################
  79 #
  80 # Fixing the tests:
  81 #
  82 # Some tests just may need to be run with "othervm", and that can easily be
  83 #   done my adding a @run line (or modifying any existing @run):
  84 #      @run main/othervm NameOfMainClass
  85 #   Make sure this @run follows any use of @library.
  86 #   Otherwise, if the test is a samevm possibility, make sure the test is
  87 #     cleaning up after itself, closing all streams, deleting temp files, etc.
  88 #
  89 # Keep in mind that the bug could be in many places, and even different per
  90 #   platform, it could be a bug in any one of:
  91 #      - the testcase
  92 #      - the jdk (jdk classes, native code, or hotspot)
  93 #      - the native compiler
  94 #      - the javac compiler
  95 #      - the OS (depends on what the testcase does)
  96 #
  97 # If you managed to really fix one of these tests, here is how you can
  98 #    remove tests from this list:
  99 #  1. Make sure test passes on all platforms with samevm, or mark it othervm
 100 #  2. Make sure test passes on all platforms when run with it's entire group
 101 #  3. Make sure both VMs are tested, -server and -client, if possible
 102 #  4. Make sure you try the -d64 option on Solaris
 103 #  5. Use a tool like JPRT or something to verify these results
 104 #  6. Delete lines in this file, include the changes with your test changes
 105 #
 106 # You may need to repeat your testing 2 or even 3 times to verify good
 107 #   results, some of these samevm failures are not very predictable.
 108 #
 109 #############################################################################
 110 
 111 ############################################################################
 112 
 113 # jdk_awt
 114 
 115 ############################################################################
 116 
 117 # jdk_beans
 118 
 119 ############################################################################
 120 
 121 # jdk_lang
 122 
 123 # 6944188
 124 java/lang/management/ThreadMXBean/ThreadStateTest.java          generic-all
 125 
 126 # 7067973
 127 java/lang/management/MemoryMXBean/CollectionUsageThreshold.java generic-all
 128 
 129 # 7196801
 130 java/lang/management/MemoryMXBean/LowMemoryTest2.sh             generic-all
 131 
 132 # 8021230
 133 java/lang/ThreadLocal/ThreadLocalSupplierTest.java              generic-all
 134 
 135 # 8023201
 136 java/lang/instrument/RetransformBigClass.sh                     generic-all
 137 java/lang/instrument/RedefineBigClass.sh                        generic-all
 138 
 139 # 8026502
 140 java/lang/invoke/MethodHandleConstants.java                     generic-all
 141 
 142 ############################################################################
 143 
 144 # jdk_management
 145 
 146 # 8010897
 147 sun/management/HotspotRuntimeMBean/GetSafepointSyncTime.java    macosx-all
 148 
 149 ############################################################################
 150 
 151 # jdk_jmx
 152 
 153 # 6959636
 154 javax/management/loading/LibraryLoader/LibraryLoaderTest.java   windows-all
 155 
 156 ############################################################################
 157 
 158 # jdk_math
 159 
 160 ############################################################################
 161 
 162 # jdk_other
 163 
 164 # 6988950
 165 demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java       generic-all
 166 
 167 # 7027502
 168 demo/jvmti/hprof/MonitorTest.java                               generic-all
 169 
 170 # 8024423 - JVMTI: GetLoadedClasses doesn't enumerate anonymous classes 
 171 demo/jvmti/hprof/HeapAllTest.java                               generic-all
 172 demo/jvmti/hprof/HeapBinaryFormatTest.java                      generic-all
 173 demo/jvmti/hprof/HeapDumpTest.java                              generic-all
 174 demo/jvmti/hprof/OptionsTest.java                               generic-all
 175 demo/jvmti/hprof/StackMapTableTest.java                         generic-all
 176 
 177 ############################################################################
 178 
 179 # jdk_net
 180 
 181 # Filed 7052625
 182 com/sun/net/httpserver/bugs/6725892/Test.java                   generic-all
 183 
 184 # Filed 7036666
 185 com/sun/net/httpserver/Test9a.java                              generic-all
 186 
 187 # 7079145 java/net/ipv6tests/UdpTest.java hang at IPv6 only data exchange
 188 java/net/ipv6tests/UdpTest.java                                 linux-all
 189 
 190 # 7102670
 191 java/net/InetAddress/CheckJNI.java                              linux-all
 192 
 193 # failing on vista 32/64 on nightly
 194 # 7102702
 195 java/net/PortUnreachableException/OneExceptionOnly.java         windows-all
 196 
 197 # 7148829
 198 sun/net/InetAddress/nameservice/simple/CacheTest.java           generic-all
 199 sun/net/InetAddress/nameservice/simple/DefaultCaching.java      generic-all
 200 
 201 # 7122846
 202 java/net/MulticastSocket/NoLoopbackPackets.java                  macosx-all
 203 java/net/MulticastSocket/SetLoopbackMode.java                    macosx-all
 204 
 205 # 7145658
 206 java/net/MulticastSocket/Test.java                               macosx-all
 207 
 208 # 7143960
 209 java/net/DatagramSocket/SendDatagramToBadAddress.java            macosx-all
 210 
 211 # 8014719
 212 sun/net/www/http/HttpClient/ProxyTest.java                       generic-all
 213 
 214 ############################################################################
 215 
 216 # jdk_nio
 217 
 218 # 6963118
 219 java/nio/channels/Selector/Wakeup.java                          windows-all
 220 
 221 # 7052549
 222 java/nio/channels/FileChannel/ReleaseOnCloseDeadlock.java       windows-all
 223 
 224 # 7133499, 7133497
 225 java/nio/channels/AsyncCloseAndInterrupt.java                   macosx-all
 226 java/nio/channels/AsynchronousFileChannel/Lock.java             macosx-all
 227 java/nio/channels/FileChannel/Transfer.java                     macosx-all
 228 
 229 # 7141822
 230 java/nio/channels/DatagramChannel/ChangingAddress.java          macosx-all
 231 
 232 # 7132677
 233 java/nio/channels/Selector/OutOfBand.java                       macosx-all
 234 
 235 ############################################################################
 236 
 237 # jdk_rmi
 238 
 239 # 7146541
 240 java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
 241 
 242 # 7190106
 243 java/rmi/reliability/benchmark/runRmiBench.sh                   generic-all
 244 
 245 # 7191877
 246 java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java       generic-all
 247 
 248 # 7195095
 249 sun/rmi/transport/proxy/EagerHttpFallback.java                  generic-all
 250 
 251 ############################################################################
 252 
 253 # jdk_security
 254 
 255 # 7157786
 256 sun/security/pkcs11/ec/TestKeyFactory.java                      generic-all
 257 
 258 # 7164518: no PortUnreachableException on Mac
 259 sun/security/krb5/auto/Unreachable.java                         macosx-all
 260 
 261 # 7147060
 262 com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java        generic-all
 263 
 264 # 6988842: 4 tests failing on Solaris 5.10
 265 sun/security/pkcs11/Secmod/AddPrivateKey.java                   solaris-all
 266 sun/security/pkcs11/ec/ReadCertificates.java                    solaris-all
 267 sun/security/pkcs11/ec/ReadPKCS12.java                          solaris-all
 268 sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java            solaris-all
 269 
 270 # 8009438
 271 sun/security/pkcs11/Secmod/AddPrivateKey.java                   linux-all
 272 sun/security/pkcs11/Secmod/TrustAnchors.java                    linux-all
 273 
 274 # 7041639, Solaris DSA keypair generation bug (Note: jdk_util also affected)
 275 java/security/KeyPairGenerator/SolarisShortDSA.java             solaris-all
 276 sun/security/tools/jarsigner/onlymanifest.sh                    solaris-all
 277 sun/security/tools/jarsigner/ts.sh                              solaris-all
 278 sun/security/tools/keytool/emptysubject.sh                      solaris-all
 279 sun/security/tools/keytool/importreadall.sh                     solaris-all
 280 sun/security/tools/keytool/readjar.sh                           solaris-all
 281 sun/security/tools/keytool/selfissued.sh                        solaris-all
 282 sun/security/tools/keytool/standard.sh                          solaris-all
 283 
 284 # 8000439: NPG: REGRESSION : sun/security/krb5/auto/MaxRetries.java fails with timeout
 285 sun/security/krb5/auto/MaxRetries.java                          solaris-sparcv9
 286 
 287 # 8006690: sun/security/krb5/auto/BadKdc1.java fails intermittently
 288 sun/security/krb5/auto/BadKdc1.java                             solaris-sparcv9
 289 sun/security/krb5/auto/BadKdc2.java                             solaris-sparcv9
 290 sun/security/krb5/auto/BadKdc3.java                             solaris-sparcv9
 291 sun/security/krb5/auto/BadKdc4.java                             solaris-sparcv9
 292 
 293 ############################################################################
 294 
 295 # jdk_sound
 296 
 297 ############################################################################
 298 
 299 # jdk_swing
 300 
 301 ############################################################################
 302 
 303 # jdk_text
 304 
 305 ############################################################################
 306 
 307 # jdk_time
 308 
 309 ############################################################################
 310 
 311 # jdk_tools
 312 
 313 # 6461635
 314 com/sun/tools/attach/BasicTests.sh                              generic-all
 315 
 316 # 7132203
 317 sun/jvmstat/monitor/MonitoredVm/CR6672135.java                  generic-all
 318 
 319 # Tests take too long, on sparcs see 7143279
 320 tools/pack200/CommandLineTests.java                             solaris-all, macosx-all
 321 tools/pack200/Pack200Test.java                                  solaris-all, macosx-all
 322 
 323 # 8007410
 324 tools/launcher/FXLauncherTest.java                              linux-all
 325 
 326 ############################################################################
 327 
 328 # jdk_jdi
 329 
 330 # Filed 6952105
 331 com/sun/jdi/SuspendThreadTest.java                              generic-all
 332 
 333 # Filed 6653793
 334 com/sun/jdi/RedefineCrossEvent.java                             generic-all
 335 
 336 # Filed 6402201
 337 com/sun/jdi/ProcessAttachTest.sh                                generic-all
 338 
 339 ############################################################################
 340 
 341 # jdk_util
 342 
 343 # Filed 6933803
 344 java/util/concurrent/ThreadPoolExecutor/CoreThreadTimeOut.java  generic-all
 345 
 346 # Filed 6772009
 347 java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
 348 
 349 # 7041639, Solaris DSA keypair generation bug
 350 java/util/TimeZone/TimeZoneDatePermissionCheck.sh               solaris-all
 351 
 352 ############################################################################