1 ###########################################################################
   2 #
   3 # Copyright (c) 2009, 2016, 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, aix
  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 java/beans/XMLEncoder/Test4903007.java                          8060027 generic-all
 120 java/beans/XMLEncoder/java_awt_GridBagLayout.java               8060027 generic-all
 121 java/beans/XMLDecoder/8028054/TestConstructorFinder.java        8060027 generic-all
 122 java/beans/XMLDecoder/8028054/TestMethodFinder.java             8060027 generic-all
 123 
 124 java/beans/Introspector/8132566/OverridePropertyInfoTest.java   8132565 generic-all
 125 java/beans/Introspector/8132566/OverrideUserDefPropertyInfoTest.java 8132565 generic-all
 126 
 127 ############################################################################
 128 
 129 # jdk_lang
 130 
 131 java/lang/ClassLoader/deadlock/GetResource.java                 8029891 generic-all
 132 
 133 java/lang/StringCoding/CheckEncodings.sh                        7008363 generic-all
 134 
 135 ############################################################################
 136 
 137 # jdk_instrument
 138 
 139 java/lang/instrument/RedefineBigClass.sh                        8061177 generic-all
 140 java/lang/instrument/RetransformBigClass.sh                     8061177 generic-all
 141 
 142 java/lang/instrument/BootClassPath/BootClassPathTest.sh         8072130 macosx-all
 143 
 144 java/lang/management/MemoryMXBean/LowMemoryTest.java            8130339 generic-all
 145 
 146 ############################################################################
 147 
 148 # jdk_jmx
 149 
 150 com/sun/management/OperatingSystemMXBean/GetProcessCpuLoad.java 8030957 aix-all
 151 com/sun/management/OperatingSystemMXBean/GetSystemCpuLoad.java  8030957 aix-all
 152 javax/management/MBeanServer/OldMBeanServerTest.java            8030957 aix-all
 153 
 154 javax/management/remote/mandatory/notif/NotifReconnectDeadlockTest.java 8042215 generic-all
 155 
 156 sun/management/jmxremote/bootstrap/JMXInterfaceBindingTest.java 8147985 generic-all
 157 
 158 ############################################################################
 159 
 160 # jdk_net
 161 
 162 sun/net/InetAddress/nameservice/simple/CacheTest.java           7148829 generic-all
 163 sun/net/InetAddress/nameservice/simple/DefaultCaching.java      7148829 generic-all
 164 
 165 java/net/MulticastSocket/NoLoopbackPackets.java                 7122846 macosx-all
 166 java/net/MulticastSocket/SetLoopbackMode.java                   7122846 macosx-all
 167 
 168 java/net/MulticastSocket/Test.java                              7145658 macosx-all
 169 
 170 java/net/DatagramSocket/SendDatagramToBadAddress.java           7143960 macosx-all
 171 
 172 ############################################################################
 173 
 174 # jdk_nio
 175 
 176 java/nio/channels/Selector/Wakeup.java                          6963118 windows-all
 177 
 178 java/nio/channels/DatagramChannel/ChangingAddress.java          7141822 macosx-all
 179 
 180 java/nio/channels/Selector/OutOfBand.java                       7132677 macosx-all
 181 
 182 java/nio/file/WatchService/Basic.java                           7158947 solaris-all Solaris 11
 183 java/nio/file/WatchService/MayFlies.java                        7158947 solaris-all Solaris 11
 184 java/nio/file/WatchService/LotsOfEvents.java                    7158947 solaris-all Solaris 11
 185 
 186 java/nio/charset/coders/BashStreams.java                        8149712 generic-all
 187 
 188 ############################################################################
 189 
 190 # jdk_rmi
 191 
 192 java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java 7140992 generic-all
 193 
 194 java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java 7146541 linux-all
 195 
 196 java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java       7191877 generic-all
 197 
 198 sun/rmi/transport/proxy/EagerHttpFallback.java                  7195095 generic-all
 199 
 200 java/rmi/activation/Activatable/extLoadedImpl/ext.sh            8062724 generic-all
 201 
 202 sun/rmi/rmic/newrmic/equivalence/run.sh                         8145980 generic-all
 203 
 204 ############################################################################
 205 
 206 # jdk_security
 207 
 208 sun/security/pkcs11/ec/TestKeyFactory.java                      7157786 generic-all
 209 
 210 sun/security/krb5/auto/Unreachable.java                         7164518 macosx-all no PortUnreachableException on Mac
 211 
 212 java/security/KeyPairGenerator/SolarisShortDSA.java             7041639 solaris-all
 213 sun/security/tools/keytool/standard.sh                          7041639 solaris-all
 214 
 215 java/security/Security/ClassLoaderDeadlock/Deadlock2.sh         8062758 generic-all
 216 
 217 sun/security/tools/jarsigner/warnings/BadKeyUsageTest.java      8026393 generic-all
 218 
 219 sun/security/pkcs11/Cipher/ReinitCipher.java                    8077138,8023434 windows-all
 220 sun/security/pkcs11/Cipher/TestPKCS5PaddingError.java           8077138,8023434 windows-all
 221 sun/security/pkcs11/Cipher/TestRSACipher.java                   8077138,8023434 windows-all
 222 sun/security/pkcs11/Cipher/TestRSACipherWrap.java               8077138,8023434 windows-all
 223 sun/security/pkcs11/Cipher/TestRawRSACipher.java                8077138,8023434 windows-all
 224 sun/security/pkcs11/Cipher/TestSymmCiphers.java                 8077138,8023434 windows-all
 225 sun/security/pkcs11/Cipher/TestSymmCiphersNoPad.java            8077138,8023434 windows-all
 226 sun/security/pkcs11/KeyAgreement/TestDH.java                    8077138,8023434 windows-all
 227 sun/security/pkcs11/KeyAgreement/TestInterop.java               8077138,8023434 windows-all
 228 sun/security/pkcs11/KeyAgreement/TestShort.java                 8077138,8023434 windows-all
 229 sun/security/pkcs11/KeyGenerator/DESParity.java                 8077138,8023434 windows-all
 230 sun/security/pkcs11/KeyGenerator/TestKeyGenerator.java          8077138,8023434 windows-all
 231 sun/security/pkcs11/KeyPairGenerator/TestDH2048.java            8077138,8023434 windows-all
 232 sun/security/pkcs11/KeyStore/SecretKeysBasic.sh                 8077138,8023434 windows-all
 233 sun/security/pkcs11/Mac/MacKAT.java                             8077138,8023434 windows-all
 234 sun/security/pkcs11/Mac/MacSameTest.java                        8077138,8023434 windows-all
 235 sun/security/pkcs11/Mac/ReinitMac.java                          8077138,8023434 windows-all
 236 sun/security/pkcs11/MessageDigest/ByteBuffers.java              8077138,8023434 windows-all
 237 sun/security/pkcs11/MessageDigest/DigestKAT.java                8077138,8023434 windows-all
 238 sun/security/pkcs11/MessageDigest/ReinitDigest.java             8077138,8023434 windows-all
 239 sun/security/pkcs11/MessageDigest/TestCloning.java              8077138,8023434 windows-all
 240 sun/security/pkcs11/Provider/ConfigQuotedString.sh              8077138,8023434 windows-all
 241 sun/security/pkcs11/Provider/Login.sh                           8077138,8023434 windows-all
 242 sun/security/pkcs11/SampleTest.java                             8077138,8023434 windows-all
 243 sun/security/pkcs11/Secmod/AddPrivateKey.java                   8077138,8023434 windows-all
 244 sun/security/pkcs11/Secmod/AddTrustedCert.java                  8077138,8023434 windows-all
 245 sun/security/pkcs11/Secmod/Crypto.java                          8077138,8023434 windows-all
 246 sun/security/pkcs11/Secmod/GetPrivateKey.java                   8077138,8023434 windows-all
 247 sun/security/pkcs11/Secmod/JksSetPrivateKey.java                8077138,8023434 windows-all
 248 sun/security/pkcs11/Secmod/LoadKeystore.java                    8077138,8023434 windows-all
 249 sun/security/pkcs11/SecureRandom/Basic.java                     8077138,8023434 windows-all
 250 sun/security/pkcs11/SecureRandom/TestDeserialization.java       8077138,8023434 windows-all
 251 sun/security/pkcs11/Serialize/SerializeProvider.java            8077138,8023434 windows-all
 252 sun/security/pkcs11/Signature/ByteBuffers.java                  8077138,8023434 windows-all
 253 sun/security/pkcs11/Signature/ReinitSignature.java              8077138,8023434 windows-all
 254 sun/security/pkcs11/Signature/TestDSA.java                      8077138,8023434 windows-all
 255 sun/security/pkcs11/Signature/TestDSAKeyLength.java             8077138,8023434 windows-all
 256 sun/security/pkcs11/Signature/TestRSAKeyLength.java             8077138,8023434 windows-all
 257 sun/security/pkcs11/ec/ReadCertificates.java                    8077138,8023434 windows-all
 258 sun/security/pkcs11/ec/ReadPKCS12.java                          8077138,8023434 windows-all
 259 sun/security/pkcs11/ec/TestCurves.java                          8077138,8023434 windows-all
 260 sun/security/pkcs11/ec/TestECDH.java                            8077138,8023434 windows-all
 261 sun/security/pkcs11/ec/TestECDH2.java                           8077138,8023434 windows-all
 262 sun/security/pkcs11/ec/TestECDSA.java                           8077138,8023434 windows-all
 263 sun/security/pkcs11/ec/TestECDSA2.java                          8077138,8023434 windows-all
 264 sun/security/pkcs11/ec/TestECGenSpec.java                       8077138,8023434 windows-all
 265 sun/security/pkcs11/rsa/KeyWrap.java                            8077138,8023434 windows-all
 266 sun/security/pkcs11/rsa/TestCACerts.java                        8077138,8023434 windows-all
 267 sun/security/pkcs11/rsa/TestKeyFactory.java                     8077138,8023434 windows-all
 268 sun/security/pkcs11/rsa/TestKeyPairGenerator.java               8077138,8023434 windows-all
 269 sun/security/pkcs11/rsa/TestSignatures.java                     8077138,8023434 windows-all
 270 sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java            8077138,8023434 windows-all
 271 sun/security/pkcs11/tls/TestKeyMaterial.java                    8077138,8023434 windows-all
 272 sun/security/pkcs11/tls/TestLeadingZeroesP11.java               8077138,8023434 windows-all
 273 sun/security/pkcs11/tls/TestMasterSecret.java                   8077138,8023434 windows-all
 274 sun/security/pkcs11/tls/TestPRF.java                            8077138,8023434 windows-all
 275 sun/security/pkcs11/tls/TestPremaster.java                      8077138,8023434 windows-all
 276 
 277 sun/security/provider/SecureRandom/StrongSecureRandom.java      8051770 macosx-10.10
 278 
 279 sun/security/pkcs11/rsa/TestKeyPairGenerator.java               8074580 generic-all
 280 
 281 sun/security/krb5/auto/HttpNegotiateServer.java                 8038079 generic-all
 282 
 283 sun/security/tools/keytool/autotest.sh                          8130302 generic-all
 284 
 285 ############################################################################
 286 
 287 # jdk_sound
 288 
 289 javax/sound/midi/Gervill/SoftProvider/GetDevice.java            8059743 generic-all
 290 
 291 ############################################################################
 292 
 293 # jdk_imageio
 294 javax/imageio/plugins/shared/CanWriteSequence.java              8148454 generic-all
 295 javax/imageio/plugins/tiff/MultiPageTest/MultiPageTest.java     8148454 generic-all
 296 javax/imageio/plugins/tiff/WriteToSequenceAfterAbort.java       8148454 generic-all
 297 
 298 ############################################################################
 299 
 300 # jdk_swing
 301 
 302 ############################################################################
 303 
 304 # jdk_text
 305 
 306 ############################################################################
 307 
 308 # jdk_time
 309 
 310 ############################################################################
 311 
 312 # jdk_tools
 313 
 314 tools/pack200/CommandLineTests.java                             7143279,8059906 generic-all
 315 
 316 tools/pack200/Pack200Test.java                                  8059906,8151901 generic-all
 317 
 318 tools/launcher/FXLauncherTest.java                              8068049 linux-all,macosx-all
 319 
 320 ############################################################################
 321 
 322 # jdk_jdi
 323 
 324 com/sun/jdi/RedefineImplementor.sh                              8004127 generic-all
 325 
 326 com/sun/jdi/JdbMethodExitTest.sh                                8031555 generic-all
 327 
 328 com/sun/jdi/RepStep.java                                        8043571 generic-all
 329 
 330 com/sun/jdi/RedefinePop.sh                                      8058616 generic-all
 331 
 332 com/sun/jdi/CatchPatternTest.sh                                 8068645 generic-all
 333 
 334 com/sun/jdi/GetLocalVariables4Test.sh                           8067354 windows-all
 335 
 336 ############################################################################
 337 
 338 # jdk_util
 339 
 340 java/util/spi/ResourceBundleControlProvider/UserDefaultControlTest.java 8062512 generic-all
 341 
 342 java/util/stream/test/org/openjdk/tests/java/util/stream/IntPrimitiveOpsTests.java 8130337 generic-all
 343 
 344 java/util/Arrays/ParallelPrefix.java                            8080165,8085982 generic-all
 345 
 346 java/util/BitSet/BitSetStreamTest.java                          8079538 generic-all
 347 
 348 ############################################################################
 349 
 350 # jdk_instrument
 351 
 352 ############################################################################
 353 
 354 # svc_tools
 355 
 356 sun/tools/jcmd/TestJcmdSanity.java                              8031482 windows-all
 357 
 358 sun/tools/jmap/heapconfig/JMapHeapConfigTest.java               8072131,8132452 generic-all
 359 
 360 sun/tools/jstatd/TestJstatdExternalRegistry.java                8046285 generic-all
 361 
 362 sun/tools/jps/TestJpsJarRelative.java                           6456333 generic-all
 363 
 364 sun/tools/jinfo/JInfoRunningProcessFlagTest.java                6734748 generic-all
 365 
 366 sun/jvmstat/monitor/MonitoredVm/MonitorVmStartTerminate.java    8057732 generic-all
 367 
 368 sun/tools/jinfo/JInfoSanityTest.java                            8059035 generic-all
 369 
 370 demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java       8151899 generic-all
 371 
 372 ############################################################################
 373 
 374 # jdk_other
 375 
 376 com/sun/jndi/ldap/DeadSSLLdapTimeoutTest.java                   8141370 linux-i586,macosx-all
 377 
 378 ############################################################################
 379 
 380 # core_tools
 381 
 382 tools/jimage/JImageTest.java                                    8150975 linux-i586,windows-i586
 383 
 384 ############################################################################
 385