blob: 4b49cebbb2582f420fe758ba9433466280b47c63 [file] [log] [blame]
ohair7aae9af2009-11-08 15:11:10 -08001###########################################################################
2#
slac9faa842012-02-24 20:09:49 +01003# Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
ohair7aae9af2009-11-08 15:11:10 -08004# 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
ohair2283b9d2010-05-25 15:58:33 -07008# published by the Free Software Foundation. Oracle designates this
ohair7aae9af2009-11-08 15:11:10 -08009# particular file as subject to the "Classpath" exception as provided
ohair2283b9d2010-05-25 15:58:33 -070010# by Oracle in the LICENSE file that accompanied this code.
ohair7aae9af2009-11-08 15:11:10 -080011#
12# This code is distributed in the hope that it will be useful, but WITHOUT
13# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15# version 2 for more details (a copy is included in the LICENSE file that
16# accompanied this code).
17#
18# You should have received a copy of the GNU General Public License version
19# 2 along with this work; if not, write to the Free Software Foundation,
20# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
21#
ohair2283b9d2010-05-25 15:58:33 -070022# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
23# or visit www.oracle.com if you need additional information or have any
24# questions.
ohair7aae9af2009-11-08 15:11:10 -080025#
26###########################################################################
27#
28# List of tests that should not be run by test/Makefile, for various reasons:
29# 1. Does not run with jtreg -samevm mode
30# 2. Causes problems in jtreg -samevm mode for jtreg or tests that follow it
31# 3. The test is too slow or consumes too many system resources
32# 4. The test fails when run on any official build systems
33#
34# It is possible that a test being on this list is a mistake, and that some
35# other test in samevm mode caused tests to fail, mistakes happen.
36#
37# Tests marked @ignore are not run by test/Makefile, but harmless to be listed.
38#
39# Tests that explicitly state "@run main/othervm ...", and are not listed here,
40# will be run in the same batch as the samevm tests.
41#
42# Shell tests are othervm by default.
43#
mduigou76a5cac2011-02-21 13:37:22 -080044# List items are testnames followed by labels, all MUST BE commented
ohair7aae9af2009-11-08 15:11:10 -080045# as to why they are here and use a label:
michaelm046f7f12011-09-21 14:51:01 +010046# generic-all Problems on all platforms
47# generic-ARCH Where ARCH is one of: sparc, sparcv9, x64, i586, etc.
48# OSNAME-all Where OSNAME is one of: solaris, linux, windows
49# OSNAME-ARCH Specific on to one OSNAME and ARCH, e.g. solaris-x64
50# OSNAME-REV Specific on to one OSNAME and REV, e.g. solaris-5.8
mduigou76a5cac2011-02-21 13:37:22 -080051#
ohair7aae9af2009-11-08 15:11:10 -080052# More than one label is allowed but must be on the same line.
53#
54#############################################################################
55#
56# Running the tests:
57# cd test && make JT_HOME=jtreg_home PRODUCT_HOME=jdk_home jdk_all
58# Or instead of jdk_all, use any of the jdk_* targets.
59#
60# Samevm Notes:
61# * Although some tests may have only been seen to fail on some platforms,
62# they might be flagged as 'generic-all' because the problem they have
63# could cause hidden slowdowns on other platforms.
64# Most samevm problems will be generic-all, but windows usually dislikes
65# them the most.
66# Address already in use or connection errors indicate a generic port issue.
67# (this is not necessarily a samevm issue, but an issue for running the tests
68# on shared machines, two people or two test runs will collide).
69# * Samevm problem (windows in particular) is not closing all input/output
70# * Samevm problem when a test calls setSecurityManager()
71# * Samevm problem with setHttps*() is used? (not exactly sure here)
72# * Samevm problem when stuffing system properties with non Strings or anything
73# * Samevm problem when changing vm settings, or registering any vm actions
74# * Samevm problems with deleteOnExit(), if it must happen at end of test
75# * Samevm problems with URLClassLoader? (no details here)
76# * Samevm problems with dependence on predictable GC or finalizations
77#
78# Any of the above problems may mean the test needs to be flagged as "othervm".
79#
80#############################################################################
81#
82# Fixing the tests:
83#
84# Some tests just may need to be run with "othervm", and that can easily be
85# done my adding a @run line (or modifying any existing @run):
86# @run main/othervm NameOfMainClass
87# Make sure this @run follows any use of @library.
88# Otherwise, if the test is a samevm possibility, make sure the test is
89# cleaning up after itself, closing all streams, deleting temp files, etc.
90#
91# Keep in mind that the bug could be in many places, and even different per
92# platform, it could be a bug in any one of:
93# - the testcase
94# - the jdk (jdk classes, native code, or hotspot)
95# - the native compiler
96# - the javac compiler
97# - the OS (depends on what the testcase does)
98#
99# If you managed to really fix one of these tests, here is how you can
100# remove tests from this list:
101# 1. Make sure test passes on all platforms with samevm, or mark it othervm
102# 2. Make sure test passes on all platforms when run with it's entire group
103# 3. Make sure both VMs are tested, -server and -client, if possible
104# 4. Make sure you try the -d64 option on Solaris
105# 5. Use a tool like JPRT or something to verify these results
106# 6. Delete lines in this file, include the changes with your test changes
107#
108# You may need to repeat your testing 2 or even 3 times to verify good
109# results, some of these samevm failures are not very predictable.
110#
111#############################################################################
112
113############################################################################
114
115# jdk_awt
116
ohair7aae9af2009-11-08 15:11:10 -0800117############################################################################
118
119# jdk_beans
120
ohair7aae9af2009-11-08 15:11:10 -0800121############################################################################
122
ohair7aae9af2009-11-08 15:11:10 -0800123# jdk_lang
124
alanb1fef1cb2012-01-16 16:30:29 +0000125# 7123972
126java/lang/annotation/loaderLeak/Main.java generic-all
127
alanb937d5f72011-08-22 16:04:04 +0100128# 6944188
michaelm046f7f12011-09-21 14:51:01 +0100129java/lang/management/ThreadMXBean/ThreadStateTest.java generic-all
alanb937d5f72011-08-22 16:04:04 +0100130
smarks83dab672011-08-12 14:51:48 -0700131# 7067973
132java/lang/management/MemoryMXBean/CollectionUsageThreshold.java generic-all
133
alanb3290f522012-02-26 17:25:42 +0000134# 7148492
135java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java generic-all
136
alanb1fef1cb2012-01-16 16:30:29 +0000137############################################################################
138
139# jdk_management
140
alanbeb8dc4a2012-02-20 19:33:32 +0000141# 6959636
142javax/management/loading/LibraryLoader/LibraryLoaderTest.java windows-all
143
144# 7144846
145javax/management/remote/mandatory/connection/ReconnectTest.java generic-all
146
dsamersoff7034ee32012-02-28 17:00:28 +0400147# 7149181
148sun/management/jmxremote/startstop/JMXStartStopTest.sh generic-all
ohair7aae9af2009-11-08 15:11:10 -0800149
150############################################################################
151
152# jdk_math
153
ohair7aae9af2009-11-08 15:11:10 -0800154############################################################################
155
156# jdk_misc
157
alanb1fef1cb2012-01-16 16:30:29 +0000158# 6988950
159demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java generic-all
160
ohair7aae9af2009-11-08 15:11:10 -0800161# Need to be marked othervm, or changed to be samevm safe
michaelm046f7f12011-09-21 14:51:01 +0100162com/sun/jndi/rmi/registry/RegistryContext/UnbindIdempotent.java generic-all
ohair7aae9af2009-11-08 15:11:10 -0800163
ohair7aae9af2009-11-08 15:11:10 -0800164############################################################################
165
166# jdk_net
167
alanb22956fe2011-07-18 13:10:02 +0100168# Filed 7052625
michaelm046f7f12011-09-21 14:51:01 +0100169com/sun/net/httpserver/bugs/6725892/Test.java generic-all
alanb22956fe2011-07-18 13:10:02 +0100170
171# Filed 7036666
michaelm046f7f12011-09-21 14:51:01 +0100172com/sun/net/httpserver/Test9a.java generic-all
alanb22956fe2011-07-18 13:10:02 +0100173
weijun6d8fea82011-08-16 08:53:03 +0800174# 7079145 java/net/ipv6tests/UdpTest.java hang at IPv6 only data exchange
175java/net/ipv6tests/UdpTest.java linux-all
176
alanb937d5f72011-08-22 16:04:04 +0100177# 7081476
michaelm046f7f12011-09-21 14:51:01 +0100178java/net/InetSocketAddress/B6469803.java generic-all
alanb937d5f72011-08-22 16:04:04 +0100179
michaelmfb59afb2011-10-20 09:21:03 +0100180# 7102670
181java/net/InetAddress/CheckJNI.java linux-all
182
183# failing on vista 32/64 on nightly
184# 7102702
185java/net/PortUnreachableException/OneExceptionOnly.java windows-all
alanbeb8dc4a2012-02-20 19:33:32 +0000186
alanb3290f522012-02-26 17:25:42 +0000187# 7148829
188sun/net/InetAddress/nameservice/simple/CacheTest.java generic-all
189sun/net/InetAddress/nameservice/simple/DefaultCaching.java generic-all
190
ohair7aae9af2009-11-08 15:11:10 -0800191############################################################################
192
alanb902fc682010-06-23 20:19:29 +0100193# jdk_io
194
195# 6962637
196java/io/File/MaxPathLength.java windows-all
197
alanb937d5f72011-08-22 16:04:04 +0100198# 7076644
michaelm046f7f12011-09-21 14:51:01 +0100199java/io/File/Basic.java windows-all
alanb937d5f72011-08-22 16:04:04 +0100200
alanb902fc682010-06-23 20:19:29 +0100201############################################################################
202
ohair7aae9af2009-11-08 15:11:10 -0800203# jdk_nio
204
alanb902fc682010-06-23 20:19:29 +0100205# 6963118
206java/nio/channels/Selector/Wakeup.java windows-all
ohair45110f42010-03-06 14:59:23 -0800207
alanbf9cbc922011-12-05 12:23:46 +0000208# 7052549
209java/nio/channels/FileChannel/ReleaseOnCloseDeadlock.java windows-all
alanb937d5f72011-08-22 16:04:04 +0100210
ohair7aae9af2009-11-08 15:11:10 -0800211############################################################################
212
213# jdk_rmi
214
alanb38a5cf62012-02-12 21:09:09 +0000215# 7140992
ohair7aae9af2009-11-08 15:11:10 -0800216java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java generic-all
alanb38a5cf62012-02-12 21:09:09 +0000217
218# 6948101
219java/rmi/transport/pinLastArguments/PinLastArguments.java generic-all
ohair7aae9af2009-11-08 15:11:10 -0800220
alanb3290f522012-02-26 17:25:42 +0000221# 7146541
222java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
223
alanb99472732012-01-24 09:09:08 +0000224# 7132247
225java/rmi/registry/readTest/readTest.sh windows-all
226
ohair7aae9af2009-11-08 15:11:10 -0800227############################################################################
228
229# jdk_security
230
alanbeb8dc4a2012-02-20 19:33:32 +0000231# 7145024
232sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/main.java solaris-all
233
234# 7147060
235com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
236
ohair8bcba562010-03-12 09:03:02 -0800237# Failing on Solaris i586, 3/9/2010, not a -samevm issue (jdk_security3)
michaelm046f7f12011-09-21 14:51:01 +0100238sun/security/pkcs11/Secmod/AddPrivateKey.java solaris-i586
239sun/security/pkcs11/ec/ReadCertificates.java solaris-i586
240sun/security/pkcs11/ec/ReadPKCS12.java solaris-i586
241sun/security/pkcs11/ec/TestCurves.java solaris-i586
242sun/security/pkcs11/ec/TestECDSA.java solaris-i586
243#sun/security/pkcs11/ec/TestECGenSpec.java solaris-i586
244#sun/security/pkcs11/ec/TestKeyFactory.java solaris-i586
245sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java solaris-i586
ohair8bcba562010-03-12 09:03:02 -0800246
weijundff52e62011-08-12 12:26:31 +0800247# Fails on Fedora 9/Ubuntu 10.04 64bit, PKCS11Exception: CKR_DEVICE_ERROR
michaelm046f7f12011-09-21 14:51:01 +0100248sun/security/pkcs11/KeyAgreement/TestDH.java generic-all
ohairf6f9ba52009-12-09 09:46:57 -0800249
ohair7aae9af2009-11-08 15:11:10 -0800250# Run too slow on Solaris 10 sparc
251sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/SSLSocketTimeoutNulls.java solaris-sparc
252sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ClientTimeout.java solaris-sparc
253sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ServerTimeout.java solaris-sparc
254sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/ReadTimeout.java solaris-sparc
255sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/NotifyHandshakeTest.sh solaris-sparc
ohair7aae9af2009-11-08 15:11:10 -0800256
257# Solaris 10 sparc, passed/failed confusion? java.security.ProviderException: update() failed
258sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/AsyncSSLSocketClose.java generic-all
259
ohair7aae9af2009-11-08 15:11:10 -0800260# Othervm, sparc, NoRouteToHostException: Cannot assign requested address
261sun/security/ssl/javax/net/ssl/NewAPIs/SessionCacheSizeTests.java generic-all
262
ohair7aae9af2009-11-08 15:11:10 -0800263# Times out on windows X64, othervm mode
264# Solaris sparc and sparcv9 -server, timeout
michaelm046f7f12011-09-21 14:51:01 +0100265sun/security/ssl/javax/net/ssl/NewAPIs/SessionTimeOutTests.java generic-all
ohair7aae9af2009-11-08 15:11:10 -0800266
ohair7aae9af2009-11-08 15:11:10 -0800267# Various failures on Linux Fedora 9 X64, othervm mode
ohair7aae9af2009-11-08 15:11:10 -0800268sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/TestAllSuites.java generic-all
michaelm046f7f12011-09-21 14:51:01 +0100269sun/security/ssl/sanity/ciphersuites/CheckCipherSuites.java generic-all
ohair7aae9af2009-11-08 15:11:10 -0800270
271# Various failures on Linux Fedora 9 X64, othervm mode
michaelm046f7f12011-09-21 14:51:01 +0100272sun/security/ssl/sanity/interop/ClientJSSEServerJSSE.java generic-all
ohair7aae9af2009-11-08 15:11:10 -0800273
weijun6d8fea82011-08-16 08:53:03 +0800274# 7079203 sun/security/tools/keytool/printssl.sh fails on solaris with timeout
275sun/security/tools/keytool/printssl.sh solaris-all
276
alanb937d5f72011-08-22 16:04:04 +0100277# 7081817
michaelm046f7f12011-09-21 14:51:01 +0100278sun/security/provider/certpath/X509CertPath/IllegalCertiticates.java generic-all
alanb937d5f72011-08-22 16:04:04 +0100279
weijunc4ee9be2011-09-05 18:17:55 +0800280# 7041639, Solaris DSA keypair generation bug (Note: jdk_util also affected)
281java/security/KeyPairGenerator/SolarisShortDSA.java solaris-all
282sun/security/tools/jarsigner/onlymanifest.sh solaris-all
283sun/security/tools/jarsigner/ts.sh solaris-all
284sun/security/tools/keytool/emptysubject.sh solaris-all
285sun/security/tools/keytool/importreadall.sh solaris-all
286sun/security/tools/keytool/readjar.sh solaris-all
287sun/security/tools/keytool/selfissued.sh solaris-all
288sun/security/tools/keytool/standard.sh solaris-all
289
ohair7aae9af2009-11-08 15:11:10 -0800290############################################################################
291
alanbeb8dc4a2012-02-20 19:33:32 +0000292# jdk_sound
ohair7aae9af2009-11-08 15:11:10 -0800293
alanbeb8dc4a2012-02-20 19:33:32 +0000294############################################################################
295
296# jdk_swing
ohair7aae9af2009-11-08 15:11:10 -0800297
298############################################################################
299
300# jdk_text
301
ohair7aae9af2009-11-08 15:11:10 -0800302############################################################################
303
304# jdk_tools
305
alanb38a5cf62012-02-12 21:09:09 +0000306# 6461635
307com/sun/tools/attach/BasicTests.sh generic-all
308
ohairaf343022010-09-24 14:22:01 -0700309# Filed 6952105
michaelm046f7f12011-09-21 14:51:01 +0100310com/sun/jdi/SuspendThreadTest.java generic-all
ohairaf343022010-09-24 14:22:01 -0700311
alanb22956fe2011-07-18 13:10:02 +0100312# Filed 6653793
michaelm046f7f12011-09-21 14:51:01 +0100313com/sun/jdi/RedefineCrossEvent.java generic-all
alanb22956fe2011-07-18 13:10:02 +0100314
315# Filed 6987312
michaelm046f7f12011-09-21 14:51:01 +0100316com/sun/jdi/DoubleAgentTest.java generic-all
alanb22956fe2011-07-18 13:10:02 +0100317
318# Filed 7020857
michaelm046f7f12011-09-21 14:51:01 +0100319com/sun/jdi/FieldWatchpoints.java generic-all
alanb22956fe2011-07-18 13:10:02 +0100320
321# Filed 6402201
michaelm046f7f12011-09-21 14:51:01 +0100322com/sun/jdi/ProcessAttachTest.sh generic-all
alanb22956fe2011-07-18 13:10:02 +0100323
ohairaf343022010-09-24 14:22:01 -0700324# Filed 6979016
michaelm046f7f12011-09-21 14:51:01 +0100325sun/tools/jconsole/ResourceCheckTest.sh generic-all
ohairaf343022010-09-24 14:22:01 -0700326
alanb99472732012-01-24 09:09:08 +0000327# 7132203
328sun/jvmstat/monitor/MonitoredVm/CR6672135.java generic-all
329
alanbeb8dc4a2012-02-20 19:33:32 +0000330# Tests take too long, see 7143279
alanb38a5cf62012-02-12 21:09:09 +0000331tools/pack200/CommandLineTests.java generic-all
332tools/pack200/Pack200Test.java generic-all
333
alanb3290f522012-02-26 17:25:42 +0000334# 7148499
335tools/launcher/Settings.java generic-all
336
ohair7aae9af2009-11-08 15:11:10 -0800337############################################################################
338
339# jdk_util
340
ohairaf343022010-09-24 14:22:01 -0700341# Filed 6933803
michaelm046f7f12011-09-21 14:51:01 +0100342java/util/concurrent/ThreadPoolExecutor/CoreThreadTimeOut.java generic-all
ohairaf343022010-09-24 14:22:01 -0700343
alanb22956fe2011-07-18 13:10:02 +0100344# Filed 6772009
ohair7aae9af2009-11-08 15:11:10 -0800345java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
346
weijunc4ee9be2011-09-05 18:17:55 +0800347# 7041639, Solaris DSA keypair generation bug
348java/util/TimeZone/TimeZoneDatePermissionCheck.sh solaris-all
349
ohair7aae9af2009-11-08 15:11:10 -0800350############################################################################