1 ###########################################################################
   2 #
   3 # Copyright (c) 2009, 2017, 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-x64
  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 ############################################################################
 124 
 125 # jdk_management
 126 
 127 # 8028150
 128 sun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh       windows-all
 129 
 130 ############################################################################
 131 
 132 # jdk_jmx
 133 
 134 # 8030957
 135 com/sun/management/OperatingSystemMXBean/GetProcessCpuLoad.java aix-all
 136 com/sun/management/OperatingSystemMXBean/GetSystemCpuLoad.java  aix-all
 137 javax/management/MBeanServer/OldMBeanServerTest.java            aix-all
 138 
 139 ############################################################################
 140 
 141 # jdk_math
 142 
 143 ############################################################################
 144 
 145 # jdk_other
 146 
 147 # 6988950
 148 demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java       generic-all
 149 
 150 # 7027502
 151 demo/jvmti/hprof/MonitorTest.java                               generic-all
 152 
 153 ############################################################################
 154 
 155 # jdk_net
 156 
 157 # 7122846
 158 java/net/MulticastSocket/NoLoopbackPackets.java                  macosx-all
 159 
 160 # 7122846, 8098566
 161 java/net/MulticastSocket/SetLoopbackMode.java                    macosx-all,solaris-all
 162 
 163 # 8171217, 7145658
 164 java/net/MulticastSocket/Test.java                               macosx-all,solaris-all
 165 
 166 # 7143960
 167 java/net/DatagramSocket/SendDatagramToBadAddress.java            macosx-all
 168 
 169 # 8172046
 170 java/net/MulticastSocket/TestInterfaces.java                     windows-x64,solaris-x64
 171 
 172 # 8160738
 173 sun/net/www/protocol/https/HttpsURLConnection/ImpactOnSNI.java   macosx-x64
 174 
 175 # 8010379
 176 sun/net/www/http/KeepAliveCache/B5045306.java                    macosx-x64
 177 
 178 # 8158598
 179 sun/net/www/protocol/http/B6296310.java                          macosx-x64
 180 
 181 # 8171208
 182 java/net/CookieHandler/CookieManagerTest.java                    macosx-x64
 183 java/net/HttpURLConnection/UnmodifiableMaps.java                 macosx-x64
 184 sun/net/www/protocol/http/B6299712.java                          macosx-x64
 185 
 186 # 8166362
 187 sun/net/www/http/HttpClient/B8025710.java                       generic-all
 188 
 189 ############################################################################
 190 
 191 # jdk_io
 192 
 193 # 8169774
 194 java/io/File/WinSpecialFiles.java                               windows-all
 195 
 196 ############################################################################
 197 
 198 # jdk_nio
 199 
 200 # 6963118
 201 java/nio/channels/Selector/Wakeup.java                          windows-all
 202 
 203 # 7141822
 204 java/nio/channels/DatagramChannel/ChangingAddress.java          macosx-all
 205 
 206 # 7132677
 207 java/nio/channels/Selector/OutOfBand.java                       macosx-all
 208 
 209 # 7158947
 210 java/nio/file/WatchService/Basic.java                           solaris-all
 211 java/nio/file/WatchService/LotsOfEvents.java                    solaris-all
 212 
 213 # 8030179
 214 java/nio/Buffer/Chars.java                      windows-x64
 215 
 216 # 8172045
 217 java/nio/channels/AsyncCloseAndInterrupt.java           linux-all
 218 
 219 # 8076056
 220 java/nio/channels/DatagramChannel/BasicMulticastTests.java      linux-i586
 221 java/nio/channels/DatagramChannel/MulticastSendReceiveTests.java    linux-i586
 222 
 223 # 8148996
 224 java/nio/file/WatchService/WithSecurityManager.java     linux-all
 225 
 226 # 8173179
 227 java/nio/file/Files/probeContentType/Basic.java                  solaris-x64
 228 
 229 # 8171218
 230 java/nio/file/FileStore/Basic.java              linux-i586
 231 java/nio/file/FileSystem/Basic.java                 linux-i586
 232 
 233 ############################################################################
 234 
 235 # jdk_rmi
 236 
 237 # 7140992
 238 java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java  generic-all
 239 
 240 # 7146541
 241 java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
 242 
 243 # 7191877
 244 java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java       generic-all
 245 
 246 # 7195095
 247 sun/rmi/transport/proxy/EagerHttpFallback.java                  generic-all
 248 
 249 # 8049531
 250 java/rmi/reliability/benchmark/bench/serial/Main.java           linux-i586
 251 
 252 # 8162906
 253 javax/rmi/ssl/SSLSocketParametersTest.sh                    linux-all
 254 
 255 # 8137232
 256 javax/rmi/PortableRemoteObject/ConcurrentHashMapTest.java       linux-all
 257 
 258 # 8170248
 259 javax/rmi/PortableRemoteObject/8146975/RmiIiopReturnValueTest.java  linux-all
 260 
 261 # 8205049
 262 sun/rmi/transport/tcp/DisableRMIOverHttp/DisableRMIOverHTTPTest.java    windows-all
 263 
 264 ############################################################################
 265 
 266 # jdk_security
 267 
 268 # 8026976
 269 sun/security/pkcs11/ec/TestKeyFactory.java                      generic-all
 270 
 271 # 7164518
 272 sun/security/krb5/auto/Unreachable.java                         macosx-all
 273 
 274 # 7147060
 275 com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java        generic-all
 276 
 277 # 8160071
 278 sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java            linux-all
 279 
 280 # 8026393
 281 sun/security/tools/jarsigner/warnings/BadKeyUsageTest.java      generic-all
 282 
 283 # 8158827
 284 sun/security/krb5/auto/tools/KinitConfPlusProps.java                       windows-all
 285 
 286 # 8151225
 287 sun/security/rsa/SpecTest.java                                  linux-i586
 288 
 289 # 8043951
 290 sun/security/pkcs11/MessageDigest/TestCloning.java              solaris-all
 291 
 292 # 8156709
 293 sun/security/provider/SecureRandom/StrongSecureRandom.java      macosx-x64
 294 
 295 # 8163498
 296 sun/security/provider/NSASuiteB/TestDSAGenParameterSpec.java    linux-i586
 297 
 298 # 8203055
 299 # 8129560
 300 sun/security/pkcs11/rsa/TestKeyPairGenerator.java               linux-all,solaris-all
 301 
 302 # 8151834
 303 sun/security/mscapi/SmallPrimeExponentP.java                    windows-i586
 304 
 305 #8176354
 306 sun/security/ssl/com/sun/net/ssl/internal/ssl/X509KeyManager/PreferredKey.java     generic-all
 307 
 308 # 8206909
 309 com/sun/crypto/provider/CICO/PBEFunc/CICOPBEFuncTest.java       solaris-sparcv9
 310 
 311 # 8206911
 312 javax/xml/crypto/dsig/GenerationTests.java                      solaris-all
 313 
 314 # 8206912
 315 sun/security/krb5/auto/ReplayCacheTestProc.java                 solaris-sparcv9
 316 
 317 ############################################################################
 318 
 319 # jdk_sound
 320 
 321 ############################################################################
 322 
 323 # jdk_swing
 324 
 325 ############################################################################
 326 
 327 # jdk_text
 328 
 329 ############################################################################
 330 
 331 # jdk_time
 332 
 333 ############################################################################
 334 
 335 # jdk_tools
 336 
 337 # 8172782, 8007410
 338 tools/launcher/FXLauncherTest.java                     windows-all,linux-all
 339 
 340 ############################################################################
 341 
 342 # jdk_jdi
 343 
 344 ############################################################################
 345 
 346 # jdk_util
 347 
 348 # 8004807
 349 java/util/Timer/Args.java                                        generic-all
 350 
 351 ############################################################################
 352 
 353 # svc_tools
 354 
 355 # 8031482
 356 sun/tools/jcmd/TestJcmdSanity.java                              windows-all
 357 
 358 # 6456333
 359 sun/tools/jps/TestJpsJarRelative.java                           generic-all
 360 
 361 ############################################################################
 362 
 363 # jdk_other
 364 
 365 ############################################################################
 366 
 367 # 8141370
 368 com/sun/jndi/ldap/DeadSSLLdapTimeoutTest.java                   linux-i586,macosx-all