Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/ProblemList.txt
38828 views
###########################################################################1#2# Copyright (c) 2009, 2017, Oracle and/or its affiliates. All rights reserved.3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.4#5# This code is free software; you can redistribute it and/or modify it6# under the terms of the GNU General Public License version 2 only, as7# published by the Free Software Foundation.8#9# This code is distributed in the hope that it will be useful, but WITHOUT10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or11# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License12# version 2 for more details (a copy is included in the LICENSE file that13# accompanied this code).14#15# You should have received a copy of the GNU General Public License version16# 2 along with this work; if not, write to the Free Software Foundation,17# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.18#19# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA20# or visit www.oracle.com if you need additional information or have any21# questions.22#23###########################################################################24#25# List of tests that should not be run by test/Makefile, for various reasons:26# 1. Does not run with jtreg -samevm mode27# 2. Causes problems in jtreg -samevm mode for jtreg or tests that follow it28# 3. The test is too slow or consumes too many system resources29# 4. The test fails when run on any official build systems30#31# It is possible that a test being on this list is a mistake, and that some32# other test in samevm mode caused tests to fail, mistakes happen.33#34# Tests marked @ignore are not run by test/Makefile, but harmless to be listed.35#36# Tests that explicitly state "@run main/othervm ...", and are not listed here,37# will be run in the same batch as the samevm tests.38#39# Shell tests are othervm by default.40#41# List items are testnames followed by labels, all MUST BE commented42# as to why they are here and use a label:43# generic-all Problems on all platforms44# generic-ARCH Where ARCH is one of: sparc, sparcv9, x64, i586, ppc64,45# ppc64le, s390x etc.46# OSNAME-all Where OSNAME is one of: solaris, linux, windows, macosx, aix47# OSNAME-ARCH Specific on to one OSNAME and ARCH, e.g. solaris-x6448# OSNAME-REV Specific on to one OSNAME and REV, e.g. solaris-5.849#50# More than one label is allowed but must be on the same line comma seperated,51# without spaces.52# If there are several lines mentioning the same test, the last one is used.53#54#############################################################################55#56# Running the tests:57# cd test && make JT_HOME=jtreg_home PRODUCT_HOME=jdk_home jdk_all58# 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 have63# could cause hidden slowdowns on other platforms.64# Most samevm problems will be generic-all, but windows usually dislikes65# 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 tests68# on shared machines, two people or two test runs will collide).69# * Samevm problem (windows in particular) is not closing all input/output70# * 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 anything73# * Samevm problem when changing vm settings, or registering any vm actions74# * Samevm problems with deleteOnExit(), if it must happen at end of test75# * Samevm problems with URLClassLoader? (no details here)76# * Samevm problems with dependence on predictable GC or finalizations77#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 be85# done by adding a @run line (or modifying any existing @run):86# @run main/othervm NameOfMainClass87# Make sure this @run follows any use of @library.88# Otherwise, if the test is a samevm possibility, make sure the test is89# 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 per92# platform, it could be a bug in any one of:93# - the testcase94# - the jdk (jdk classes, native code, or hotspot)95# - the native compiler96# - the javac compiler97# - the OS (depends on what the testcase does)98#99# If you managed to really fix one of these tests, here is how you can100# remove tests from this list:101# 1. Make sure test passes on all platforms with samevm, or mark it othervm102# 2. Make sure test passes on all platforms when run with it's entire group103# 3. Make sure both VMs are tested, -server and -client, if possible104# 4. Make sure you try the -d64 option on Solaris105# 5. Use a tool like JPRT or something to verify these results106# 6. Delete lines in this file, include the changes with your test changes107#108# You may need to repeat your testing 2 or even 3 times to verify good109# results, some of these samevm failures are not very predictable.110#111#############################################################################112113############################################################################114115# jdk_awt116117# 8221305118java/awt/FontMetrics/MaxAdvanceIsMax.java solaris-all,macosx-all119120############################################################################121122# jdk_beans123124# 8060027125java/beans/XMLEncoder/Test4903007.java generic-all126java/beans/XMLEncoder/java_awt_GridBagLayout.java generic-all127java/beans/XMLDecoder/8028054/TestConstructorFinder.java generic-all128java/beans/XMLDecoder/8028054/TestMethodFinder.java generic-all129130############################################################################131132# jdk_lang133134############################################################################135136# jdk_management137138# 8028150139sun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh windows-all140141############################################################################142143# jdk_jmx144145# 8030957146com/sun/management/OperatingSystemMXBean/GetProcessCpuLoad.java aix-all147com/sun/management/OperatingSystemMXBean/GetSystemCpuLoad.java aix-all148javax/management/MBeanServer/OldMBeanServerTest.java aix-all149150############################################################################151152# jdk_math153154############################################################################155156# jdk_other157158# 6988950159demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java generic-all160161# 7027502162demo/jvmti/hprof/MonitorTest.java generic-all163164############################################################################165166# jdk_net167168# 7122846169java/net/MulticastSocket/NoLoopbackPackets.java macosx-all170171# 7122846, 8098566172java/net/MulticastSocket/SetLoopbackMode.java macosx-all,solaris-all173174# 8171217, 7145658, 8207404175java/net/MulticastSocket/Test.java macosx-all,solaris-all,aix-all176177# 8207404178java/net/MulticastSocket/SetGetNetworkInterfaceTest.java aix-all179180# 7143960181java/net/DatagramSocket/SendDatagramToBadAddress.java macosx-all182183# 8172046184java/net/MulticastSocket/TestInterfaces.java windows-x64,solaris-x64185186# 8160738187sun/net/www/protocol/https/HttpsURLConnection/ImpactOnSNI.java macosx-x64188189# 8010379190sun/net/www/http/KeepAliveCache/B5045306.java macosx-x64191192# 8158598193sun/net/www/protocol/http/B6296310.java macosx-x64194195# 8171208196java/net/CookieHandler/CookieManagerTest.java macosx-x64197java/net/HttpURLConnection/UnmodifiableMaps.java macosx-x64198sun/net/www/protocol/http/B6299712.java macosx-x64199200# 8166362201sun/net/www/http/HttpClient/B8025710.java generic-all202203############################################################################204205# jdk_io206207# 8169774208java/io/File/WinSpecialFiles.java windows-all209210############################################################################211212# jdk_nio213214# 6963118215java/nio/channels/Selector/Wakeup.java windows-all216217# 7141822218java/nio/channels/DatagramChannel/ChangingAddress.java macosx-all219220# 7132677221java/nio/channels/Selector/OutOfBand.java macosx-all222223# 7158947224java/nio/file/WatchService/Basic.java solaris-all225java/nio/file/WatchService/LotsOfEvents.java solaris-all226227# 8030179228java/nio/Buffer/Chars.java windows-x64229230# 8172045231java/nio/channels/AsyncCloseAndInterrupt.java linux-all232233# 8076056234java/nio/channels/DatagramChannel/BasicMulticastTests.java linux-i586235java/nio/channels/DatagramChannel/MulticastSendReceiveTests.java linux-i586236237# 8148996238java/nio/file/WatchService/WithSecurityManager.java linux-all239240# 8173179241java/nio/file/Files/probeContentType/Basic.java solaris-x64242243# 8171218244java/nio/file/FileStore/Basic.java linux-i586245java/nio/file/FileSystem/Basic.java linux-i586246247############################################################################248249# jdk_rmi250251# 7140992252java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java generic-all253254# 7146541255java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all256257# 7191877258java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all259260# 7195095261sun/rmi/transport/proxy/EagerHttpFallback.java generic-all262263# 8049531264java/rmi/reliability/benchmark/bench/serial/Main.java linux-i586265266# 8162906267javax/rmi/ssl/SSLSocketParametersTest.sh linux-all268269# 8137232270javax/rmi/PortableRemoteObject/ConcurrentHashMapTest.java linux-all271272# 8170248273javax/rmi/PortableRemoteObject/8146975/RmiIiopReturnValueTest.java linux-all274275# 8205049276sun/rmi/transport/tcp/DisableRMIOverHttp/DisableRMIOverHTTPTest.java windows-all277278############################################################################279280# jdk_security281282# 8026976283sun/security/pkcs11/ec/TestKeyFactory.java generic-all284# 8180837285sun/security/pkcs11/Secmod/AddTrustedCert.java generic-all286sun/security/pkcs11/tls/TestKeyMaterial.java generic-all287288# 7164518289sun/security/krb5/auto/Unreachable.java macosx-all290291# 8160071292sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java linux-all293294# 8026393295sun/security/tools/jarsigner/warnings/BadKeyUsageTest.java generic-all296297# 8158827298sun/security/krb5/auto/tools/KinitConfPlusProps.java windows-all299300# 8151225301sun/security/rsa/SpecTest.java linux-i586302303# 8043951304sun/security/pkcs11/MessageDigest/TestCloning.java solaris-all305306# 8163498307sun/security/provider/NSASuiteB/TestDSAGenParameterSpec.java linux-i586308309# 8203055310# 8129560311sun/security/pkcs11/rsa/TestKeyPairGenerator.java linux-all,solaris-all312313# 8151834314sun/security/mscapi/SmallPrimeExponentP.java windows-i586315316#8176354317sun/security/ssl/com/sun/net/ssl/internal/ssl/X509KeyManager/PreferredKey.java generic-all318319# 8206909320com/sun/crypto/provider/CICO/PBEFunc/CICOPBEFuncTest.java solaris-sparcv9321322# 8206912323sun/security/krb5/auto/ReplayCacheTestProc.java solaris-sparcv9324325security/infra/java/security/cert/CertPathValidator/certification/ActalisCA.java 8224768 generic-all326327sun/security/mscapi/SignedObjectChain.java 8176183 windows-all328329############################################################################330331# jdk_sound332javax/sound/sampled/DirectAudio/bug6372428.java 8055097 generic-all333javax/sound/sampled/Clip/bug5070081.java 8055097 generic-all334javax/sound/sampled/DataLine/LongFramePosition.java 8055097 generic-all335336javax/sound/sampled/Clip/Drain/ClipDrain.java 7062792 generic-all337338javax/sound/sampled/Mixers/DisabledAssertionCrash.java 7067310 generic-all339340# 8059743341javax/sound/midi/Gervill/SoftProvider/GetDevice.java generic-all342343############################################################################344345# jdk_swing346347############################################################################348349# jdk_text350351############################################################################352353# jdk_time354355############################################################################356357# jdk_tools358359# 8172782, 8007410360tools/launcher/FXLauncherTest.java windows-all,linux-all361362############################################################################363364# jdk_jdi365366############################################################################367368# jdk_util369370# 8004807371java/util/Timer/Args.java generic-all372373############################################################################374375# svc_tools376377# 8031482378sun/tools/jcmd/TestJcmdSanity.java windows-all379380# 6456333381sun/tools/jps/TestJpsJarRelative.java generic-all382383############################################################################384385# jdk_other386387############################################################################388389sample/mergesort/MergeSortTest.java 8178912 generic-all390sample/chatserver/ChatTest.java 8178912 generic-all391392393