blob: 00a354a7b0d4f7f99788942d6e2ebf961125183c [file] [log] [blame]
ohair7aae9af2009-11-08 15:11:10 -08001###########################################################################
2#
smarksf351c0a2013-01-07 18:09:07 -08003# Copyright (c) 2009, 2013, 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.
mduigouba95ae82013-02-06 11:28:25 -080048# OSNAME-all Where OSNAME is one of: solaris, linux, windows, macosx
49# OSNAME-ARCH Specific on to one OSNAME and ARCH, e.g. solaris-amd64
michaelm046f7f12011-09-21 14:51:01 +010050# 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
alanb937d5f72011-08-22 16:04:04 +0100125# 6944188
michaelm046f7f12011-09-21 14:51:01 +0100126java/lang/management/ThreadMXBean/ThreadStateTest.java generic-all
alanb937d5f72011-08-22 16:04:04 +0100127
smarks83dab672011-08-12 14:51:48 -0700128# 7067973
129java/lang/management/MemoryMXBean/CollectionUsageThreshold.java generic-all
130
jcoomescf866b62012-09-14 15:02:24 -0700131# 7196801
132java/lang/management/MemoryMXBean/LowMemoryTest2.sh generic-all
133
chegar0e6d40a2013-08-01 12:38:07 +0100134# 8021230
135java/lang/ThreadLocal/ThreadLocalSupplierTest.java generic-all
136
igerasim360c8f02013-07-23 18:57:57 +0400137
alanb1fef1cb2012-01-16 16:30:29 +0000138############################################################################
139
140# jdk_management
141
mchung4617d272013-04-18 11:14:39 -0700142# 8010897
alanbb2f5cb42013-05-21 08:53:51 +0100143sun/management/HotspotRuntimeMBean/GetSafepointSyncTime.java macosx-all
mchung4617d272013-04-18 11:14:39 -0700144
alanb1b66ea92012-10-09 13:28:32 +0100145############################################################################
146
147# jdk_jmx
148
alanbeb8dc4a2012-02-20 19:33:32 +0000149# 6959636
150javax/management/loading/LibraryLoader/LibraryLoaderTest.java windows-all
151
ohair7aae9af2009-11-08 15:11:10 -0800152############################################################################
153
154# jdk_math
155
ohair7aae9af2009-11-08 15:11:10 -0800156############################################################################
157
alanb1b66ea92012-10-09 13:28:32 +0100158# jdk_other
ohair7aae9af2009-11-08 15:11:10 -0800159
alanb1fef1cb2012-01-16 16:30:29 +0000160# 6988950
161demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java generic-all
162
smarks87f39cc2012-11-29 14:43:46 -0800163# 7027502
164demo/jvmti/hprof/MonitorTest.java generic-all
165
chegarf1079e22013-07-24 22:52:01 +0100166# 8021186
167jdk/lambda/vm/DefaultMethodsTest.java generic-all
168
ohair7aae9af2009-11-08 15:11:10 -0800169############################################################################
170
171# jdk_net
172
alanb22956fe2011-07-18 13:10:02 +0100173# Filed 7052625
michaelm046f7f12011-09-21 14:51:01 +0100174com/sun/net/httpserver/bugs/6725892/Test.java generic-all
alanb22956fe2011-07-18 13:10:02 +0100175
176# Filed 7036666
michaelm046f7f12011-09-21 14:51:01 +0100177com/sun/net/httpserver/Test9a.java generic-all
alanb22956fe2011-07-18 13:10:02 +0100178
weijun6d8fea82011-08-16 08:53:03 +0800179# 7079145 java/net/ipv6tests/UdpTest.java hang at IPv6 only data exchange
180java/net/ipv6tests/UdpTest.java linux-all
181
michaelmfb59afb2011-10-20 09:21:03 +0100182# 7102670
183java/net/InetAddress/CheckJNI.java linux-all
184
185# failing on vista 32/64 on nightly
186# 7102702
187java/net/PortUnreachableException/OneExceptionOnly.java windows-all
alanbeb8dc4a2012-02-20 19:33:32 +0000188
alanb3290f522012-02-26 17:25:42 +0000189# 7148829
190sun/net/InetAddress/nameservice/simple/CacheTest.java generic-all
191sun/net/InetAddress/nameservice/simple/DefaultCaching.java generic-all
192
michaelm5ac8c152012-03-06 20:34:38 +0000193# 7122846
194java/net/MulticastSocket/NoLoopbackPackets.java macosx-all
195java/net/MulticastSocket/SetLoopbackMode.java macosx-all
196
197# 7145658
198java/net/MulticastSocket/Test.java macosx-all
199
chegar736dbff2013-05-17 15:00:53 +0100200# 7143960
michaelm5ac8c152012-03-06 20:34:38 +0000201java/net/DatagramSocket/SendDatagramToBadAddress.java macosx-all
202
chegar736dbff2013-05-17 15:00:53 +0100203# 8014719
204sun/net/www/http/HttpClient/ProxyTest.java generic-all
205
ohair7aae9af2009-11-08 15:11:10 -0800206############################################################################
207
alanb902fc682010-06-23 20:19:29 +0100208# jdk_io
209
smarks87f39cc2012-11-29 14:43:46 -0800210# 7160013
211java/io/File/MaxPathLength.java windows-all
212
alanb902fc682010-06-23 20:19:29 +0100213############################################################################
214
ohair7aae9af2009-11-08 15:11:10 -0800215# jdk_nio
216
alanb902fc682010-06-23 20:19:29 +0100217# 6963118
218java/nio/channels/Selector/Wakeup.java windows-all
ohair45110f42010-03-06 14:59:23 -0800219
alanbf9cbc922011-12-05 12:23:46 +0000220# 7052549
221java/nio/channels/FileChannel/ReleaseOnCloseDeadlock.java windows-all
alanb937d5f72011-08-22 16:04:04 +0100222
michaelm5ac8c152012-03-06 20:34:38 +0000223# 7133499, 7133497
224java/nio/channels/AsyncCloseAndInterrupt.java macosx-all
225java/nio/channels/AsynchronousFileChannel/Lock.java macosx-all
226java/nio/channels/FileChannel/Transfer.java macosx-all
227
228# 7141822
229java/nio/channels/DatagramChannel/ChangingAddress.java macosx-all
230
231# 7132677
232java/nio/channels/Selector/OutOfBand.java macosx-all
233
ohair7aae9af2009-11-08 15:11:10 -0800234############################################################################
235
236# jdk_rmi
237
alanb3290f522012-02-26 17:25:42 +0000238# 7146541
239java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
240
smarks65c8c8f2012-08-30 18:53:02 -0700241# 7190106
242java/rmi/reliability/benchmark/runRmiBench.sh generic-all
243
244# 7191877
245java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all
246
247# 7195095
smarks87f39cc2012-11-29 14:43:46 -0800248sun/rmi/transport/proxy/EagerHttpFallback.java generic-all
smarks65c8c8f2012-08-30 18:53:02 -0700249
ohair7aae9af2009-11-08 15:11:10 -0800250############################################################################
251
252# jdk_security
253
ascarpinodbf96662013-07-29 13:43:24 -0700254# 7157786
255sun/security/pkcs11/ec/TestKeyFactory.java generic-all
ascarpinoc943c6f2013-07-19 11:34:33 -0700256
weijund122f1e2012-09-17 17:19:50 +0800257# 7164518: no PortUnreachableException on Mac
258sun/security/krb5/auto/Unreachable.java macosx-all
259
alanbeb8dc4a2012-02-20 19:33:32 +0000260# 7147060
261com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
262
weijuneab31672012-09-18 17:38:43 +0800263# 6988842: 4 tests failing on Solaris 5.10
264sun/security/pkcs11/Secmod/AddPrivateKey.java solaris-all
265sun/security/pkcs11/ec/ReadCertificates.java solaris-all
266sun/security/pkcs11/ec/ReadPKCS12.java solaris-all
267sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java solaris-all
weijun6d8fea82011-08-16 08:53:03 +0800268
alanb48905ec2013-06-04 11:52:29 +0100269# 8009438
270sun/security/pkcs11/Secmod/AddPrivateKey.java linux-all
271sun/security/pkcs11/Secmod/TrustAnchors.java linux-all
272
weijunc4ee9be2011-09-05 18:17:55 +0800273# 7041639, Solaris DSA keypair generation bug (Note: jdk_util also affected)
274java/security/KeyPairGenerator/SolarisShortDSA.java solaris-all
275sun/security/tools/jarsigner/onlymanifest.sh solaris-all
276sun/security/tools/jarsigner/ts.sh solaris-all
277sun/security/tools/keytool/emptysubject.sh solaris-all
278sun/security/tools/keytool/importreadall.sh solaris-all
279sun/security/tools/keytool/readjar.sh solaris-all
280sun/security/tools/keytool/selfissued.sh solaris-all
281sun/security/tools/keytool/standard.sh solaris-all
282
weijund2be8642012-10-22 17:01:35 +0800283# 8000439: NPG: REGRESSION : sun/security/krb5/auto/MaxRetries.java fails with timeout
284sun/security/krb5/auto/MaxRetries.java solaris-sparcv9
285
weijun60d87eb2013-03-22 19:59:14 +0800286# 8006690: sun/security/krb5/auto/BadKdc1.java fails intermittently
287sun/security/krb5/auto/BadKdc1.java solaris-sparcv9
288sun/security/krb5/auto/BadKdc2.java solaris-sparcv9
289sun/security/krb5/auto/BadKdc3.java solaris-sparcv9
290sun/security/krb5/auto/BadKdc4.java solaris-sparcv9
291
ohair7aae9af2009-11-08 15:11:10 -0800292############################################################################
293
alanbeb8dc4a2012-02-20 19:33:32 +0000294# jdk_sound
ohair7aae9af2009-11-08 15:11:10 -0800295
alanbeb8dc4a2012-02-20 19:33:32 +0000296############################################################################
297
298# jdk_swing
ohair7aae9af2009-11-08 15:11:10 -0800299
300############################################################################
301
302# jdk_text
303
ohair7aae9af2009-11-08 15:11:10 -0800304############################################################################
305
chegar9f70b3b2013-06-19 15:58:21 +0100306# jdk_time
307
chegar9f70b3b2013-06-19 15:58:21 +0100308############################################################################
309
ohair7aae9af2009-11-08 15:11:10 -0800310# jdk_tools
311
alanb38a5cf62012-02-12 21:09:09 +0000312# 6461635
313com/sun/tools/attach/BasicTests.sh generic-all
314
alanb1b66ea92012-10-09 13:28:32 +0100315# 7172176
316sun/tools/jconsole/ResourceCheckTest.sh generic-all
317sun/tools/jconsole/ImmutableResourceTest.sh generic-all
318
319# 7132203
320sun/jvmstat/monitor/MonitoredVm/CR6672135.java generic-all
321
ksrinid902b5c2013-02-10 08:07:59 -0800322# Tests take too long, on sparcs see 7143279
alanbb2f5cb42013-05-21 08:53:51 +0100323tools/pack200/CommandLineTests.java solaris-all, macosx-all
ksrinid902b5c2013-02-10 08:07:59 -0800324tools/pack200/Pack200Test.java solaris-all, macosx-all
alanb1b66ea92012-10-09 13:28:32 +0100325
ksrinie4e71992013-02-01 22:18:18 -0800326# 8007410
327tools/launcher/FXLauncherTest.java linux-all
328
alanb1b66ea92012-10-09 13:28:32 +0100329############################################################################
330
331# jdk_jdi
332
ohairaf343022010-09-24 14:22:01 -0700333# Filed 6952105
michaelm046f7f12011-09-21 14:51:01 +0100334com/sun/jdi/SuspendThreadTest.java generic-all
ohairaf343022010-09-24 14:22:01 -0700335
alanb22956fe2011-07-18 13:10:02 +0100336# Filed 6653793
michaelm046f7f12011-09-21 14:51:01 +0100337com/sun/jdi/RedefineCrossEvent.java generic-all
alanb22956fe2011-07-18 13:10:02 +0100338
339# Filed 6987312
michaelm046f7f12011-09-21 14:51:01 +0100340com/sun/jdi/DoubleAgentTest.java generic-all
alanb22956fe2011-07-18 13:10:02 +0100341
342# Filed 7020857
michaelm046f7f12011-09-21 14:51:01 +0100343com/sun/jdi/FieldWatchpoints.java generic-all
alanb22956fe2011-07-18 13:10:02 +0100344
345# Filed 6402201
michaelm046f7f12011-09-21 14:51:01 +0100346com/sun/jdi/ProcessAttachTest.sh generic-all
alanb22956fe2011-07-18 13:10:02 +0100347
ohair7aae9af2009-11-08 15:11:10 -0800348############################################################################
349
350# jdk_util
351
ohairaf343022010-09-24 14:22:01 -0700352# Filed 6933803
michaelm046f7f12011-09-21 14:51:01 +0100353java/util/concurrent/ThreadPoolExecutor/CoreThreadTimeOut.java generic-all
ohairaf343022010-09-24 14:22:01 -0700354
alanb22956fe2011-07-18 13:10:02 +0100355# Filed 6772009
ohair7aae9af2009-11-08 15:11:10 -0800356java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
357
weijunc4ee9be2011-09-05 18:17:55 +0800358# 7041639, Solaris DSA keypair generation bug
359java/util/TimeZone/TimeZoneDatePermissionCheck.sh solaris-all
360
ohair7aae9af2009-11-08 15:11:10 -0800361############################################################################