author | goetz |
Fri, 21 Jul 2017 12:43:47 +0200 | |
changeset 46725 | 537540cbebb3 |
parent 46700 | e097aad8f3f8 |
child 46756 | 18ce0db9e920 |
permissions | -rw-r--r-- |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
1 |
# |
43468
edd7949f64cf
8172972: Add gc/g1/logging/TestG1LoggingFailure.java to the ProblemList
dholmes
parents:
43440
diff
changeset
|
2 |
# Copyright (c) 2016, 2017, 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 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
43 |
compiler/codecache/stress/OverloadCompileQueueTest.java 8166554 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
44 |
compiler/compilercontrol/jcmd/ClearDirectivesFileStackTest.java 8140405 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
45 |
compiler/jvmci/compilerToVM/GetResolvedJavaTypeTest.java 8158860 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
46 |
compiler/jvmci/compilerToVM/InvalidateInstalledCodeTest.java 8163894 generic-all |
46459 | 47 |
compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/NativeCallTest.java 8180324 generic-all |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
48 |
compiler/startup/SmallCodeCacheStartup.java 8134286 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
49 |
compiler/tiered/LevelTransitionTest.java 8067651 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
50 |
compiler/types/correctness/CorrectnessTest.java 8066173 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
51 |
compiler/types/correctness/OffTest.java 8066173 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
52 |
|
46583
873282753046
8182052: Test compiler/aot/cli/jaotc/CompileJarTest.java fails in JPRT
bobv
parents:
46530
diff
changeset
|
53 |
# aot test intermittently failing in jprt 8175791 |
46287 | 54 |
compiler/aot/DeoptimizationTest.java 8175791 windows-all |
55 |
||
46700
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
56 |
# aot missing tools (linker) on OS-X and Windows 8183337 |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
57 |
compiler/aot/calls/fromAot/AotInvokeDynamic2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
58 |
compiler/aot/calls/fromAot/AotInvokeDynamic2CompiledTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
59 |
compiler/aot/calls/fromAot/AotInvokeDynamic2InterpretedTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
60 |
compiler/aot/calls/fromAot/AotInvokeDynamic2NativeTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
61 |
compiler/aot/calls/fromAot/AotInvokeInterface2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
62 |
compiler/aot/calls/fromAot/AotInvokeInterface2CompiledTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
63 |
compiler/aot/calls/fromAot/AotInvokeInterface2InterpretedTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
64 |
compiler/aot/calls/fromAot/AotInvokeInterface2NativeTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
65 |
compiler/aot/calls/fromAot/AotInvokeSpecial2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
66 |
compiler/aot/calls/fromAot/AotInvokeSpecial2CompiledTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
67 |
compiler/aot/calls/fromAot/AotInvokeSpecial2InterpretedTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
68 |
compiler/aot/calls/fromAot/AotInvokeSpecial2NativeTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
69 |
compiler/aot/calls/fromAot/AotInvokeStatic2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
70 |
compiler/aot/calls/fromAot/AotInvokeStatic2CompiledTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
71 |
compiler/aot/calls/fromAot/AotInvokeStatic2InterpretedTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
72 |
compiler/aot/calls/fromAot/AotInvokeStatic2NativeTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
73 |
compiler/aot/calls/fromAot/AotInvokeVirtual2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
74 |
compiler/aot/calls/fromAot/AotInvokeVirtual2CompiledTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
75 |
compiler/aot/calls/fromAot/AotInvokeVirtual2InterpretedTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
76 |
compiler/aot/calls/fromAot/AotInvokeVirtual2NativeTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
77 |
compiler/aot/calls/fromCompiled/CompiledInvokeDynamic2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
78 |
compiler/aot/calls/fromCompiled/CompiledInvokeInterface2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
79 |
compiler/aot/calls/fromCompiled/CompiledInvokeSpecial2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
80 |
compiler/aot/calls/fromCompiled/CompiledInvokeStatic2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
81 |
compiler/aot/calls/fromCompiled/CompiledInvokeVirtual2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
82 |
compiler/aot/calls/fromInterpreted/InterpretedInvokeDynamic2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
83 |
compiler/aot/calls/fromInterpreted/InterpretedInvokeInterface2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
84 |
compiler/aot/calls/fromInterpreted/InterpretedInvokeSpecial2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
85 |
compiler/aot/calls/fromInterpreted/InterpretedInvokeStatic2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
86 |
compiler/aot/calls/fromInterpreted/InterpretedInvokeVirtual2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
87 |
compiler/aot/calls/fromNative/NativeInvokeSpecial2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
88 |
compiler/aot/calls/fromNative/NativeInvokeStatic2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
89 |
compiler/aot/calls/fromNative/NativeInvokeVirtual2AotTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
90 |
compiler/aot/cli/DisabledAOTWithLibraryTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
91 |
compiler/aot/cli/IncorrectAOTLibraryTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
92 |
compiler/aot/cli/jaotc/ClasspathOptionUnknownClassTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
93 |
compiler/aot/cli/jaotc/CompileClassTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
94 |
compiler/aot/cli/jaotc/CompileDirectoryTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
95 |
compiler/aot/cli/jaotc/CompileJarTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
96 |
compiler/aot/cli/jaotc/CompileModuleTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
97 |
compiler/aot/cli/jaotc/ListOptionNotExistingTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
98 |
compiler/aot/cli/jaotc/ListOptionTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
99 |
compiler/aot/cli/jaotc/ListOptionWrongFileTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
100 |
compiler/aot/cli/MultipleAOTLibraryTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
101 |
compiler/aot/cli/NonExistingAOTLibraryTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
102 |
compiler/aot/cli/SingleAOTLibraryTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
103 |
compiler/aot/cli/SingleAOTOptionTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
104 |
compiler/aot/DeoptimizationTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
105 |
compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/ClassSearchTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
106 |
compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/ClassSourceTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
107 |
compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/directory/DirectorySourceProviderTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
108 |
compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/jar/JarSourceProviderTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
109 |
compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/module/ModuleSourceProviderTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
110 |
compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/SearchPathTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
111 |
compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/NativeOrderOutputStreamTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
112 |
compiler/aot/RecompilationTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
113 |
compiler/aot/SharedUsageTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
114 |
compiler/aot/verification/ClassAndLibraryNotMatchTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
115 |
compiler/aot/verification/vmflags/NotTrackedFlagTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
116 |
compiler/aot/verification/vmflags/TrackedFlagTest.java 8183337 windows-all,macosx-all |
e097aad8f3f8
8185018: Put AOT tests on problem list for OS-X and Windows
kvn
parents:
46583
diff
changeset
|
117 |
|
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
118 |
############################################################################# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
119 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
120 |
# :hotspot_gc |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
121 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
122 |
gc/g1/humongousObjects/objectGraphTest/TestObjectGraphAfterGC.java 8156755 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
123 |
gc/survivorAlignment/TestPromotionToSurvivor.java 8129886 generic-all |
43468
edd7949f64cf
8172972: Add gc/g1/logging/TestG1LoggingFailure.java to the ProblemList
dholmes
parents:
43440
diff
changeset
|
124 |
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
|
125 |
gc/g1/humongousObjects/TestHeapCounters.java 8178918 generic-all |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
126 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
127 |
############################################################################# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
128 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
129 |
# :hotspot_runtime |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
130 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
131 |
runtime/CompressedOops/UseCompressedOops.java 8079353 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
132 |
# This test is disabled since it will stress NMT and timeout during normal testing |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
133 |
runtime/NMT/MallocStressTest.java 8166548 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
134 |
runtime/SharedArchiveFile/DefaultUseWithClient.java 8154204 generic-all |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
135 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
136 |
############################################################################# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
137 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
138 |
# :hotspot_serviceability |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
139 |
|
45246 | 140 |
serviceability/jdwp/AllModulesCommandTest.java 8170541 generic-all |
42640
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
141 |
serviceability/sa/sadebugd/SADebugDTest.java 8163805 generic-all |
43665
4bb003cad9b9
8173393: Module system implementation refresh (2/2017)
alanb
parents:
43468
diff
changeset
|
142 |
serviceability/jvmti/ModuleAwareAgents/ClassFileLoadHook/MAAClassFileLoadHook.java 8173936 generic-all |
42640
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 |
############################################################################# |
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 |
# :hotspot_misc |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
147 |
|
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
148 |
############################################################################# |
09dba077f1e7
8078450: Implement consistent process for quarantine of tests
iignatyev
parents:
diff
changeset
|
149 |