5928N/A##########################################################################
1821N/A#
5928N/A# Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
1821N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1821N/A#
1821N/A# This code is free software; you can redistribute it and/or modify it
1821N/A# under the terms of the GNU General Public License version 2 only, as
2362N/A# published by the Free Software Foundation. Oracle designates this
1821N/A# particular file as subject to the "Classpath" exception as provided
2362N/A# by Oracle in the LICENSE file that accompanied this code.
1821N/A#
1821N/A# This code is distributed in the hope that it will be useful, but WITHOUT
1821N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1821N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1821N/A# version 2 for more details (a copy is included in the LICENSE file that
1821N/A# accompanied this code).
1821N/A#
1821N/A# You should have received a copy of the GNU General Public License version
1821N/A# 2 along with this work; if not, write to the Free Software Foundation,
1821N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1821N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/A# questions.
1821N/A#
1821N/A###########################################################################
1821N/A#
1821N/A# List of tests that should not be run by test/Makefile, for various reasons:
1821N/A# 1. Does not run with jtreg -samevm mode
1821N/A# 2. Causes problems in jtreg -samevm mode for jtreg or tests that follow it
1821N/A# 3. The test is too slow or consumes too many system resources
1821N/A# 4. The test fails when run on any official build systems
1821N/A#
1821N/A# It is possible that a test being on this list is a mistake, and that some
1821N/A# other test in samevm mode caused tests to fail, mistakes happen.
1821N/A#
1821N/A# Tests marked @ignore are not run by test/Makefile, but harmless to be listed.
1821N/A#
1821N/A# Tests that explicitly state "@run main/othervm ...", and are not listed here,
1821N/A# will be run in the same batch as the samevm tests.
1821N/A#
1821N/A# Shell tests are othervm by default.
1821N/A#
3589N/A# List items are testnames followed by labels, all MUST BE commented
1821N/A# as to why they are here and use a label:
4632N/A# generic-all Problems on all platforms
4632N/A# generic-ARCH Where ARCH is one of: sparc, sparcv9, x64, i586, etc.
4632N/A# OSNAME-all Where OSNAME is one of: solaris, linux, windows
4632N/A# OSNAME-ARCH Specific on to one OSNAME and ARCH, e.g. solaris-x64
4632N/A# OSNAME-REV Specific on to one OSNAME and REV, e.g. solaris-5.8
3589N/A#
1821N/A# More than one label is allowed but must be on the same line.
1821N/A#
1821N/A#############################################################################
1821N/A#
1821N/A# Running the tests:
1821N/A# cd test && make JT_HOME=jtreg_home PRODUCT_HOME=jdk_home jdk_all
1821N/A# Or instead of jdk_all, use any of the jdk_* targets.
1821N/A#
1821N/A# Samevm Notes:
1821N/A# * Although some tests may have only been seen to fail on some platforms,
1821N/A# they might be flagged as 'generic-all' because the problem they have
1821N/A# could cause hidden slowdowns on other platforms.
1821N/A# Most samevm problems will be generic-all, but windows usually dislikes
1821N/A# them the most.
1821N/A# Address already in use or connection errors indicate a generic port issue.
1821N/A# (this is not necessarily a samevm issue, but an issue for running the tests
1821N/A# on shared machines, two people or two test runs will collide).
1821N/A# * Samevm problem (windows in particular) is not closing all input/output
1821N/A# * Samevm problem when a test calls setSecurityManager()
1821N/A# * Samevm problem with setHttps*() is used? (not exactly sure here)
1821N/A# * Samevm problem when stuffing system properties with non Strings or anything
1821N/A# * Samevm problem when changing vm settings, or registering any vm actions
1821N/A# * Samevm problems with deleteOnExit(), if it must happen at end of test
1821N/A# * Samevm problems with URLClassLoader? (no details here)
1821N/A# * Samevm problems with dependence on predictable GC or finalizations
1821N/A#
1821N/A# Any of the above problems may mean the test needs to be flagged as "othervm".
1821N/A#
1821N/A#############################################################################
1821N/A#
1821N/A# Fixing the tests:
1821N/A#
1821N/A# Some tests just may need to be run with "othervm", and that can easily be
1821N/A# done my adding a @run line (or modifying any existing @run):
1821N/A# @run main/othervm NameOfMainClass
1821N/A# Make sure this @run follows any use of @library.
1821N/A# Otherwise, if the test is a samevm possibility, make sure the test is
1821N/A# cleaning up after itself, closing all streams, deleting temp files, etc.
1821N/A#
1821N/A# Keep in mind that the bug could be in many places, and even different per
1821N/A# platform, it could be a bug in any one of:
1821N/A# - the testcase
1821N/A# - the jdk (jdk classes, native code, or hotspot)
1821N/A# - the native compiler
1821N/A# - the javac compiler
1821N/A# - the OS (depends on what the testcase does)
1821N/A#
1821N/A# If you managed to really fix one of these tests, here is how you can
1821N/A# remove tests from this list:
1821N/A# 1. Make sure test passes on all platforms with samevm, or mark it othervm
1821N/A# 2. Make sure test passes on all platforms when run with it's entire group
1821N/A# 3. Make sure both VMs are tested, -server and -client, if possible
1821N/A# 4. Make sure you try the -d64 option on Solaris
1821N/A# 5. Use a tool like JPRT or something to verify these results
1821N/A# 6. Delete lines in this file, include the changes with your test changes
1821N/A#
1821N/A# You may need to repeat your testing 2 or even 3 times to verify good
1821N/A# results, some of these samevm failures are not very predictable.
1821N/A#
1821N/A#############################################################################
1821N/A
1821N/A############################################################################
1821N/A
1821N/A# jdk_awt
1821N/A
1821N/A############################################################################
1821N/A
1821N/A# jdk_beans
1821N/A
1821N/A############################################################################
1821N/A
1821N/A# jdk_lang
1821N/A
4595N/A# 7123972
4595N/Ajava/lang/annotation/loaderLeak/Main.java generic-all
4595N/A
1821N/A# Times out on solaris 10 sparc
4632N/Ajava/lang/ClassLoader/Assert.java generic-all
1821N/A
1821N/A# Solaris sparc, samevm, java.lang.Exception: Read from closed pipe hangs
4632N/Ajava/lang/Runtime/exec/SleepyCat.java generic-all
1821N/A
1821N/A# Times out on solaris sparc -server
4632N/Ajava/lang/ThreadLocal/MemoryLeak.java solaris-all
1821N/A
4847N/A# 7148492
4847N/Ajava/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java generic-all
4847N/A
1821N/A############################################################################
1821N/A
1821N/A# jdk_management
1821N/A
2402N/A# Access denied messages on windows/mks, filed 6954450
4632N/Asun/management/jmxremote/bootstrap/RmiSslNoKeyStoreTest.sh windows-all
2402N/A
5526N/A# Port conflict? Fails with communication error
5526N/Asun/management/jmxremote/bootstrap/PasswordFilePermissionTest.sh generic-all
5526N/A
5526N/A# Fails with port already in use
5526N/Asun/management/jmxremote/bootstrap/SSLConfigFilePermissionTest.sh generic-all
5526N/A
5526N/A# Fails with port already in use
5526N/Asun/management/jmxremote/bootstrap/RmiRegistrySslTest.sh generic-all
5526N/A
5526N/A# Windows run seems to have triggered a hotspot gc error (see 6801625)
5526N/Acom/sun/management/HotSpotDiagnosticMXBean/DumpHeap.sh generic-all
5526N/A
5526N/A# Port already in use
5526N/Asun/management/jmxremote/bootstrap/LocalManagementTest.sh generic-all
5526N/A
5526N/A# Failed to initialize connector (also overflowing jtreg io buffers)
5526N/Asun/management/jmxremote/bootstrap/RmiBootstrapTest.sh generic-all
5526N/Asun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh generic-all
5526N/A
5526N/A# Windows X64, java.lang.IllegalStateException
5526N/Ajavax/management/monitor/AttributeArbitraryDataTypeTest.java generic-all
5526N/A
5526N/A# 7149181
5526N/Asun/management/jmxremote/startstop/JMXStartStopTest.sh generic-all
5526N/A
5526N/A############################################################################
5526N/A
5526N/A# jdk_jmx
5526N/A
5526N/A# Failing, bug was filed: 6959636
5526N/Ajavax/management/loading/LibraryLoader/LibraryLoaderTest.java generic-all
5526N/A
2203N/A# Fails on linux: KO: StringMonitor notification missed or not emitted
4632N/Ajavax/management/monitor/NonComparableAttributeValueTest.java generic-all
2203N/A
2017N/A# Fails on Windows 2000, Test failed for iiop java.lang.NullPointerException
2017N/A# at org.omg.stub.javax.management.remote.rmi._RMIConnectionImpl_Tie._invoke(Unknown Source)
2017N/A# at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(CorbaServerRequestDispatcherImpl.java:653)
2017N/Ajavax/management/remote/mandatory/connection/ReconnectTest.java generic-all
2017N/A
1821N/A# Solaris 10 sparc, NPE from org.omg.stub.javax.management.remote.rmi._RMIConnectionImpl_Tie._invoke
4632N/Ajavax/management/remote/mandatory/threads/ExecutorTest.java generic-all
1821N/A
1821N/A# Linux 32bit Fedora 9, IllegalStateException
4632N/Ajavax/management/monitor/RuntimeExceptionTest.java generic-all
1821N/A
3589N/A# Problems with rmi connection, othervm
1821N/Ajavax/management/remote/mandatory/subjectDelegation/SubjectDelegation2Test.java generic-all
1821N/A
1821N/A# Windows, connection can't last that long
4632N/Ajavax/management/eventService/LeaseTest.java generic-all
1821N/A
1821N/A# Linux othervm, X64, java.lang.Exception: Failed: ratio=102.4027795593753
4632N/Ajavax/management/remote/mandatory/notif/ListenerScaleTest.java generic-all
1821N/A
1821N/A# rmi problem? othervm, java.lang.reflect.UndeclaredThrowableException
1821N/Ajavax/management/remote/mandatory/subjectDelegation/SubjectDelegation3Test.java generic-all
1821N/A
1821N/A# Linux Fedora 9 32bit NPE in rmi server somehere??? othervm
1821N/Ajavax/management/remote/mandatory/notif/NotificationBufferDeadlockTest.java generic-all
1821N/A
1821N/A# Times out on solaris sparc, with othervm
4632N/Ajavax/management/eventService/AddRemoveListenerTest.java generic-all
1821N/A
1821N/A# Linux i586 and x64 -server, timed out waiting for threads to expire? othervm
4632N/Ajavax/management/eventService/EventClientThreadTest.java generic-all
1821N/A
1821N/A# Linux i586 -server, Expected to receive 20, but got 21, othervm
1821N/A# Fails on Linux X64 -server 20!=21
4632N/Ajavax/management/eventService/FetchingTest.java generic-all
1821N/A
1821N/A# NPE on windows 2000 i586 -client and -server
4632N/Ajavax/management/eventService/CustomForwarderTest.java windows-all
1821N/A
1821N/A# Windows i586 failure, callback did not complete
4632N/Ajavax/management/eventService/LeaseManagerDeadlockTest.java windows-all
1821N/A
1821N/A############################################################################
1821N/A
1821N/A# jdk_math
1821N/A
1821N/A############################################################################
1821N/A
5526N/A# jdk_other
1821N/A
4595N/A# 6988950
4595N/Ademo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java generic-all
4595N/A
5593N/A# 7056489
4632N/Acom/sun/jndi/ldap/ReadTimeoutTest.java generic-all
1821N/A
1821N/A############################################################################
1821N/A
1821N/A# jdk_net
1821N/A
4812N/A# 7122846
4812N/Ajava/net/MulticastSocket/NoLoopbackPackets.java macosx-all
4812N/Ajava/net/MulticastSocket/SetLoopbackMode.java macosx-all
4812N/A
4812N/A# 7145658
4812N/Ajava/net/MulticastSocket/Test.java macosx-all
4812N/A
4812N/A#7143960
4812N/Ajava/net/DatagramSocket/SendDatagramToBadAddress.java macosx-all
4812N/A
4847N/A# 7148829
4847N/Asun/net/InetAddress/nameservice/simple/CacheTest.java generic-all
4847N/Asun/net/InetAddress/nameservice/simple/DefaultCaching.java generic-all
4847N/A
4991N/A# 7161936
4991N/Asun/net/www/http/HttpClient/RetryPost.sh macosx-all
4991N/Asun/net/www/protocol/http/B5017051.java macosx-all
4991N/Asun/net/www/protocol/http/B6369510.java macosx-all
4991N/Asun/net/www/protocol/http/StreamingOutputStream.java macosx-all
4991N/Asun/net/www/protocol/http/UserAuth.java macosx-all
4991N/Asun/net/www/protocol/http/UserCookie.java macosx-all
4991N/A
4991N/A# 7162118
4991N/Ajava/net/CookieHandler/CookieManagerTest.java macosx-all
4991N/A
4991N/A# JPRT needs to set 127.0.0.1 in proxy bypass list
4991N/Ajava/net/URLClassLoader/closetest/CloseTest.java macosx-all
4991N/A
1821N/A############################################################################
1821N/A
2546N/A# jdk_io
2546N/A
2546N/A# 6962637
2546N/Ajava/io/File/MaxPathLength.java windows-all
2546N/A
5970N/A# 7162111 - these tests need to be updated to run headless
5970N/Ajava/io/Serializable/resolveClass/deserializeButton/run.sh macosx-all
5970N/Ajava/io/Serializable/serialver/classpath/run.sh macosx-all
5970N/Ajava/io/Serializable/serialver/nested/run.sh macosx-all
5970N/A
2546N/A############################################################################
2546N/A
1821N/A# jdk_nio
1821N/A
2546N/A# 6963118
2546N/Ajava/nio/channels/Selector/Wakeup.java windows-all
1821N/A
4727N/A# 7133499, 7133497
4727N/Ajava/nio/channels/AsyncCloseAndInterrupt.java macosx-all
4727N/Ajava/nio/channels/AsynchronousFileChannel/Lock.java macosx-all
4727N/Ajava/nio/channels/FileChannel/Transfer.java macosx-all
4727N/A
4765N/A# 7141822
4765N/Ajava/nio/channels/DatagramChannel/ChangingAddress.java macosx-all
4765N/A
4765N/A# 7132677
4765N/Ajava/nio/channels/Selector/OutOfBand.java macosx-all
4765N/A
1821N/A############################################################################
1821N/A
1821N/A# jdk_rmi
1821N/A
4847N/A# 7146541
4847N/Ajava/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
4847N/A
5958N/A# 7190106
5958N/Ajava/rmi/reliability/benchmark/runRmiBench.sh generic-all
1821N/A
5958N/A# 7191877
5958N/Ajava/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all
1821N/A
5958N/A# 7195095
5958N/Asun/rmi/transport/proxy/EagerHttpFallback.java generic-all
4991N/A
1821N/A############################################################################
1821N/A
1821N/A# jdk_security
1821N/A
2228N/A# Failing on Solaris i586, 3/9/2010, not a -samevm issue (jdk_security3)
4632N/Asun/security/pkcs11/Secmod/AddPrivateKey.java solaris-i586
4632N/Asun/security/pkcs11/ec/ReadCertificates.java solaris-i586
4632N/Asun/security/pkcs11/ec/ReadPKCS12.java solaris-i586
4632N/Asun/security/pkcs11/ec/TestCurves.java solaris-i586
4632N/Asun/security/pkcs11/ec/TestECDSA.java solaris-i586
5911N/A#sun/security/pkcs11/ec/TestECGenSpec.java solaris-i586
5911N/A#sun/security/pkcs11/ec/TestKeyFactory.java solaris-i586
5911N/Asun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java generic-all
2017N/A
5911N/A# Directly references PKCS11 class
5911N/Asun/security/pkcs11/Provider/Absolute.java windows-x64
2017N/A
5911N/A# Fails on Fedora 9/Ubuntu 10.04 64bit, PKCS11Exception: CKR_DEVICE_ERROR
4632N/Asun/security/pkcs11/KeyAgreement/TestDH.java generic-all
2017N/A
1821N/A# Run too slow on Solaris 10 sparc
1821N/Asun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/SSLSocketTimeoutNulls.java solaris-sparc
1821N/Asun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ClientTimeout.java solaris-sparc
1821N/Asun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ServerTimeout.java solaris-sparc
1821N/Asun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/ReadTimeout.java solaris-sparc
1821N/Asun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/NotifyHandshakeTest.sh solaris-sparc
1821N/A
1821N/A# Solaris 10 sparc, passed/failed confusion? java.security.ProviderException: update() failed
1821N/Asun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/AsyncSSLSocketClose.java generic-all
1821N/A
1821N/A# Timed out, Solaris 10 64bit sparcv9
4632N/Acom/sun/crypto/provider/Cipher/DES/PaddingTest.java generic-all
1821N/A
1821N/A# Othervm, sparc, NoRouteToHostException: Cannot assign requested address
1821N/Asun/security/ssl/javax/net/ssl/NewAPIs/SessionCacheSizeTests.java generic-all
1821N/A
1821N/A# Times out on windows X64, othervm mode
1821N/A# Solaris sparc and sparcv9 -server, timeout
4632N/Asun/security/ssl/javax/net/ssl/NewAPIs/SessionTimeOutTests.java generic-all
1821N/A
1821N/A# Various failures on Linux Fedora 9 X64, othervm mode
1821N/Asun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/TestAllSuites.java generic-all
4632N/Asun/security/ssl/sanity/ciphersuites/CheckCipherSuites.java generic-all
1821N/A
1821N/A# Various failures on Linux Fedora 9 X64, othervm mode
4632N/Asun/security/ssl/sanity/interop/ClientJSSEServerJSSE.java generic-all
1821N/A
1821N/A# Solaris 11 i586, these all fail with samevm, need to be othervm???
4632N/Ajava/security/SecureClassLoader/DefineClassByteBuffer.java generic-all
1821N/A
1821N/A# Timeout on solaris-sparc and i586 and x64, -client and -server
1821N/Asun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/InterruptedIO.java solaris-all
1821N/A
5593N/A# 7147060
5593N/Acom/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
5593N/A
5841N/A# 8000439: NPG: REGRESSION : sun/security/krb5/auto/MaxRetries.java fails with timeout
5841N/Asun/security/krb5/auto/MaxRetries.java solaris-sparcv9
5841N/A
5841N/A# 8006690: sun/security/krb5/auto/BadKdc1.java fails intermittently
5841N/Asun/security/krb5/auto/BadKdc1.java solaris-sparcv9
5841N/Asun/security/krb5/auto/BadKdc2.java solaris-sparcv9
5841N/Asun/security/krb5/auto/BadKdc3.java solaris-sparcv9
5841N/Asun/security/krb5/auto/BadKdc4.java solaris-sparcv9
5841N/A
1821N/A############################################################################
1821N/A
5593N/A# jdk_swing
1821N/A
1821N/A############################################################################
1821N/A
1821N/A# jdk_text
1821N/A
1821N/A# Linux x64 occasional errors, no details
4632N/Ajava/text/Bidi/Bug6665028.java linux-x64
1821N/A
1821N/A############################################################################
1821N/A
1821N/A# jdk_tools
1821N/A
5593N/A# 6461635
5593N/Acom/sun/tools/attach/BasicTests.sh generic-all
5593N/A
2812N/A# Filed 6986875
4632N/Asun/tools/jps/jps-Vvml.sh generic-all
2812N/A
2812N/A# Filed 6979016
4632N/Asun/tools/jconsole/ResourceCheckTest.sh generic-all
2812N/A
4765N/A# 7132203
4765N/Asun/jvmstat/monitor/MonitoredVm/CR6672135.java generic-all
4765N/A
5593N/A# 8001118
5593N/Asun/tools/jcmd/jcmd-f.sh generic-all
5593N/Asun/tools/jcmd/jcmd-help-help.sh generic-all
5593N/A
5593N/A# 7175775
5593N/Asun/tools/jinfo/Basic.sh macosx-all
5593N/A
1821N/A############################################################################
1821N/A
5526N/A# jdk_jdi
5526N/A
5526N/A# Filed 6952105
5526N/Acom/sun/jdi/SuspendThreadTest.java generic-all
5526N/A
5526N/A# Filed 6987312
5526N/Acom/sun/jdi/DoubleAgentTest.java generic-all
5526N/A
5526N/A############################################################################
5526N/A
1821N/A# jdk_util
1821N/A
4727N/A# Need 7094995 back-ported from jdk8
4727N/Ajava/util/zip/ZipFile/ClearStaleZipFileInputStreams.java macosx-all
4727N/A
3866N/A# Filed 7027061
4632N/Ajava/util/Locale/Bug6989440.java windows-all
3866N/A
2812N/A# Filed 6933803
4632N/Ajava/util/concurrent/ThreadPoolExecutor/CoreThreadTimeOut.java generic-all
2812N/A
3653N/A# Filed 7022325
2203N/A# Fails with assertion error on windows
2203N/A# 11 separate stacktraces created... file reuse problem?
4632N/Ajava/util/zip/ZipFile/ReadLongZipFileName.java generic-all
2203N/A
1821N/A# Assert error, failures, on Linux Fedora 9 -server
1821N/A# Windows samevm failure, assert error "Passed = 134, failed = 2"
4632N/Ajava/util/Arrays/ArrayObjectMethods.java generic-all
1821N/A
1821N/A# Windows 2000, -client, samevm, java.lang.Error: Completed != 2
1821N/Ajava/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
1821N/A
1821N/A# Windows X64, Executor Stuck samevm mode:
4632N/Ajava/util/concurrent/FutureTask/BlockingTaskExecutor.java generic-all
1821N/A
1821N/A# Problems on windows, jmap.exe hangs? (these run jmap), fails on Solaris 10 x86
4632N/Ajava/util/concurrent/locks/Lock/TimedAcquireLeak.java generic-all
1821N/A
5593N/A# 7041639, Solaris DSA keypair generation bug
5593N/Ajava/util/TimeZone/TimeZoneDatePermissionCheck.sh solaris-all
4991N/A
1821N/A############################################################################
1821N/A
4991N/A