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