author | mdoerr |
Fri, 02 Aug 2019 11:28:58 +0200 | |
changeset 57626 | 91bc70505019 |
parent 57623 | bfcd6fb23509 |
child 57661 | 5cc8f9225a6d |
permissions | -rw-r--r-- |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
1 |
# |
53173
a0eb3da69586
8215583: Exclude runtime/handshake/HandshakeWalkSuspendExitTest.java
mseledtsov
parents:
52768
diff
changeset
|
2 |
# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
4 |
# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
8 |
# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
9 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
10 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
12 |
# version 2 for more details (a copy is included in the LICENSE file that |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
13 |
# accompanied this code). |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
14 |
# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
15 |
# You should have received a copy of the GNU General Public License version |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
16 |
# 2 along with this work; if not, write to the Free Software Foundation, |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
17 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
18 |
# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
21 |
# questions. |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
22 |
# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
23 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
24 |
############################################################################# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
25 |
# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
26 |
# List of quarantined tests -- tests that should not be run by default, because |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
27 |
# they may fail due to known reason. The reason (CR#) must be mandatory specified. |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
28 |
# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
29 |
# List items are testnames followed by labels, all MUST BE commented |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
30 |
# as to why they are here and use a label: |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
31 |
# generic-all Problems on all platforms |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
32 |
# generic-ARCH Where ARCH is one of: sparc, sparcv9, x64, i586, etc. |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
33 |
# OSNAME-all Where OSNAME is one of: solaris, linux, windows, macosx, aix |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
34 |
# OSNAME-ARCH Specific on to one OSNAME and ARCH, e.g. solaris-amd64 |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
35 |
# OSNAME-REV Specific on to one OSNAME and REV, e.g. solaris-5.8 |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
36 |
# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
37 |
# More than one label is allowed but must be on the same line. |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
38 |
# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
39 |
############################################################################# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
40 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
41 |
# :hotspot_compiler |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
42 |
|
46758
c29bafdec51d
8185876: quarantine compiler/ciReplay/TestSAServer.java
dcubed
parents:
46757
diff
changeset
|
43 |
compiler/ciReplay/TestSAServer.java 8029528 generic-all |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
44 |
compiler/codecache/stress/OverloadCompileQueueTest.java 8166554 generic-all |
48462
0bce2ae39928
8193608: Quarantine test/hotspot/jtreg/compiler/codegen/Test6896617.java until JDK-8193479 is fixed
thartmann
parents:
48403
diff
changeset
|
45 |
compiler/codegen/Test6896617.java 8193479 generic-all |
55327
27e810f1f8a3
8225568: ProblemList compiler/compilercontrol/jcmd/ClearDirectivesFileStackTest.java
dholmes
parents:
55225
diff
changeset
|
46 |
compiler/compilercontrol/jcmd/ClearDirectivesFileStackTest.java 8225370 generic-all |
51294
38cbdf8f383f
8208305: ProblemList compiler/jvmci/compilerToVM/GetFlagValueTest.java
dcubed
parents:
51241
diff
changeset
|
47 |
compiler/jvmci/compilerToVM/GetFlagValueTest.java 8204459 generic-all |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
48 |
compiler/jvmci/compilerToVM/GetResolvedJavaTypeTest.java 8158860 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
49 |
compiler/jvmci/compilerToVM/InvalidateInstalledCodeTest.java 8163894 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
50 |
compiler/tiered/LevelTransitionTest.java 8067651 generic-all |
55334
ff74a3c584e5
8066173: compiler/types/correctness/OffTest.java failed with assert
iignatyev
parents:
55328
diff
changeset
|
51 |
|
55432
afc6c25c2f4a
8226313: problem list compiler/types/correctness tests
iignatyev
parents:
55406
diff
changeset
|
52 |
compiler/types/correctness/CorrectnessTest.java 8225670,8225620 generic-all,solaris-sparcv9 |
afc6c25c2f4a
8226313: problem list compiler/types/correctness tests
iignatyev
parents:
55406
diff
changeset
|
53 |
compiler/types/correctness/OffTest.java 8225670,8225620 generic-all,solaris-sparcv9 |
50686 | 54 |
|
55 |
compiler/c2/Test6852078.java 8194310 generic-all |
|
55056
146f257274c9
8224870: Problemlist compiler/c2/Test8004741.java until JDK-8214904 is fixed
thartmann
parents:
55014
diff
changeset
|
56 |
compiler/c2/Test8004741.java 8214904 generic-all |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
57 |
|
51301
ea972a176435
8208347: ProblemList compiler/cpuflags/TestAESIntrinsicsOnSupportedConfig.java
epavlova
parents:
51300
diff
changeset
|
58 |
compiler/cpuflags/TestAESIntrinsicsOnSupportedConfig.java 8190680 generic-all |
ea972a176435
8208347: ProblemList compiler/cpuflags/TestAESIntrinsicsOnSupportedConfig.java
epavlova
parents:
51300
diff
changeset
|
59 |
|
52056
d24b89390f6c
8211856: [ppc, s390] ProblemList some failing tests.
goetz
parents:
52024
diff
changeset
|
60 |
compiler/runtime/Test8168712.java 8211769,8211771 generic-ppc64,generic-ppc64le,linux-s390x |
d24b89390f6c
8211856: [ppc, s390] ProblemList some failing tests.
goetz
parents:
52024
diff
changeset
|
61 |
|
57622 | 62 |
compiler/rtm/locking/TestRTMAbortRatio.java 8183263 generic-x64 |
63 |
compiler/rtm/locking/TestRTMAbortThreshold.java 8183263 generic-x64 |
|
64 |
compiler/rtm/locking/TestRTMAfterNonRTMDeopt.java 8183263 generic-x64 |
|
65 |
compiler/rtm/locking/TestRTMDeoptOnHighAbortRatio.java 8183263 generic-x64 |
|
66 |
compiler/rtm/locking/TestRTMDeoptOnLowAbortRatio.java 8183263 generic-x64 |
|
67 |
compiler/rtm/locking/TestRTMLockingCalculationDelay.java 8183263 generic-x64 |
|
68 |
compiler/rtm/locking/TestRTMLockingThreshold.java 8183263 generic-x64 |
|
69 |
compiler/rtm/locking/TestUseRTMDeopt.java 8183263 generic-x64 |
|
70 |
compiler/rtm/print/TestPrintPreciseRTMLockingStatistics.java 8183263 generic-x64 |
|
71 |
||
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
72 |
############################################################################# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
73 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
74 |
# :hotspot_gc |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
75 |
|
51552
2c7a508ee1f4
8210088: ProblemList gc/epsilon/TestMemoryMXBeans.java
coleenp
parents:
51531
diff
changeset
|
76 |
gc/epsilon/TestMemoryMXBeans.java 8206434 generic-all |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
77 |
gc/g1/humongousObjects/objectGraphTest/TestObjectGraphAfterGC.java 8156755 generic-all |
43468
edd7949f64cf
8172972: Add gc/g1/logging/TestG1LoggingFailure.java to the ProblemList
dholmes
parents:
43440
diff
changeset
|
78 |
gc/g1/logging/TestG1LoggingFailure.java 8169634 generic-all |
46409
b8e6a56681f5
8179266: Add test/gc/g1/humongousObjects/TestHeapCounters.java to ProblemList.txt
ehelin
parents:
46355
diff
changeset
|
79 |
gc/g1/humongousObjects/TestHeapCounters.java 8178918 generic-all |
48627
bf12b502df94
8194824: Add gc/stress/gclocker/TestGCLockerWithParallel.java to the ProblemList file
tschatzl
parents:
48490
diff
changeset
|
80 |
gc/stress/gclocker/TestGCLockerWithParallel.java 8180622 generic-all |
49062
ff158f06c423
8198568: clean up test/hotspot/jtreg/ProblemList.txt
iignatyev
parents:
48841
diff
changeset
|
81 |
gc/stress/gclocker/TestGCLockerWithG1.java 8180622 generic-all |
48631
862c41cf1c7f
8137099: G1 needs to "upgrade" GC within the safepoint if it can't allocate during that safepoint to avoid OoME
tschatzl
parents:
48627
diff
changeset
|
82 |
gc/stress/TestJNIBlockFullGC/TestJNIBlockFullGC.java 8192647 generic-all |
51433
f4e9ab292c90
8209342: Problemlist SA tests on Solaris due to Error attaching to process: Can't create thread_db agent!
sballal
parents:
51418
diff
changeset
|
83 |
gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java 8193639 solaris-all |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
84 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
85 |
############################################################################# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
86 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
87 |
# :hotspot_runtime |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
88 |
|
54433
b34bcfbcc2fd
8219918: ProblemList hotspot tests failing in SAP testing.
goetz
parents:
54387
diff
changeset
|
89 |
runtime/jni/terminatedThread/TestTerminatedThread.java 8219652 aix-ppc64 |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
90 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
91 |
############################################################################# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
92 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
93 |
# :hotspot_serviceability |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
94 |
|
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
95 |
serviceability/sa/ClhsdbAttach.java 8193639 solaris-all |
51433
f4e9ab292c90
8209342: Problemlist SA tests on Solaris due to Error attaching to process: Can't create thread_db agent!
sballal
parents:
51418
diff
changeset
|
96 |
serviceability/sa/ClhsdbCDSCore.java 8193639 solaris-all |
57626
91bc70505019
8228649: [PPC64] SA reads wrong slots from interpreter frames
mdoerr
parents:
57623
diff
changeset
|
97 |
serviceability/sa/ClhsdbCDSJstackPrintAll.java 8193639 solaris-all |
51531
948c62200f8c
8204308: SA: serviceability/sa/TestInstanceKlassSize*.java fails when running in CDS mode
jgeorge
parents:
51512
diff
changeset
|
98 |
serviceability/sa/CDSJMapClstats.java 8193639 solaris-all |
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
99 |
serviceability/sa/ClhsdbField.java 8193639 solaris-all |
57626
91bc70505019
8228649: [PPC64] SA reads wrong slots from interpreter frames
mdoerr
parents:
57623
diff
changeset
|
100 |
serviceability/sa/ClhsdbFindPC.java 8193639 solaris-all |
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
101 |
serviceability/sa/ClhsdbFlags.java 8193639 solaris-all |
57626
91bc70505019
8228649: [PPC64] SA reads wrong slots from interpreter frames
mdoerr
parents:
57623
diff
changeset
|
102 |
serviceability/sa/ClhsdbInspect.java 8193639 solaris-all |
91bc70505019
8228649: [PPC64] SA reads wrong slots from interpreter frames
mdoerr
parents:
57623
diff
changeset
|
103 |
serviceability/sa/ClhsdbJdis.java 8193639 solaris-all |
52056
d24b89390f6c
8211856: [ppc, s390] ProblemList some failing tests.
goetz
parents:
52024
diff
changeset
|
104 |
serviceability/sa/ClhsdbJhisto.java 8193639,8211767 solaris-all,linux-ppc64le,linux-ppc64 |
57626
91bc70505019
8228649: [PPC64] SA reads wrong slots from interpreter frames
mdoerr
parents:
57623
diff
changeset
|
105 |
serviceability/sa/ClhsdbJstack.java 8193639 solaris-all |
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
106 |
serviceability/sa/ClhsdbLongConstant.java 8193639 solaris-all |
52056
d24b89390f6c
8211856: [ppc, s390] ProblemList some failing tests.
goetz
parents:
52024
diff
changeset
|
107 |
serviceability/sa/ClhsdbPmap.java 8193639,8211767 solaris-all,linux-ppc64le,linux-ppc64 |
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
108 |
serviceability/sa/ClhsdbPrintAll.java 8193639 solaris-all |
57626
91bc70505019
8228649: [PPC64] SA reads wrong slots from interpreter frames
mdoerr
parents:
57623
diff
changeset
|
109 |
serviceability/sa/ClhsdbPrintAs.java 8193639 solaris-all |
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
110 |
serviceability/sa/ClhsdbPrintStatics.java 8193639 solaris-all |
52056
d24b89390f6c
8211856: [ppc, s390] ProblemList some failing tests.
goetz
parents:
52024
diff
changeset
|
111 |
serviceability/sa/ClhsdbPstack.java 8193639,8211767 solaris-all,linux-ppc64le,linux-ppc64 |
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
112 |
serviceability/sa/ClhsdbRegionDetailsScanOopsForG1.java 8193639 solaris-all |
52056
d24b89390f6c
8211856: [ppc, s390] ProblemList some failing tests.
goetz
parents:
52024
diff
changeset
|
113 |
serviceability/sa/ClhsdbScanOops.java 8193639,8211767 solaris-all,linux-ppc64le,linux-ppc64 |
57626
91bc70505019
8228649: [PPC64] SA reads wrong slots from interpreter frames
mdoerr
parents:
57623
diff
changeset
|
114 |
serviceability/sa/ClhsdbSource.java 8193639 solaris-all |
52056
d24b89390f6c
8211856: [ppc, s390] ProblemList some failing tests.
goetz
parents:
52024
diff
changeset
|
115 |
serviceability/sa/ClhsdbThread.java 8193639,8211767 solaris-all,linux-ppc64le,linux-ppc64 |
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
116 |
serviceability/sa/ClhsdbVmStructsDump.java 8193639 solaris-all |
57626
91bc70505019
8228649: [PPC64] SA reads wrong slots from interpreter frames
mdoerr
parents:
57623
diff
changeset
|
117 |
serviceability/sa/ClhsdbWhere.java 8193639 solaris-all |
52056
d24b89390f6c
8211856: [ppc, s390] ProblemList some failing tests.
goetz
parents:
52024
diff
changeset
|
118 |
serviceability/sa/DeadlockDetectionTest.java 8193639,8211767 solaris-all,linux-ppc64le,linux-ppc64 |
57626
91bc70505019
8228649: [PPC64] SA reads wrong slots from interpreter frames
mdoerr
parents:
57623
diff
changeset
|
119 |
serviceability/sa/JhsdbThreadInfoTest.java 8193639 solaris-all |
51433
f4e9ab292c90
8209342: Problemlist SA tests on Solaris due to Error attaching to process: Can't create thread_db agent!
sballal
parents:
51418
diff
changeset
|
120 |
serviceability/sa/jmap-hprof/JMapHProfLargeHeapTest.java 8193639 solaris-all |
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
121 |
serviceability/sa/TestClassDump.java 8193639 solaris-all |
57626
91bc70505019
8228649: [PPC64] SA reads wrong slots from interpreter frames
mdoerr
parents:
57623
diff
changeset
|
122 |
serviceability/sa/TestClhsdbJstackLock.java 8193639 solaris-all |
52056
d24b89390f6c
8211856: [ppc, s390] ProblemList some failing tests.
goetz
parents:
52024
diff
changeset
|
123 |
serviceability/sa/TestCpoolForInvokeDynamic.java 8193639,8211767 solaris-all,linux-ppc64le,linux-ppc64 |
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
124 |
serviceability/sa/TestDefaultMethods.java 8193639 solaris-all |
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
125 |
serviceability/sa/TestG1HeapRegion.java 8193639 solaris-all |
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
126 |
serviceability/sa/TestHeapDumpForInvokeDynamic.java 8193639 solaris-all |
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
127 |
serviceability/sa/TestHeapDumpForLargeArray.java 8193639 solaris-all |
51433
f4e9ab292c90
8209342: Problemlist SA tests on Solaris due to Error attaching to process: Can't create thread_db agent!
sballal
parents:
51418
diff
changeset
|
128 |
serviceability/sa/TestInstanceKlassSize.java 8193639 solaris-all |
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
129 |
serviceability/sa/TestInstanceKlassSizeForInterface.java 8193639 solaris-all |
52056
d24b89390f6c
8211856: [ppc, s390] ProblemList some failing tests.
goetz
parents:
52024
diff
changeset
|
130 |
serviceability/sa/TestIntConstant.java 8193639,8211767 solaris-all,linux-ppc64le,linux-ppc64 |
57626
91bc70505019
8228649: [PPC64] SA reads wrong slots from interpreter frames
mdoerr
parents:
57623
diff
changeset
|
131 |
serviceability/sa/TestJhsdbJstackLock.java 8193639 solaris-all |
51433
f4e9ab292c90
8209342: Problemlist SA tests on Solaris due to Error attaching to process: Can't create thread_db agent!
sballal
parents:
51418
diff
changeset
|
132 |
serviceability/sa/TestJmapCore.java 8193639 solaris-all |
f4e9ab292c90
8209342: Problemlist SA tests on Solaris due to Error attaching to process: Can't create thread_db agent!
sballal
parents:
51418
diff
changeset
|
133 |
serviceability/sa/TestJmapCoreMetaspace.java 8193639 solaris-all |
f4e9ab292c90
8209342: Problemlist SA tests on Solaris due to Error attaching to process: Can't create thread_db agent!
sballal
parents:
51418
diff
changeset
|
134 |
serviceability/sa/TestPrintMdo.java 8193639 solaris-all |
51241
ec6d5843068a
8208205: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!'
dcubed
parents:
51234
diff
changeset
|
135 |
serviceability/sa/TestRevPtrsForInvokeDynamic.java 8191270 generic-all |
51354
3cc181307917
8209029: ProblemList tests that fail due to 'Error attaching to process: Can't create thread_db agent!' in jdk-11+25 testing
dcubed
parents:
51301
diff
changeset
|
136 |
serviceability/sa/TestType.java 8193639 solaris-all |
52056
d24b89390f6c
8211856: [ppc, s390] ProblemList some failing tests.
goetz
parents:
52024
diff
changeset
|
137 |
serviceability/sa/TestUniverse.java#id0 8193639,8211767 solaris-all,linux-ppc64le,linux-ppc64 |
49062
ff158f06c423
8198568: clean up test/hotspot/jtreg/ProblemList.txt
iignatyev
parents:
48841
diff
changeset
|
138 |
|
52630
68d450652337
8214154: problem list HeapMonitorStatIntervalTest.java
jcbeyler
parents:
52440
diff
changeset
|
139 |
serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorStatIntervalTest.java 8214032 generic-all |
54988
dd15cec077fc
8224500: Put HeapMonitorStatArrayCorrectnessTest in the problem list
jcbeyler
parents:
54951
diff
changeset
|
140 |
serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorStatArrayCorrectnessTest.java 8224150 generic-all |
52630
68d450652337
8214154: problem list HeapMonitorStatIntervalTest.java
jcbeyler
parents:
52440
diff
changeset
|
141 |
|
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
142 |
############################################################################# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
143 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
144 |
# :hotspot_misc |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
145 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
146 |
############################################################################# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
147 |
|
57610
eafa7a1e8d9b
8228904: Problemlist docker/TestJcmdWithSideCar.java until JDK-8228850 and JDK-8228960 are fixed
mseledtsov
parents:
57576
diff
changeset
|
148 |
|
eafa7a1e8d9b
8228904: Problemlist docker/TestJcmdWithSideCar.java until JDK-8228850 and JDK-8228960 are fixed
mseledtsov
parents:
57576
diff
changeset
|
149 |
############################################################################# |
eafa7a1e8d9b
8228904: Problemlist docker/TestJcmdWithSideCar.java until JDK-8228850 and JDK-8228960 are fixed
mseledtsov
parents:
57576
diff
changeset
|
150 |
|
eafa7a1e8d9b
8228904: Problemlist docker/TestJcmdWithSideCar.java until JDK-8228850 and JDK-8228960 are fixed
mseledtsov
parents:
57576
diff
changeset
|
151 |
# :hotspot_containers |
eafa7a1e8d9b
8228904: Problemlist docker/TestJcmdWithSideCar.java until JDK-8228850 and JDK-8228960 are fixed
mseledtsov
parents:
57576
diff
changeset
|
152 |
|
eafa7a1e8d9b
8228904: Problemlist docker/TestJcmdWithSideCar.java until JDK-8228850 and JDK-8228960 are fixed
mseledtsov
parents:
57576
diff
changeset
|
153 |
containers/docker/TestJcmdWithSideCar.java 8228850,8228960 generic-all |
eafa7a1e8d9b
8228904: Problemlist docker/TestJcmdWithSideCar.java until JDK-8228850 and JDK-8228960 are fixed
mseledtsov
parents:
57576
diff
changeset
|
154 |
|
eafa7a1e8d9b
8228904: Problemlist docker/TestJcmdWithSideCar.java until JDK-8228850 and JDK-8228960 are fixed
mseledtsov
parents:
57576
diff
changeset
|
155 |
############################################################################# |
eafa7a1e8d9b
8228904: Problemlist docker/TestJcmdWithSideCar.java until JDK-8228850 and JDK-8228960 are fixed
mseledtsov
parents:
57576
diff
changeset
|
156 |
|
eafa7a1e8d9b
8228904: Problemlist docker/TestJcmdWithSideCar.java until JDK-8228850 and JDK-8228960 are fixed
mseledtsov
parents:
57576
diff
changeset
|
157 |
|
49958
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
158 |
############################################################################# |
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
159 |
|
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
160 |
# :vmTestbase_* |
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
161 |
|
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
162 |
############################################################################# |
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
163 |
|
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
164 |
vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdExceeded/isexceeded003/TestDescription.java 8153598 generic-all |
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
165 |
vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded001/TestDescription.java 8198668 generic-all |
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
166 |
vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded002/TestDescription.java 8153598 generic-all |
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
167 |
vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded003/TestDescription.java 8198668 generic-all |
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
168 |
vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded004/TestDescription.java 8153598 generic-all |
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
169 |
vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded005/TestDescription.java 8153598 generic-all |
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
170 |
vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Deadlock/JavaDeadlock001/TestDescription.java 8060733 generic-all |
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
171 |
|
50018
3ba0d8631f24
8199382: [TESTBUG] Open source VM testbase JDI tests
iignatyev
parents:
49958
diff
changeset
|
172 |
vmTestbase/nsk/jdi/ThreadReference/stop/stop001/TestDescription.java 7034630 generic-all |
3ba0d8631f24
8199382: [TESTBUG] Open source VM testbase JDI tests
iignatyev
parents:
49958
diff
changeset
|
173 |
vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses021/TestDescription.java 8065773 generic-all |
3ba0d8631f24
8199382: [TESTBUG] Open source VM testbase JDI tests
iignatyev
parents:
49958
diff
changeset
|
174 |
vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses023/TestDescription.java 8065773 generic-all |
3ba0d8631f24
8199382: [TESTBUG] Open source VM testbase JDI tests
iignatyev
parents:
49958
diff
changeset
|
175 |
|
54626
3fb6efa2c9f1
8222970: Update ProblemList for vmTestbase/nsk/jdb/eval/eval001/eval001.java
dholmes
parents:
54525
diff
changeset
|
176 |
vmTestbase/nsk/jdb/eval/eval001/eval001.java 8212117 generic-all |
54294
add0810ec2fa
8221513: Add vmTestbase/nsk/jdb/eval/eval001/eval001.java to ProblemList.txt
sspitsyn
parents:
54278
diff
changeset
|
177 |
|
51298 | 178 |
vmTestbase/metaspace/gc/firstGC_10m/TestDescription.java 8208250 generic-all |
179 |
vmTestbase/metaspace/gc/firstGC_50m/TestDescription.java 8208250 generic-all |
|
180 |
vmTestbase/metaspace/gc/firstGC_99m/TestDescription.java 8208250 generic-all |
|
181 |
vmTestbase/metaspace/gc/firstGC_default/TestDescription.java 8208250 generic-all |
|
50223
28a33a0dbf04
8199257: [TESTBUG] Open source VM testbase metaspace tests
mseledtsov
parents:
50220
diff
changeset
|
182 |
|
50260
46c67f5e27c2
8199383: [TESTBUG] Open source VM testbase JVMTI tests
iignatyev
parents:
50223
diff
changeset
|
183 |
vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted003/TestDescription.java 6606767 generic-all |
53609 | 184 |
vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted004/TestDescription.java 6606767 generic-all |
50260
46c67f5e27c2
8199383: [TESTBUG] Open source VM testbase JVMTI tests
iignatyev
parents:
50223
diff
changeset
|
185 |
vmTestbase/nsk/jvmti/scenarios/extension/EX03/ex03t001/TestDescription.java 8173658 generic-all |
46c67f5e27c2
8199383: [TESTBUG] Open source VM testbase JVMTI tests
iignatyev
parents:
50223
diff
changeset
|
186 |
vmTestbase/nsk/jvmti/AttachOnDemand/attach045/TestDescription.java 8202971 generic-all |
54433
b34bcfbcc2fd
8219918: ProblemList hotspot tests failing in SAP testing.
goetz
parents:
54387
diff
changeset
|
187 |
vmTestbase/nsk/jvmti/scenarios/jni_interception/JI05/ji05t001/TestDescription.java 8219652 aix-ppc64 |
b34bcfbcc2fd
8219918: ProblemList hotspot tests failing in SAP testing.
goetz
parents:
54387
diff
changeset
|
188 |
vmTestbase/nsk/jvmti/scenarios/jni_interception/JI06/ji06t001/TestDescription.java 8219652 aix-ppc64 |
b34bcfbcc2fd
8219918: ProblemList hotspot tests failing in SAP testing.
goetz
parents:
54387
diff
changeset
|
189 |
vmTestbase/nsk/jvmti/SetJNIFunctionTable/setjniftab001/TestDescription.java 8219652 aix-ppc64 |
57623
bfcd6fb23509
8228999: ProblemList vmTestbase/nsk/jvmti/GetThreadState/thrstat001/TestDescription.java
dcubed
parents:
57622
diff
changeset
|
190 |
vmTestbase/nsk/jvmti/GetThreadState/thrstat001/TestDescription.java 8221372 windows-x64 |
50260
46c67f5e27c2
8199383: [TESTBUG] Open source VM testbase JVMTI tests
iignatyev
parents:
50223
diff
changeset
|
191 |
|
51298 | 192 |
vmTestbase/gc/lock/jni/jnilock002/TestDescription.java 8208243,8192647 generic-all |
50168
2f59dc95847d
8199370: [TESTBUG] Open source vm testbase GC tests
iignatyev
parents:
50156
diff
changeset
|
193 |
|
50366
4d85990f9c4a
8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
50317
diff
changeset
|
194 |
vmTestbase/jit/escape/LockCoarsening/LockCoarsening001/TestDescription.java 8148743 generic-all |
51298 | 195 |
vmTestbase/jit/escape/LockCoarsening/LockCoarsening002/TestDescription.java 8208259 generic-all |
50366
4d85990f9c4a
8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
50317
diff
changeset
|
196 |
|
50156
6d6fe9416864
8199384: [TESTBUG] Open source VM testbase MLVM tests
iignatyev
parents:
50112
diff
changeset
|
197 |
vmTestbase/vm/mlvm/indy/func/jvmti/redefineClassInBootstrap/TestDescription.java 8013267 generic-all |
53616 | 198 |
vmTestbase/vm/mlvm/meth/func/java/throwException/Test.java 8058176 generic-all |
199 |
vmTestbase/vm/mlvm/meth/func/jdi/breakpointOtherStratum/Test.java 8208257,8058176 generic-all |
|
200 |
vmTestbase/vm/mlvm/meth/stress/compiler/deoptimize/Test.java 8058176 generic-all |
|
201 |
vmTestbase/vm/mlvm/meth/stress/compiler/i2c_c2i/Test.java 8058176 generic-all |
|
202 |
vmTestbase/vm/mlvm/meth/stress/compiler/sequences/Test.java 8058176 generic-all |
|
203 |
vmTestbase/vm/mlvm/meth/stress/gc/callSequencesDuringGC/Test.java 8058176 generic-all |
|
204 |
vmTestbase/vm/mlvm/meth/stress/java/sequences/Test.java 8058176 generic-all |
|
205 |
vmTestbase/vm/mlvm/meth/stress/jdi/breakpointInCompiledCode/Test.java 8058176 generic-all |
|
50156
6d6fe9416864
8199384: [TESTBUG] Open source VM testbase MLVM tests
iignatyev
parents:
50112
diff
changeset
|
206 |
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_a/TestDescription.java 8013267 generic-all |
6d6fe9416864
8199384: [TESTBUG] Open source VM testbase MLVM tests
iignatyev
parents:
50112
diff
changeset
|
207 |
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_b/TestDescription.java 8013267 generic-all |
6d6fe9416864
8199384: [TESTBUG] Open source VM testbase MLVM tests
iignatyev
parents:
50112
diff
changeset
|
208 |
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manySame_b/TestDescription.java 8013267 generic-all |
6d6fe9416864
8199384: [TESTBUG] Open source VM testbase MLVM tests
iignatyev
parents:
50112
diff
changeset
|
209 |
|
50220
31361382634b
8199379: [TESTBUG] Open source vm testbase JDB tests
iignatyev
parents:
50212
diff
changeset
|
210 |
|
50317
cf71bff5f533
8199371: [TESTBUG] Open source vm testbase JDWP tests
iignatyev
parents:
50260
diff
changeset
|
211 |
vmTestbase/nsk/jdwp/ThreadReference/ForceEarlyReturn/forceEarlyReturn001/forceEarlyReturn001.java 7199837 generic-all |
cf71bff5f533
8199371: [TESTBUG] Open source vm testbase JDWP tests
iignatyev
parents:
50260
diff
changeset
|
212 |
|
49958
cc29d7717e3a
8199375: [TESTBUG] Open source vm testbase monitoring tests
iignatyev
parents:
49949
diff
changeset
|
213 |
############################################################################# |