ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 1 | ########################################################################### |
| 2 | # |
lfoltan | 65ddf22 | 2014-04-21 13:51:08 -0400 | [diff] [blame] | 3 | # Copyright (c) 2009, 2014, Oracle and/or its affiliates. All rights reserved. |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 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 |
serb | 9adafbe | 2013-11-12 20:24:25 +0400 | [diff] [blame] | 8 | # published by the Free Software Foundation. |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 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 | # |
ohair | 2283b9d | 2010-05-25 15:58:33 -0700 | [diff] [blame] | 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. |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 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 | # |
mduigou | 76a5cac | 2011-02-21 13:37:22 -0800 | [diff] [blame] | 42 | # List items are testnames followed by labels, all MUST BE commented |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 43 | # as to why they are here and use a label: |
simonis | 7b180de | 2014-01-17 21:54:30 +0100 | [diff] [blame] | 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 |
mduigou | 76a5cac | 2011-02-21 13:37:22 -0800 | [diff] [blame] | 49 | # |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 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 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 115 | ############################################################################ |
| 116 | |
| 117 | # jdk_beans |
| 118 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 119 | ############################################################################ |
| 120 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 121 | # jdk_lang |
| 122 | |
alanb | 1fef1cb | 2012-01-16 16:30:29 +0000 | [diff] [blame] | 123 | ############################################################################ |
| 124 | |
| 125 | # jdk_management |
| 126 | |
alanb | ad72130 | 2013-11-14 10:40:33 +0000 | [diff] [blame] | 127 | # 8028150 |
| 128 | sun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh windows-all |
| 129 | |
alanb | 1b66ea9 | 2012-10-09 13:28:32 +0100 | [diff] [blame] | 130 | ############################################################################ |
| 131 | |
| 132 | # jdk_jmx |
| 133 | |
simonis | 7b180de | 2014-01-17 21:54:30 +0100 | [diff] [blame] | 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 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 139 | ############################################################################ |
| 140 | |
| 141 | # jdk_math |
| 142 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 143 | ############################################################################ |
| 144 | |
alanb | 1b66ea9 | 2012-10-09 13:28:32 +0100 | [diff] [blame] | 145 | # jdk_other |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 146 | |
alanb | 1fef1cb | 2012-01-16 16:30:29 +0000 | [diff] [blame] | 147 | # 6988950 |
| 148 | demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java generic-all |
| 149 | |
smarks | 87f39cc | 2012-11-29 14:43:46 -0800 | [diff] [blame] | 150 | # 7027502 |
| 151 | demo/jvmti/hprof/MonitorTest.java generic-all |
| 152 | |
alanb | ad72130 | 2013-11-14 10:40:33 +0000 | [diff] [blame] | 153 | # 8027973 |
| 154 | javax/xml/jaxp/transform/jdk8004476/XSLTExFuncTest.java windows-all |
chegar | fb84807 | 2013-11-07 08:04:36 +0000 | [diff] [blame] | 155 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 156 | ############################################################################ |
| 157 | |
| 158 | # jdk_net |
| 159 | |
alanb | 22956fe | 2011-07-18 13:10:02 +0100 | [diff] [blame] | 160 | # Filed 7052625 |
michaelm | 046f7f1 | 2011-09-21 14:51:01 +0100 | [diff] [blame] | 161 | com/sun/net/httpserver/bugs/6725892/Test.java generic-all |
alanb | 22956fe | 2011-07-18 13:10:02 +0100 | [diff] [blame] | 162 | |
michaelm | fb59afb | 2011-10-20 09:21:03 +0100 | [diff] [blame] | 163 | # failing on vista 32/64 on nightly |
| 164 | # 7102702 |
| 165 | java/net/PortUnreachableException/OneExceptionOnly.java windows-all |
alanb | eb8dc4a | 2012-02-20 19:33:32 +0000 | [diff] [blame] | 166 | |
alanb | 3290f52 | 2012-02-26 17:25:42 +0000 | [diff] [blame] | 167 | # 7148829 |
| 168 | sun/net/InetAddress/nameservice/simple/CacheTest.java generic-all |
| 169 | sun/net/InetAddress/nameservice/simple/DefaultCaching.java generic-all |
| 170 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 171 | # 7122846 |
| 172 | java/net/MulticastSocket/NoLoopbackPackets.java macosx-all |
| 173 | java/net/MulticastSocket/SetLoopbackMode.java macosx-all |
| 174 | |
| 175 | # 7145658 |
| 176 | java/net/MulticastSocket/Test.java macosx-all |
| 177 | |
chegar | 736dbff | 2013-05-17 15:00:53 +0100 | [diff] [blame] | 178 | # 7143960 |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 179 | java/net/DatagramSocket/SendDatagramToBadAddress.java macosx-all |
| 180 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 181 | ############################################################################ |
| 182 | |
| 183 | # jdk_nio |
| 184 | |
alanb | 902fc68 | 2010-06-23 20:19:29 +0100 | [diff] [blame] | 185 | # 6963118 |
| 186 | java/nio/channels/Selector/Wakeup.java windows-all |
ohair | 45110f4 | 2010-03-06 14:59:23 -0800 | [diff] [blame] | 187 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 188 | # 7141822 |
| 189 | java/nio/channels/DatagramChannel/ChangingAddress.java macosx-all |
| 190 | |
| 191 | # 7132677 |
| 192 | java/nio/channels/Selector/OutOfBand.java macosx-all |
| 193 | |
alanb | ad72130 | 2013-11-14 10:40:33 +0000 | [diff] [blame] | 194 | # 7158947, Solaris 11 |
| 195 | java/nio/file/WatchService/Basic.java solaris-all |
| 196 | java/nio/file/WatchService/LotsOfEvents.java solaris-all |
chegar | fb84807 | 2013-11-07 08:04:36 +0000 | [diff] [blame] | 197 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 198 | ############################################################################ |
| 199 | |
| 200 | # jdk_rmi |
| 201 | |
smarks | 4684601 | 2014-10-27 18:30:21 -0700 | [diff] [blame] | 202 | # 7140992 |
| 203 | java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java generic-all |
| 204 | |
alanb | 3290f52 | 2012-02-26 17:25:42 +0000 | [diff] [blame] | 205 | # 7146541 |
| 206 | java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all |
| 207 | |
smarks | 65c8c8f | 2012-08-30 18:53:02 -0700 | [diff] [blame] | 208 | # 7191877 |
| 209 | java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all |
| 210 | |
| 211 | # 7195095 |
smarks | 87f39cc | 2012-11-29 14:43:46 -0800 | [diff] [blame] | 212 | sun/rmi/transport/proxy/EagerHttpFallback.java generic-all |
smarks | 65c8c8f | 2012-08-30 18:53:02 -0700 | [diff] [blame] | 213 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 214 | ############################################################################ |
| 215 | |
| 216 | # jdk_security |
| 217 | |
ascarpino | dbf9666 | 2013-07-29 13:43:24 -0700 | [diff] [blame] | 218 | # 7157786 |
| 219 | sun/security/pkcs11/ec/TestKeyFactory.java generic-all |
ascarpino | c943c6f | 2013-07-19 11:34:33 -0700 | [diff] [blame] | 220 | |
weijun | d122f1e | 2012-09-17 17:19:50 +0800 | [diff] [blame] | 221 | # 7164518: no PortUnreachableException on Mac |
| 222 | sun/security/krb5/auto/Unreachable.java macosx-all |
| 223 | |
alanb | eb8dc4a | 2012-02-20 19:33:32 +0000 | [diff] [blame] | 224 | # 7147060 |
| 225 | com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all |
| 226 | |
weijun | eab3167 | 2012-09-18 17:38:43 +0800 | [diff] [blame] | 227 | # 6988842: 4 tests failing on Solaris 5.10 |
| 228 | sun/security/pkcs11/Secmod/AddPrivateKey.java solaris-all |
| 229 | sun/security/pkcs11/ec/ReadCertificates.java solaris-all |
| 230 | sun/security/pkcs11/ec/ReadPKCS12.java solaris-all |
| 231 | sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java solaris-all |
weijun | 6d8fea8 | 2011-08-16 08:53:03 +0800 | [diff] [blame] | 232 | |
weijun | f67a9c4 | 2013-10-23 08:32:03 +0800 | [diff] [blame] | 233 | # 7041639, Solaris DSA keypair generation bug |
weijun | c4ee9be | 2011-09-05 18:17:55 +0800 | [diff] [blame] | 234 | java/security/KeyPairGenerator/SolarisShortDSA.java solaris-all |
weijun | c4ee9be | 2011-09-05 18:17:55 +0800 | [diff] [blame] | 235 | sun/security/tools/keytool/standard.sh solaris-all |
| 236 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 237 | ############################################################################ |
| 238 | |
alanb | eb8dc4a | 2012-02-20 19:33:32 +0000 | [diff] [blame] | 239 | # jdk_sound |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 240 | |
alanb | eb8dc4a | 2012-02-20 19:33:32 +0000 | [diff] [blame] | 241 | ############################################################################ |
| 242 | |
| 243 | # jdk_swing |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 244 | |
| 245 | ############################################################################ |
| 246 | |
| 247 | # jdk_text |
| 248 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 249 | ############################################################################ |
| 250 | |
chegar | 9f70b3b | 2013-06-19 15:58:21 +0100 | [diff] [blame] | 251 | # jdk_time |
| 252 | |
chegar | 9f70b3b | 2013-06-19 15:58:21 +0100 | [diff] [blame] | 253 | ############################################################################ |
| 254 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 255 | # jdk_tools |
| 256 | |
ksrini | d902b5c | 2013-02-10 08:07:59 -0800 | [diff] [blame] | 257 | # Tests take too long, on sparcs see 7143279 |
alanb | b2f5cb4 | 2013-05-21 08:53:51 +0100 | [diff] [blame] | 258 | tools/pack200/CommandLineTests.java solaris-all, macosx-all |
ksrini | d902b5c | 2013-02-10 08:07:59 -0800 | [diff] [blame] | 259 | tools/pack200/Pack200Test.java solaris-all, macosx-all |
alanb | 1b66ea9 | 2012-10-09 13:28:32 +0100 | [diff] [blame] | 260 | |
ksrini | e4e7199 | 2013-02-01 22:18:18 -0800 | [diff] [blame] | 261 | # 8007410 |
| 262 | tools/launcher/FXLauncherTest.java linux-all |
| 263 | |
alanb | 1b66ea9 | 2012-10-09 13:28:32 +0100 | [diff] [blame] | 264 | ############################################################################ |
| 265 | |
| 266 | # jdk_jdi |
| 267 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 268 | ############################################################################ |
| 269 | |
| 270 | # jdk_util |
| 271 | |
alanb | 22956fe | 2011-07-18 13:10:02 +0100 | [diff] [blame] | 272 | # Filed 6772009 |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 273 | java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all |
| 274 | |
ohair | 7aae9af | 2009-11-08 15:11:10 -0800 | [diff] [blame] | 275 | ############################################################################ |