blob: ee1daeaa90da100f62e6143d48febea384430bb7 [file] [log] [blame]
vprovodin29bc7ae2016-09-13 12:12:33 +07001###########################################################################
2#
3# List of tests that should not be run by test/Makefile, for various reasons:
4# 1. Does not run with jtreg -samevm mode
5# 2. Causes problems in jtreg -samevm mode for jtreg or tests that follow it
6# 3. The test is too slow or consumes too many system resources
7# 4. The test fails when run on any official build systems
8#
9# It is possible that a test being on this list is a mistake, and that some
10# other test in samevm mode caused tests to fail, mistakes happen.
11#
12# Tests marked @ignore are not run by test/Makefile, but harmless to be listed.
13#
14# Tests that explicitly state "@run main/othervm ...", and are not listed here,
15# will be run in the same batch as the samevm tests.
16#
17# Shell tests are othervm by default.
18#
19# List items are testnames followed by labels, all MUST BE commented
20# as to why they are here and use a label:
21# generic-all Problems on all platforms
22# generic-ARCH Where ARCH is one of: sparc, sparcv9, x64, i586, etc.
23# OSNAME-all Where OSNAME is one of: solaris, linux, windows, macosx, aix
24# OSNAME-ARCH Specific on to one OSNAME and ARCH, e.g. solaris-amd64
25# OSNAME-REV Specific on to one OSNAME and REV, e.g. solaris-5.8
26#
27# More than one label is allowed but must be on the same line.
28#
29#############################################################################
30#
31# Running the tests:
32# cd test && make JT_HOME=jtreg_home PRODUCT_HOME=jdk_home jdk_all
33# Or instead of jdk_all, use any of the jdk_* targets.
34#
35# Samevm Notes:
36# * Although some tests may have only been seen to fail on some platforms,
37# they might be flagged as 'generic-all' because the problem they have
38# could cause hidden slowdowns on other platforms.
39# Most samevm problems will be generic-all, but windows usually dislikes
40# them the most.
41# Address already in use or connection errors indicate a generic port issue.
42# (this is not necessarily a samevm issue, but an issue for running the tests
43# on shared machines, two people or two test runs will collide).
44# * Samevm problem (windows in particular) is not closing all input/output
45# * Samevm problem when a test calls setSecurityManager()
46# * Samevm problem with setHttps*() is used? (not exactly sure here)
47# * Samevm problem when stuffing system properties with non Strings or anything
48# * Samevm problem when changing vm settings, or registering any vm actions
49# * Samevm problems with deleteOnExit(), if it must happen at end of test
50# * Samevm problems with URLClassLoader? (no details here)
51# * Samevm problems with dependence on predictable GC or finalizations
52#
53# Any of the above problems may mean the test needs to be flagged as "othervm".
54#
55#############################################################################
56#
57# Fixing the tests:
58#
59# Some tests just may need to be run with "othervm", and that can easily be
60# done my adding a @run line (or modifying any existing @run):
61# @run main/othervm NameOfMainClass
62# Make sure this @run follows any use of @library.
63# Otherwise, if the test is a samevm possibility, make sure the test is
64# cleaning up after itself, closing all streams, deleting temp files, etc.
65#
66# Keep in mind that the bug could be in many places, and even different per
67# platform, it could be a bug in any one of:
68# - the testcase
69# - the jdk (jdk classes, native code, or hotspot)
70# - the native compiler
71# - the javac compiler
72# - the OS (depends on what the testcase does)
73#
74# If you managed to really fix one of these tests, here is how you can
75# remove tests from this list:
76# 1. Make sure test passes on all platforms with samevm, or mark it othervm
77# 2. Make sure test passes on all platforms when run with it's entire group
78# 3. Make sure both VMs are tested, -server and -client, if possible
79# 4. Make sure you try the -d64 option on Solaris
80# 5. Use a tool like JPRT or something to verify these results
81# 6. Delete lines in this file, include the changes with your test changes
82#
83# You may need to repeat your testing 2 or even 3 times to verify good
84# results, some of these samevm failures are not very predictable.
85#
86#############################################################################
87
88############################################################################
89
90# jdk_awt
91
vprovodina797be12016-11-03 18:55:15 +070092# https://bugs.openjdk.java.net/browse/JDK-8169106
93java/awt/Choice/ChoiceKeyEventReaction/ChoiceKeyEventReaction.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +070094
95# https://bugs.openjdk.java.net/browse/JDK-7100044
vprovodina797be12016-11-03 18:55:15 +070096java/awt/Choice/ChoiceMouseWheelTest/ChoiceMouseWheelTest.java generic-all
97
98# https://bugs.openjdk.java.net/browse/JDK-8169108
99java/awt/Choice/ItemStateChangeTest/ItemStateChangeTest.java windows-all
vprovodin163dc6b2016-09-20 14:17:26 +0700100
Vitaly Provodin7af161d2017-02-01 07:59:08 +0300101# https://bugs.openjdk.java.net/browse/JDK-8047703
102java/awt/Choice/RemoveAllShrinkTest/RemoveAllShrinkTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700103
vprovodina797be12016-11-03 18:55:15 +0700104# https://bugs.openjdk.java.net/browse/JDK-8169104
105java/awt/Component/PaintAll/PaintAll.java windows-all
106
vprovodin48c38b32016-11-23 14:44:22 +0700107https://bugs.openjdk.java.net/browse/JDK-6857809
108java/awt/Component/PrintAllXcheckJNI/PrintAllXcheckJNI.java linux-all
109
vprovodin163dc6b2016-09-20 14:17:26 +0700110# https://bugs.openjdk.java.net/browse/JDK-8165863
111java/awt/Component/SetEnabledPerformance/SetEnabledPerformance.java macosx-all
vprovodinf10a8df2016-09-16 14:43:40 +0700112
vprovodin534b3fa2016-11-25 16:43:40 +0700113# https://bugs.openjdk.java.net/browse/JDK-8170261
114java/awt/Component/TreeLockDeadlock/TreeLockDeadlock.java generic-all
115
Vitaly Provodin8b34ad82017-01-26 15:41:30 +0700116## https://bugs.openjdk.java.net/browse/JDK-8017456
117# the fix was integrated
118#java/awt/DataFlavor/MissedHtmlAndRtfBug/MissedHtmlAndRtfBug.html generic-all
vprovodin8616ab32016-10-19 18:52:13 +0700119
vprovodin5454c002016-10-26 09:48:10 +0700120# https://bugs.openjdk.java.net/browse/JDK-8081469
121java/awt/Dialog/MakeWindowAlwaysOnTop/MakeWindowAlwaysOnTop.java generic-all
122
vprovodind2f9ed82016-09-14 15:10:40 +0700123# https://bugs.openjdk.java.net/browse/JDK-6990210
vprovodinf10a8df2016-09-16 14:43:40 +0700124java/awt/EventDispatchThread/HandleExceptionOnEDT/HandleExceptionOnEDT.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700125
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700126# https://bugs.openjdk.java.net/browse/JDK-8073636
127java/awt/EventDispatchThread/LoopRobustness/LoopRobustness.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700128
vprovodinfb6a5aa2016-10-21 17:00:12 +0700129# https://bugs.openjdk.java.net/browse/JDK-8168390
130java/awt/EventDispatchThread/PreserveDispathThread/PreserveDispatchThread.java windows-all
131
Vitaly Provodin7af161d2017-02-01 07:59:08 +0300132# https://bugs.openjdk.java.net/browse/JDK-7149081
133java/awt/FileDialog/FilenameFilterTest/FilenameFilterTest.html generic-all
134
vprovodin163dc6b2016-09-20 14:17:26 +0700135# https://bugs.openjdk.java.net/browse/JDK-8029675
jetbrains_tester96adf012016-12-02 14:15:42 +0700136java/awt/Focus/6981400/Test1.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700137
Vitaly Provodin7af161d2017-02-01 07:59:08 +0300138# https://bugs.openjdk.java.net/browse/JDK-8173264
139java/awt/Focus/6981400/Test3.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700140
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700141## https://bugs.openjdk.java.net/browse/JDK-8013611
142#java/awt/Focus/8013611/JDK8013611.java windows-all
vprovodin4376b4e2016-09-28 10:22:26 +0700143
144# https://bugs.openjdk.java.net/browse/JDK-8136517
145java/awt/Focus/8073453/AWTFocusTransitionTest.java generic-all
146
147# https://bugs.openjdk.java.net/browse/JDK-8081301
148java/awt/Focus/8073453/SwingFocusTransitionTest.java generic-all
149
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700150# https://bugs.openjdk.java.net/browse/JDK-8168408
151java/awt/Focus/ActualFocusedWindowTest/ActualFocusedWindowBlockingTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700152
vprovodinf10a8df2016-09-16 14:43:40 +0700153# https://bugs.openjdk.java.net/browse/JDK-6862004
vprovodina797be12016-11-03 18:55:15 +0700154java/awt/Focus/AppletInitialFocusTest/AppletInitialFocusTest.html generic-all
vprovodinf10a8df2016-09-16 14:43:40 +0700155
156# https://bugs.openjdk.java.net/browse/JDK-6849367
157java/awt/Focus/AppletInitialFocusTest/AppletInitialFocusTest1.html generic-all
158
vprovodin163dc6b2016-09-20 14:17:26 +0700159# https://bugs.openjdk.java.net/browse/JDK-6848407
160java/awt/Focus/AutoRequestFocusTest/AutoRequestFocusSetVisibleTest.java generic-all
161
vprovodind2f9ed82016-09-14 15:10:40 +0700162# similar to
163# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6848406
vprovodinf10a8df2016-09-16 14:43:40 +0700164java/awt/Focus/AutoRequestFocusTest/AutoRequestFocusToFrontTest.java generic-all
165
166# https://bugs.openjdk.java.net/browse/JDK-6829264
167java/awt/Focus/ActualFocusedWindowTest/ActualFocusedWindowRetaining.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700168
vprovodina797be12016-11-03 18:55:15 +0700169# https://bugs.openjdk.java.net/browse/JDK-8169103
170java/awt/Focus/ChoiceFocus/ChoiceFocus.java windows-all
171
vprovodin4376b4e2016-09-28 10:22:26 +0700172# https://bugs.openjdk.java.net/browse/JDK-8078413
173java/awt/Focus/ClearLwQueueBreakTest/ClearLwQueueBreakTest.java generic-all
174
vprovodina8c69352016-09-22 11:20:03 +0700175# https://bugs.openjdk.java.net/browse/JDK-7124555
Vitaly Provodin8b34ad82017-01-26 15:41:30 +0700176java/awt/Focus/CloseDialogActivateOwnerTest/CloseDialogActivateOwnerTest.java generic-all
vprovodina8c69352016-09-22 11:20:03 +0700177
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700178# https://bugs.openjdk.java.net/browse/JDK-6986252
vprovodin163dc6b2016-09-20 14:17:26 +0700179java/awt/Focus/ConsumeNextKeyTypedOnModalShowTest/ConsumeNextKeyTypedOnModalShowTest.java generic-all
180
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700181## https://bugs.openjdk.java.net/browse/JDK-8169101
182# java/awt/Focus/FocusEmbeddedFrameTest/FocusEmbeddedFrameTest.java windows-all
vprovodina797be12016-11-03 18:55:15 +0700183
vprovodin4376b4e2016-09-28 10:22:26 +0700184# https://bugs.openjdk.java.net/browse/JDK-8081489
185java/awt/Focus/FocusOwnerFrameOnClick/FocusOwnerFrameOnClick.java generic-all
186
vprovodin163dc6b2016-09-20 14:17:26 +0700187# https://bugs.openjdk.java.net/browse/JDK-6849364
188java/awt/Focus/IconifiedFrameFocusChangeTest/IconifiedFrameFocusChangeTest.java generic-all
189
vprovodin4376b4e2016-09-28 10:22:26 +0700190# https://bugs.openjdk.java.net/browse/JDK-8053932
191java/awt/Focus/KeyEventForBadFocusOwnerTest/KeyEventForBadFocusOwnerTest.java generic-all
192
193# https://bugs.openjdk.java.net/browse/JDK-7152980
194java/awt/Focus/NoAutotransferToDisabledCompTest/NoAutotransferToDisabledCompTest.java generic-all
195
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700196# https://bugs.openjdk.java.net/browse/JDK-8151979
vprovodinfb6a5aa2016-10-21 17:00:12 +0700197java/awt/Focus/NonFocusableWindowTest/NonfocusableOwnerTest.java generic-all
198
vprovodina797be12016-11-03 18:55:15 +0700199# https://bugs.openjdk.java.net/browse/JDK-8169110
200java/awt/Focus/OwnedWindowFocusIMECrashTest/OwnedWindowFocusIMECrashTest.java windows-all
201
vprovodinfb6a5aa2016-10-21 17:00:12 +0700202# https://bugs.openjdk.java.net/browse/JDK-8168294
203java/awt/Focus/ResetMostRecentFocusOwnerTest/ResetMostRecentFocusOwnerTest.java generic-all
204
vprovodin48c38b32016-11-23 14:44:22 +0700205# https://bugs.openjdk.java.net/browse/JDK-8028701
206java/awt/Focus/ShowFrameCheckForegroundTest/ShowFrameCheckForegroundTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700207
vprovodin163dc6b2016-09-20 14:17:26 +0700208# https://bugs.openjdk.java.net/browse/JDK-8159599
209java/awt/Focus/SimpleWindowActivationTest/SimpleWindowActivationTest.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700210
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700211# https://bugs.openjdk.java.net/browse/JDK-7156130
vprovodin4376b4e2016-09-28 10:22:26 +0700212java/awt/Focus/ToFrontFocusTest/ToFrontFocus.html generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700213
vprovodinf10a8df2016-09-16 14:43:40 +0700214# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6848810
215# https://bugs.openjdk.java.net/browse/JDK-7035459
216java/awt/Focus/TranserFocusToWindow/TranserFocusToWindow.java generic-all
217
vprovodin4376b4e2016-09-28 10:22:26 +0700218# https://bugs.openjdk.java.net/browse/JDK-6986253
219java/awt/Focus/TypeAhead/TestFocusFreeze.java windows-all
220
vprovodina797be12016-11-03 18:55:15 +0700221# https://bugs.openjdk.java.net/browse/JDK-8169100
222java/awt/Focus/WindowInitialFocusTest/WindowInitialFocusTest.html windows-all
223
224# https://bugs.openjdk.java.net/browse/JDK-8169099
225java/awt/Focus/WindowIsFocusableAccessByThreadsTest/WindowIsFocusableAccessByThreadsTest.java windows-all
226
227# https://bugs.openjdk.java.net/browse/JDK-8169096
228java/awt/Focus/WrongKeyTypedConsumedTest/WrongKeyTypedConsumedTest.java windows-all
229
vprovodin163dc6b2016-09-20 14:17:26 +0700230# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6868690
231java/awt/FontClass/CreateFont/bigfont.html generic-all
232
vprovodinf10a8df2016-09-16 14:43:40 +0700233#http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8076151
234java/awt/FontClass/CreateFont/fileaccess/FontFile.java generic-all
235
236# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8080953
237java/awt/FontClass/DebugFonts.java generic-all
238
vprovodina797be12016-11-03 18:55:15 +0700239# https://bugs.openjdk.java.net/browse/JDK-8169111
Vitaly Provodin20b63f62016-12-15 14:19:24 +0700240java/awt/Frame/InvisibleOwner/InvisibleOwner.java generic-all
vprovodina797be12016-11-03 18:55:15 +0700241
vprovodin72369e62016-11-11 10:11:16 +0700242# https://bugs.openjdk.java.net/browse/JDK-8169472
243java/awt/Frame/LayoutOnMaximizeTest/LayoutOnMaximizeTest.java windows-all
244
vprovodincfaf05a2016-10-04 09:45:22 +0700245# excluded from regular runs since the test was not run
246# see http://download.java.net/openjdk/testresults/8/
247java/awt/Frame/UnfocusableMaximizedFrameResizablity/UnfocusableMaximizedFrameResizablity.java generic-all
248
vprovodin72369e62016-11-11 10:11:16 +0700249# https://bugs.openjdk.java.net/browse/JDK-8169470
250java/awt/Frame/WindowDragTest/WindowDragTest.java windows-all
251
252# https://bugs.openjdk.java.net/browse/JDK-8169471
253java/awt/FullScreen/8013581/bug8013581.java windows-all
254
vprovodin4376b4e2016-09-28 10:22:26 +0700255# https://bugs.openjdk.java.net/browse/JDK-8047218
vprovodinf10a8df2016-09-16 14:43:40 +0700256java/awt/FullScreen/AltTabCrashTest/AltTabCrashTest.java generic-all
257
vprovodin72369e62016-11-11 10:11:16 +0700258# https://bugs.openjdk.java.net/browse/JDK-8169469
259java/awt/FullScreen/DisplayChangeVITest/DisplayChangeVITest.java windows-all
260
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700261# https://bugs.openjdk.java.net/browse/JDK-7019055
vprovodin4376b4e2016-09-28 10:22:26 +0700262java/awt/FullScreen/FullScreenInsets/FullScreenInsets.java windows-all
263
vprovodin72369e62016-11-11 10:11:16 +0700264# https://bugs.openjdk.java.net/browse/JDK-8169468
265java/awt/FullScreen/NoResizeEventOnDMChangeTest/NoResizeEventOnDMChangeTest.java windows-all
266
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700267# https://bugs.openjdk.java.net/browse/JDK-8012224
vprovodinf10a8df2016-09-16 14:43:40 +0700268java/awt/Frame/MaximizedToIconified/MaximizedToIconified.java generic-all
269
vprovodin8616ab32016-10-19 18:52:13 +0700270# https://bugs.openjdk.java.net/browse/JDK-8144030
271java/awt/Frame/ShapeNotSetSometimes/ShapeNotSetSometimes.java generic-all
272
273# https://bugs.openjdk.java.net/browse/JDK-7019055
274java/awt/FullScreen/FullScreenInsets/FullScreenInsets.java generic-all
275
vprovodin72369e62016-11-11 10:11:16 +0700276# https://bugs.openjdk.java.net/browse/JDK-8016241
277java/awt/FullScreen/SetFSWindow/FSFrame.java generic-all
278
Vitaly Provodin7af161d2017-02-01 07:59:08 +0300279# https://bugs.openjdk.java.net/browse/JDK-7179526
280# fixed in 8_112
281java/awt/Graphics/LineClipTest.java generic-all
Vitaly Provodin5d023a32016-12-06 10:31:27 +0700282
vprovodin72369e62016-11-11 10:11:16 +0700283# https://bugs.openjdk.java.net/browse/JDK-8080084
284java/awt/Graphics2D/DrawString/DrawStringCrash.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700285
286# https://bugs.openjdk.java.net/browse/JDK-7043153
287java/awt/Graphics2D/DrawString/RotTransText.java generic-all
288
vprovodin72369e62016-11-11 10:11:16 +0700289# https://bugs.openjdk.java.net/browse/JDK-8169464
290java/awt/Graphics2D/DrawString/TextRenderingTest.java windows-all
291
292# https://bugs.openjdk.java.net/browse/JDK-8169463
293java/awt/Graphics2D/FillTexturePaint/FillTexturePaint.java windows-all
294
295# https://bugs.openjdk.java.net/browse/JDK-8169462
296java/awt/Graphics2D/FlipDrawImage/FlipDrawImage.java windows-all
297
vprovodincfaf05a2016-10-04 09:45:22 +0700298# https://bugs.openjdk.java.net/browse/JDK-8145808
299java/awt/Graphics2D/MTGraphicsAccessTest/MTGraphicsAccessTest.java generic-all
300
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700301# https://bugs.openjdk.java.net/browse/JDK-8054638
302java/awt/Graphics2D/WhiteTextColorTest.java generic-all
303
Vitaly Provodin5bf61002017-01-20 09:54:17 +0700304# https://bugs.openjdk.java.net/browse/JDK-8000171
305java/awt/GridLayout/LayoutExtraGaps/LayoutExtraGaps.java windows-all
306
Vitaly Provodin5d023a32016-12-06 10:31:27 +0700307# https://bugs.openjdk.java.net/browse/JDK-8170729
308java/awt/JAWT/JAWT.sh windows-all
309
vprovodin163dc6b2016-09-20 14:17:26 +0700310# https://bugs.openjdk.java.net/browse/JDK-8158380
311java/awt/KeyboardFocusmanager/TypeAhead/SubMenuShowTest/SubMenuShowTest.html generic-all
312
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700313## https://bugs.openjdk.java.net/browse/JDK-8073639
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700314# https://bugs.openjdk.java.net/browse/JDK-8074807
315java/awt/KeyboardFocusmanager/TypeAhead/TestDialogTypeAhead.html generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700316
317# https://bugs.openjdk.java.net/browse/JDK-8163261
318java/awt/LightweightDispatcher/LWDispatcherMemoryLeakTest.java generic-all
319
vprovodin72369e62016-11-11 10:11:16 +0700320# https://bugs.openjdk.java.net/browse/JDK-8169461
321java/awt/List/FirstItemRemoveTest/FirstItemRemoveTest.html windows-all
322
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700323## https://bugs.openjdk.java.net/browse/JDK-6561487
Vitaly Provodinf71c6902017-02-13 09:17:14 +0700324# https://bugs.openjdk.java.net/browse/JDK-7125471
325java/awt/List/NofocusListDblClickTest/NofocusListDblClickTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700326
Vitaly Provodin5bf61002017-01-20 09:54:17 +0700327# https://bugs.openjdk.java.net/browse/JDK-7037728
328java/awt/Menu/OpensWithNoGrab/OpensWithNoGrab.java linux-all
329
vprovodin4376b4e2016-09-28 10:22:26 +0700330# https://bugs.openjdk.java.net/browse/JDK-8068305
331java/awt/Mixing/HWDisappear.java generic-all
332
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700333# https://bugs.openjdk.java.net/browse/JDK-8143295
vprovodin4376b4e2016-09-28 10:22:26 +0700334java/awt/Mixing/LWPopupMenu.java generic-all
335
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700336## https://bugs.openjdk.java.net/browse/JDK-6885735
337#java/awt/Mixing/MixingInHwPanel.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700338
339# https://bugs.openjdk.java.net/browse/JDK-4049668
340java/awt/Mixing/MixingOnDialog.java generic-all
341
vprovodin72369e62016-11-11 10:11:16 +0700342# https://bugs.openjdk.java.net/browse/JDK-8169460
343java/awt/Mixing/MixingOnShrinkingHWButton.java windows-all
344
vprovodin163dc6b2016-09-20 14:17:26 +0700345# https://bugs.openjdk.java.net/browse/JDK-7124549
346java/awt/Mixing/NonOpaqueInternalFrame.java macosx-all
347
vprovodin72369e62016-11-11 10:11:16 +0700348# https://bugs.openjdk.java.net/browse/JDK-8169457
349java/awt/Mixing/OpaqueTest.java windows-all
350
vprovodin48c38b32016-11-23 14:44:22 +0700351# https://bugs.openjdk.java.net/browse/JDK-7124549
352java/awt/Mixing/OverlappingButtons.java generic-all
353
vprovodin4376b4e2016-09-28 10:22:26 +0700354# https://bugs.openjdk.java.net/browse/JDK-8165619
355java/awt/Mixing/ValidBounds.java generic-all
356java/awt/Mixing/Validating.java generic-all
357
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700358## https://bugs.openjdk.java.net/browse/JDK-8029024
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700359# https://bugs.openjdk.java.net/browse/JDK-8066259
360java/awt/Modal/ModalDialogOrderingTest/ModalDialogOrderingTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700361
vprovodin4376b4e2016-09-28 10:22:26 +0700362# https://bugs.openjdk.java.net/browse/JDK-8159599
363java/awt/Modal/ModalInternalFrameTest/ModalInternalFrameTest.java generic-all
364
365# https://bugs.openjdk.java.net/browse/JDK-8052166
366java/awt/Mouse/MouseComboBoxTest/MouseComboBoxTest.java generic-all
367
vprovodin163dc6b2016-09-20 14:17:26 +0700368# https://bugs.openjdk.java.net/browse/JDK-8023562
369java/awt/Mouse/EnterExitEvents/DragWindowOutOfFrameTest.java generic-all
370java/awt/Mouse/EnterExitEvents/DragWindowTest.java generic-all
371
Vitaly Provodin13b79192017-01-27 10:55:04 +0700372## https://bugs.openjdk.java.net/browse/JDK-7087869
373#fix was backported
vprovodin72369e62016-11-11 10:11:16 +0700374# https://bugs.openjdk.java.net/browse/JDK-8169534
Vitaly Provodin7af161d2017-02-01 07:59:08 +0300375java/awt/Mouse/ExtraMouseClick/ExtraMouseClick.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700376
vprovodin39bbb2b2016-09-22 11:20:03 +0700377# https://bugs.openjdk.java.net/browse/JDK-8051455
378java/awt/Mouse/EnterExitEvents/FullscreenEnterEventTest.java macosx-all
379
vprovodinf10a8df2016-09-16 14:43:40 +0700380# https://bugs.openjdk.java.net/browse/JDK-8144042
381java/awt/Mouse/EnterExitEvents/ResizingFrameTest.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700382
vprovodinfb6a5aa2016-10-21 17:00:12 +0700383# https://bugs.openjdk.java.net/browse/JDK-8168388
vprovodin5454c002016-10-26 09:48:10 +0700384java/awt/Mouse/GetMousePositionTest/GetMousePositionWithOverlay.java generic-all
vprovodinfb6a5aa2016-10-21 17:00:12 +0700385
vprovodin163dc6b2016-09-20 14:17:26 +0700386# https://bugs.openjdk.java.net/browse/JDK-8027154
387java/awt/Mouse/GetMousePositionTest/GetMousePositionWithPopup.java generic-all
388
389# https://bugs.openjdk.java.net/browse/JDK-8132766
390java/awt/Mouse/MaximizedFrameTest/MaximizedFrameTest.html macosx-all
391
vprovodin29bc7ae2016-09-13 12:12:33 +0700392# https://bugs.openjdk.java.net/browse/JDK-8129775
vprovodin4376b4e2016-09-28 10:22:26 +0700393java/awt/Mouse/MouseDragEvent/MouseDraggedTest.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700394
vprovodina8c69352016-09-22 11:20:03 +0700395# https://bugs.openjdk.java.net/browse/JDK-8013428
vprovodin4376b4e2016-09-28 10:22:26 +0700396java/awt/Mouse/MouseModifiersUnitTest/ExtraButtonDrag.java generic-all
vprovodina8c69352016-09-22 11:20:03 +0700397
vprovodin163dc6b2016-09-20 14:17:26 +0700398# https://bugs.openjdk.java.net/browse/JDK-8130471
399java/awt/Mouse/MouseModifiersUnitTest/MouseModifiersUnitTest_Extra.java linux-all
400
401# https://bugs.openjdk.java.net/browse/JDK-7124407
402java/awt/Mouse/MouseModifiersUnitTest/MouseModifiersUnitTest_Standard.java macosx-all
403
404# https://bugs.openjdk.java.net/browse/JDK-8157170
vprovodin4376b4e2016-09-28 10:22:26 +0700405java/awt/Mouse/RemovedComponentMouseListener/RemovedComponentMouseListener.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700406
vprovodin29bc7ae2016-09-13 12:12:33 +0700407# https://bugs.openjdk.java.net/browse/JDK-8148041
vprovodin8616ab32016-10-19 18:52:13 +0700408java/awt/Mouse/TitleBarDoubleClick/TitleBarDoubleClick.html generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700409
vprovodin4376b4e2016-09-28 10:22:26 +0700410# https://bugs.openjdk.java.net/browse/JDK-8012577
411java/awt/MouseAdapter/MouseAdapterUnitTest/MouseAdapterUnitTest.java generic-all
412
vprovodin163dc6b2016-09-20 14:17:26 +0700413# https://bugs.openjdk.java.net/browse/JDK-8028484
vprovodin4376b4e2016-09-28 10:22:26 +0700414java/awt/MouseInfo/JContainerMousePositionTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700415
vprovodin8616ab32016-10-19 18:52:13 +0700416# https://bugs.openjdk.java.net/browse/JDK-7124230
417java/awt/Multiscreen/LocationRelativeToTest/LocationRelativeToTest.java macosx-all
418
vprovodin163dc6b2016-09-20 14:17:26 +0700419# https://bugs.openjdk.java.net/browse/JDK-8139581
vprovodinfb6a5aa2016-10-21 17:00:12 +0700420java/awt/Paint/ComponentIsNotDrawnAfterRemoveAddTest/ComponentIsNotDrawnAfterRemoveAddTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700421
vprovodin72369e62016-11-11 10:11:16 +0700422# https://bugs.openjdk.java.net/browse/JDK-8169104
423java/awt/Paint/ExposeOnEDT.java windows-all
424
vprovodin4376b4e2016-09-28 10:22:26 +0700425# https://bugs.openjdk.java.net/browse/JDK-8028000
426java/awt/Paint/PaintNativeOnUpdate.java generic-all
427
Vitaly Provodinf71c6902017-02-13 09:17:14 +0700428# https://bugs.openjdk.java.net/browse/JDK-8031422
429java/awt/Paint/bug8024864.java generic-all
vprovodin8616ab32016-10-19 18:52:13 +0700430
vprovodincfaf05a2016-10-04 09:45:22 +0700431# excluded from regular runs since the test was not run
432# see http://download.java.net/openjdk/testresults/8/
433java/awt/ScrollPane/ScrollPanePreferredSize/ScrollPanePreferredSize.java generic-all
434java/awt/ScrollPane/bug8077409Test.java generic-all
435
vprovodin163dc6b2016-09-20 14:17:26 +0700436# https://bugs.openjdk.java.net/browse/JDK-8140329
437java/awt/SplashScreen/FullscreenAfterSplash/FullScreenAfterSplash.java generic-all
438
vprovodina797be12016-11-03 18:55:15 +0700439# https://bugs.openjdk.java.net/browse/JDK-8159592
440java/awt/SplashScreen/MultiResolutionSplash/MultiResolutionSplashTest.java generic-all
441
vprovodincfaf05a2016-10-04 09:45:22 +0700442# excluded from regular runs since the test was not run
443# see http://download.java.net/openjdk/testresults/8/
444java/awt/TextArea/Mixing/TextAreaMixing.java generic-all
445
vprovodin72369e62016-11-11 10:11:16 +0700446# https://bugs.openjdk.java.net/browse/JDK-8169533
447java/awt/TextField/SelectionInvisibleTest/SelectionInvisibleTest.java windows-all
448
vprovodin163dc6b2016-09-20 14:17:26 +0700449# https://bugs.openjdk.java.net/browse/JDK-6734341
vprovodin4376b4e2016-09-28 10:22:26 +0700450java/awt/TextArea/UsingWithMouse/SelectionAutoscrollTest.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700451
452# https://bugs.openjdk.java.net/browse/JDK-6829250
vprovodin4376b4e2016-09-28 10:22:26 +0700453java/awt/Toolkit/ScreenInsetsTest/ScreenInsetsTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700454
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700455## https://bugs.openjdk.java.net/browse/JDK-6829267
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700456# https://bugs.openjdk.java.net/browse/JDK-6847163
457java/awt/Toolkit/ToolkitPropertyTest/ToolkitPropertyTest_Enable.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700458
459# http://bugs.java.com/view_bug.do?bug_id=8039081
460java/awt/TrayIcon/PopupMenuLeakTest/PopupMenuLeakTest.java generic-all
461
462# https://bugs.openjdk.java.net/browse/JDK-7107528
463java/awt/Robot/AcceptExtraMouseButtons/AcceptExtraMouseButtons.java generic-all
464
Vitaly Provodin7af161d2017-02-01 07:59:08 +0300465# https://bugs.openjdk.java.net/browse/JDK-7081594
466# fixed in 8_112
467java/awt/Window/AlwaysOnTop/AlwaysOnTopFieldTest.java macosx-all
468
vprovodin72369e62016-11-11 10:11:16 +0700469# https://bugs.openjdk.java.net/browse/JDK-8169530
470java/awt/Window/AlwaysOnTop/TestAlwaysOnTopBeforeShow.java windows-all
471
vprovodin4376b4e2016-09-28 10:22:26 +0700472# https://bugs.openjdk.java.net/browse/JDK-8142536
473java/awt/Window/BackgroundIsNotUpdated/BackgroundIsNotUpdated.java generic-all
474
vprovodin8616ab32016-10-19 18:52:13 +0700475# https://bugs.openjdk.java.net/browse/JDK-8047703
476java/awt/Window/Grab/GrabTest.java generic-all
477
vprovodin163dc6b2016-09-20 14:17:26 +0700478# https://bugs.openjdk.java.net/browse/JDK-6848409
479java/awt/Window/GrabSequence/GrabSequence.java generic-all
480
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700481# https://bugs.openjdk.java.net/browse/JDK-8051857
482java/awt/Window/WindowType/WindowType.java linux-all
483
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700484# https://bugs.openjdk.java.net/browse/JDK-8137087
485java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.sh windows-all
vprovodin39bbb2b2016-09-22 11:20:03 +0700486
vprovodind2f9ed82016-09-14 15:10:40 +0700487# https://bugs.openjdk.java.net/browse/JDK-8080982
vprovodin4376b4e2016-09-28 10:22:26 +0700488java/awt/datatransfer/DragImage/MultiResolutionDragImageTest.java generic-all
489
490# https://bugs.openjdk.java.net/browse/JDK-8017457
491java/awt/datatransfer/DragUnicodeBetweenJVMTest/DragUnicodeBetweenJVMTest.html windows-all
vprovodind2f9ed82016-09-14 15:10:40 +0700492
493# https://bugs.openjdk.java.net/browse/JDK-8039082
494java/awt/dnd/BadSerializaionTest/BadSerializationTest.java generic-all
495
vprovodin5454c002016-10-26 09:48:10 +0700496# https://bugs.openjdk.java.net/browse/JDK-8144056
vprovodin5454c002016-10-26 09:48:10 +0700497java/awt/dnd/Button2DragTest/Button2DragTest.html generic-all
498
vprovodina8c69352016-09-22 11:20:03 +0700499# https://bugs.openjdk.java.net/browse/JDK-8066096
vprovodin4376b4e2016-09-28 10:22:26 +0700500java/awt/dnd/DragInterceptorAppletTest/DragInterceptorAppletTest.html generic-all
501
502# https://bugs.openjdk.java.net/browse/JDK-8029680
503java/awt/dnd/DropTargetEnterExitTest/ExtraDragEnterTest.java generic-all
504
505# https://bugs.openjdk.java.net/browse/JDK-8029680
506java/awt/dnd/DropTargetEnterExitTest/MissedDragExitTest.java generic-all
vprovodina8c69352016-09-22 11:20:03 +0700507
vprovodind2f9ed82016-09-14 15:10:40 +0700508# https://bugs.openjdk.java.net/browse/JDK-7098447
509java/awt/dnd/ImageTransferTest/ImageTransferTest.java generic-all
510
vprovodina8c69352016-09-22 11:20:03 +0700511# https://bugs.openjdk.java.net/browse/JDK-7124379
vprovodin4376b4e2016-09-28 10:22:26 +0700512java/awt/dnd/FileListBetweenJVMsTest/FileListBetweenJVMsTest.html generic-all
513java/awt/dnd/URIListBetweenJVMsTest/URIListBetweenJVMsTest.html generic-all
vprovodina8c69352016-09-22 11:20:03 +0700514
vprovodind2f9ed82016-09-14 15:10:40 +0700515# https://bugs.openjdk.java.net/browse/JDK-8030121
vprovodin4376b4e2016-09-28 10:22:26 +0700516java/awt/dnd/MissingDragExitEventTest/MissingDragExitEventTest.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700517
vprovodin163dc6b2016-09-20 14:17:26 +0700518# https://bugs.openjdk.java.net/browse/JDK-8164464
vprovodin4376b4e2016-09-28 10:22:26 +0700519java/awt/dnd/MissingEventsOnModalDialog/MissingEventsOnModalDialogTest.java generic-all
520
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700521## https://bugs.openjdk.java.net/browse/JDK-7109239
522#java/awt/dnd/NoFormatsCrashTest/NoFormatsCrashTest.html generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700523
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700524# https://bugs.openjdk.java.net/browse/JDK-8072088
525java/awt/dnd/ImageDecoratedDnDNegative/ImageDecoratedDnDNegative.html generic-all
526
vprovodin4376b4e2016-09-28 10:22:26 +0700527# https://bugs.openjdk.java.net/browse/JDK-8011614
528java/awt/dnd/InterJVMGetDropSuccessTest/InterJVMGetDropSuccessTest.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700529
vprovodina8c69352016-09-22 11:20:03 +0700530# https://bugs.openjdk.java.net/browse/JDK-8041431
531java/awt/dnd/URIListToFileListBetweenJVMsTest/URIListToFileListBetweenJVMsTest.html generic-all
532
vprovodin4376b4e2016-09-28 10:22:26 +0700533# https://bugs.openjdk.java.net/browse/JDK-6618538
vprovodin5454c002016-10-26 09:48:10 +0700534java/awt/event/HierarchyEvent/AncestorResized/AncestorResized.java generic-all
535
536# https://bugs.openjdk.java.net/browse/JDK-8168646
537java/awt/event/InputEvent/EventWhenTest/EventWhenTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700538
539# https://bugs.openjdk.java.net/browse/JDK-8158362
540java/awt/event/KeyEvent/AltCharAcceleratorTest/AltCharAcceleratorTest.java generic-all
541
542# https://bugs.openjdk.java.net/browse/JDK-8145652
543java/awt/event/KeyEvent/DeadKey/DeadKeySystemAssertionDialog.java generic-all
544
545# https://bugs.openjdk.java.net/browse/JDK-6626492
546java/awt/event/KeyEvent/CorrectTime/CorrectTime.java generic-all
547
vprovodin72369e62016-11-11 10:11:16 +0700548# https://bugs.openjdk.java.net/browse/JDK-8169476
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700549java/awt/event/KeyEvent/ExtendedKeyCode/ExtendedKeyCodeTest.java generic-all
vprovodin72369e62016-11-11 10:11:16 +0700550
551# https://bugs.openjdk.java.net/browse/JDK-8169474
552java/awt/event/KeyEvent/KeyChar/KeyCharTest.java windows-all
553
vprovodina8c69352016-09-22 11:20:03 +0700554# https://bugs.openjdk.java.net/browse/JDK-7156316
vprovodin4376b4e2016-09-28 10:22:26 +0700555# https://bugs.openjdk.java.net/browse/JDK-8160623
556java/awt/event/KeyEvent/KeyTyped/CtrlASCII.html generic-all
vprovodina8c69352016-09-22 11:20:03 +0700557
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700558## https://bugs.openjdk.java.net/browse/JDK-7124391
559#java/awt/event/MouseEvent/EnterAsGrabbedEvent/EnterAsGrabbedEvent.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700560
Vitaly Provodinfcc9d8d2016-12-07 16:41:51 +0700561# https://bugs.openjdk.java.net/browse/JDK-8032254
562java/awt/event/MouseEvent/EventTimeInFuture/EventTimeInFuture.java linux-all
563
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700564# https://bugs.openjdk.java.net/browse/JDK-8168389
565java/awt/event/MouseEvent/MouseClickTest/MouseClickTest.html generic-all
vprovodinfb6a5aa2016-10-21 17:00:12 +0700566
vprovodin163dc6b2016-09-20 14:17:26 +0700567# https://bugs.openjdk.java.net/browse/JDK-6854300
568java/awt/event/MouseEvent/SpuriousExitEnter/SpuriousExitEnter_3.java generic-all
569
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700570## https://bugs.openjdk.java.net/browse/JDK-4391548
571#java/awt/event/MouseEvent/RobotLWTest/RobotLWTest.html generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700572
573# https://bugs.openjdk.java.net/browse/JDK-8060176
574java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion.java generic-all
vprovodin8616ab32016-10-19 18:52:13 +0700575java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_1.java generic-all
576java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_2.html generic-all
577
578# https://bugs.openjdk.java.net/browse/JDK-6956646
579java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_4.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700580
vprovodin163dc6b2016-09-20 14:17:26 +0700581# https://bugs.openjdk.java.net/browse/JDK-6956646
582java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_3.html generic-all
583
vprovodin72369e62016-11-11 10:11:16 +0700584# https://bugs.openjdk.java.net/browse/JDK-8169475
585java/awt/event/MouseWheelEvent/WheelModifier/WheelModifier.java windows-all
586
vprovodina8c69352016-09-22 11:20:03 +0700587# https://bugs.openjdk.java.net/browse/JDK-7043170
588java/awt/font/TextLayout/CombiningPerf.java generic-all
589
vprovodin8616ab32016-10-19 18:52:13 +0700590# https://bugs.openjdk.java.net/browse/JDK-7162125
591java/awt/font/TextLayout/OSXLigatureTest.java macosx-all
592
vprovodin163dc6b2016-09-20 14:17:26 +0700593# Test ignored: Requires a special font installed
594java/awt/font/TextLayout/TestOldHangul.java generic-all
595java/awt/font/TextLayout/TestTibetan.java generic-all
596
597# https://bugs.openjdk.java.net/browse/JDK-8164818
598java/awt/font/TextLayout/VisibleAdvance.java generic-all
599
600# https://bugs.openjdk.java.net/browse/JDK-7080150
601java/awt/grab/EmbeddedFrameTest1/EmbeddedFrameTest1.java generic-all
602
vprovodina797be12016-11-03 18:55:15 +0700603# https://bugs.openjdk.java.net/browse/JDK-8169109
604java/awt/grab/GrabOnUnfocusableToplevel/GrabOnUnfocusableToplevel.java windows-all
605
vprovodin4376b4e2016-09-28 10:22:26 +0700606# https://bugs.openjdk.java.net/browse/JDK-8028000
607java/awt/image/DrawImage/EABlitTest.java generic-all
608
vprovodind2f9ed82016-09-14 15:10:40 +0700609# https://bugs.openjdk.java.net/browse/JDK-8056077
610java/awt/image/DrawImage/IncorrectAlphaSurface2SW.java linux-all
611
vprovodin72369e62016-11-11 10:11:16 +0700612# https://bugs.openjdk.java.net/browse/JDK-8169473
613java/awt/image/DrawImage/IncorrectBounds.java windows-all
614
vprovodind2f9ed82016-09-14 15:10:40 +0700615# https://bugs.openjdk.java.net/browse/JDK-8130400
616java/awt/image/DrawImage/IncorrectClipXorModeSW2Surface.java linux-all
617java/awt/image/DrawImage/IncorrectClipXorModeSurface2Surface.java linux-all
618
vprovodinc9acc382016-11-18 16:49:57 +0700619# https://bugs.openjdk.java.net/browse/JDK-8169951
vprovodin48c38b32016-11-23 14:44:22 +0700620java/awt/image/DrawImage/IncorrectOffset.java windows-all
vprovodinc9acc382016-11-18 16:49:57 +0700621java/awt/image/DrawImage/IncorrectDestinationOffset.java windows-all
vprovodin48c38b32016-11-23 14:44:22 +0700622java/awt/image/DrawImage/IncorrectSourceOffset.java windows-all
vprovodinc9acc382016-11-18 16:49:57 +0700623
vprovodinf10a8df2016-09-16 14:43:40 +0700624# no printer found
625java/awt/print/PrinterJob/ExceptionTest.java generic-all
626java/awt/print/PrinterJob/ImagePrinting/NullClipARGB.java generic-all
627java/awt/print/PrinterJob/PrtException.java generic-all
628
Vitaly Provodin7171ae02017-01-27 11:29:01 +0700629## https://bugs.openjdk.java.net/browse/JDK-8172009
630# fix was backported
631#java/awt/print/PaintSetEnabledDeadlock/PaintSetEnabledDeadlock.java macosx-all
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700632
vprovodin163dc6b2016-09-20 14:17:26 +0700633# https://bugs.openjdk.java.net/browse/JDK-8152944
634https://bugs.openjdk.java.net/browse/JDK-8152944
635excluded from regular runs
636java/time/tck/java/time/TCKDayOfWeek.java generic-all
637java/time/tck/java/time/TCKDuration.java generic-all
638java/time/tck/java/time/TCKInstant.java generic-all
639java/time/tck/java/time/TCKLocalDate.java generic-all
640java/time/tck/java/time/TCKLocalDateTime.java generic-all
641java/time/tck/java/time/TCKLocalTime.java generic-all
642java/time/tck/java/time/TCKMonth.java generic-all
643java/time/tck/java/time/TCKOffsetDateTime.java generic-all
644java/time/tck/java/time/TCKOffsetTime.java generic-all
645java/time/tck/java/time/TCKPeriod.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700646java/time/tck/java/time/TCKYear.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700647java/time/tck/java/time/TCKYearMonth.java generic-all
648java/time/tck/java/time/TCKZonedDateTime.java generic-all
649java/time/tck/java/time/format/TCKDateTimeFormatters.java generic-all
650java/time/tck/java/time/format/TCKDateTimeParseResolver.java generic-all
651java/time/tck/java/time/format/TCKInstantPrinterParser.java generic-all
652java/time/tck/java/time/format/TCKLocalizedFieldParser.java generic-all
653java/time/tck/java/time/temporal/TCKChronoField.java generic-all
654java/time/tck/java/time/temporal/TCKChronoUnit.java generic-all
655java/time/tck/java/time/temporal/TCKIsoFields.java generic-all
656java/time/tck/java/time/temporal/TCKJulianFields.java generic-all
657java/time/test/java/time/chrono/TestUmmAlQuraChronology.java generic-all
658java/time/test/java/time/format/TestNumberParser.java generic-all
659java/time/test/java/time/format/TestNumberPrinter.java generic-all
660java/time/test/java/time/format/TestZoneOffsetParser.java generic-all
661java/time/test/java/time/temporal/TestChronoUnit.java generic-all
662java/time/test/java/time/temporal/TestDateTimeValueRange.java generic-all
663
664
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700665## https://bugs.openjdk.java.net/browse/JDK-6560348
Vitaly Provodinb1025942017-01-27 11:32:59 +0700666## https://bugs.openjdk.java.net/browse/JDK-7146533
667# fix was backported
Vitaly Provodin7af161d2017-02-01 07:59:08 +0300668# https://bugs.openjdk.java.net/browse/JDK-8144247
669java/awt/xembed/server/RunTestXEmbed.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700670
vprovodind2f9ed82016-09-14 15:10:40 +0700671############################################################################
672
673# jdk_sound
674
675## https://bugs.openjdk.java.net/browse/JDK-8134632 (fixed in jdk9)
vprovodin4376b4e2016-09-28 10:22:26 +0700676# MidiSystem not available
677javax/sound/midi/Devices/InitializationHang.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700678
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700679# https://bugs.openjdk.java.net/browse/JDK-8148915
680javax/sound/sampled/DirectAudio/bug6400879.java generic-all
681
vprovodin29bc7ae2016-09-13 12:12:33 +0700682############################################################################
683
684# jdk_beans
685
vprovodin163dc6b2016-09-20 14:17:26 +0700686# https://bugs.openjdk.java.net/browse/JDK-8015593
687java/beans/XMLEncoder/Test6570354.java macosx-all
688
vprovodind2f9ed82016-09-14 15:10:40 +0700689# https://bugs.openjdk.java.net/browse/JDK-8030123
690java/beans/Introspector/Test8027648.java linux-all
691
692############################################################################
693
694# jdk_io
695
696# Test ignored: This test has huge memory requirements
697java/io/ByteArrayOutputStream/MaxCapacity.java generic-all
698
699# Test ignored: until 6492634 and 6501010 is fixed
700# http://bugs.java.com/view_bug.do?bug_id=6492634
701# http://bugs.java.com/view_bug.do?bug_id=6501010
702java/io/File/GetXSpace.java generic-all
703
704# Test ignored: Test truncates system files when run as root, see 7042603
705# http://bugs.java.com/view_bug.do?bug_id=7042603
706java/io/IOException/LastErrorString.java generic-all
707
708# Test ignored: This test requires console (/dev/tty) input, which is not supported by the current harness
709java/io/SystemInAvailable.java generic-all
710
vprovodin29bc7ae2016-09-13 12:12:33 +0700711############################################################################
712
713# jdk_lang
714
Vitaly Provodinf71c6902017-02-13 09:17:14 +0700715# https://bugs.openjdk.java.net/browse/JDK-8029891
716java/lang/ClassLoader/deadlock/GetResource.java generic-all
717
vprovodin163dc6b2016-09-20 14:17:26 +0700718# Test ignored: This test has huge memory requirements
719java/lang/StringBuilder/HugeCapacity.java generic-all
720
721# https://bugs.openjdk.java.net/browse/JDK-8072130
722java/lang/instrument/BootClassPath/BootClassPathTest.sh macosx-all
723
vprovodind2f9ed82016-09-14 15:10:40 +0700724# Test ignored: until bug 6835233 dealt with
725# http://bugs.java.com/view_bug.do?bug_id=6835233
726java/lang/instrument/ParallelTransformerLoader.sh generic-all
727
728# Test ignored: 8078602
729# http://bugs.java.com/view_bug.do?bug_id=8078602
730java/lang/invoke/LFCaching/LFGarbageCollectedTest.java generic-all
731
vprovodin29bc7ae2016-09-13 12:12:33 +0700732############################################################################
733
734# jdk_management
735
vprovodin48c38b32016-11-23 14:44:22 +0700736# https://bugs.openjdk.java.net/browse/JDK-8038822
737java/lang/management/MemoryMXBean/LowMemoryTest2.sh generic-all
738
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700739## https://bugs.openjdk.java.net/browse/JDK-8170303
740# java/lang/management/ThreadMXBean/ThreadInfoArray.java generic-all
vprovodin534b3fa2016-11-25 16:43:40 +0700741
vprovodin163dc6b2016-09-20 14:17:26 +0700742# https://bugs.openjdk.java.net/browse/JDK-8160913
743javax/management/security/SecurityTest.java generic-all
744
vprovodin29bc7ae2016-09-13 12:12:33 +0700745# 8028150
Vitaly Provodin5bf61002017-01-20 09:54:17 +0700746sun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700747
748############################################################################
749
750# jdk_jmx
751
752# 8030957
753com/sun/management/OperatingSystemMXBean/GetProcessCpuLoad.java aix-all
754com/sun/management/OperatingSystemMXBean/GetSystemCpuLoad.java aix-all
755javax/management/MBeanServer/OldMBeanServerTest.java aix-all
756
Vitaly Provodin5bf61002017-01-20 09:54:17 +0700757# https://bugs.openjdk.java.net/browse/CODETOOLS-7901859
758com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java generic-all
759
760
vprovodin29bc7ae2016-09-13 12:12:33 +0700761############################################################################
762
763# jdk_math
764
765############################################################################
766
767# jdk_other
768
769# 6988950
770demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java generic-all
771
772# 7027502
773demo/jvmti/hprof/MonitorTest.java generic-all
774
Vitaly Provodin8b34ad82017-01-26 15:41:30 +0700775# The demos are a separate bundle, they require a build which has jdk/demo
776demo/jvmti/gctest/Gctest.java generic-all
777demo/jvmti/heapTracker/HeapTrackerTest.java generic-all
778demo/jvmti/heapViewer/HeapViewerTest.java generic-all
779demo/jvmti/minst/MinstTest.java generic-all
780demo/jvmti/mtrace/TraceJFrame.java generic-all
781demo/jvmti/versionCheck/FailsWhenJvmtiVersionDiffers.java generic-all
782demo/jvmti/waiters/WaitersTest.java generic-all
783
784# https://bugs.openjdk.java.net/browse/JDK-8151352
785sample/chatserver/ChatTest.java generic-all
786sample/mergesort/MergeSortTest.java generic-all
787
vprovodin29bc7ae2016-09-13 12:12:33 +0700788# 8027973
789javax/xml/jaxp/transform/jdk8004476/XSLTExFuncTest.java windows-all
790
vprovodind2f9ed82016-09-14 15:10:40 +0700791# no printer found
792javax/print/CheckDupFlavor.java generic-all
793javax/print/PrintServiceLookup/CountPrintServices.java generic-all
794javax/print/attribute/AttributeTest.java generic-all
795javax/print/attribute/GetCopiesSupported.java generic-all
796javax/print/attribute/SidesPageRangesTest.java generic-all
797javax/print/attribute/SupportedPrintableAreas.java generic-all
798
vprovodincfaf05a2016-10-04 09:45:22 +0700799# it looks like the tests spend a lot of time on Windows
800javax/print/attribute/Chroma.java generic-all
801javax/print/attribute/ChromaticityValues.java generic-all
802javax/print/attribute/CollateAttr.java generic-all
803javax/print/attribute/MediaMappingsTest.java generic-all
804javax/print/attribute/PSCopiesFlavorTest.java generic-all
805javax/print/attribute/autosense/PrintAutoSenseData.java generic-all
806
Vitaly Provodinfcc9d8d2016-12-07 16:41:51 +0700807# hangs on Windows
808javax/print/PrintSE/PrintSE.sh windows-all
809
vprovodin29bc7ae2016-09-13 12:12:33 +0700810############################################################################
811
812# jdk_net
813
814# Filed 7052625
815com/sun/net/httpserver/bugs/6725892/Test.java generic-all
816
817# failing on vista 32/64 on nightly
818# 7102702
819java/net/PortUnreachableException/OneExceptionOnly.java windows-all
820
821# 7148829
822sun/net/InetAddress/nameservice/simple/CacheTest.java generic-all
823sun/net/InetAddress/nameservice/simple/DefaultCaching.java generic-all
824
Vitaly Provodindaed41c2017-01-27 12:03:10 +0700825## https://bugs.openjdk.java.net/browse/JDK-8041924
826# fix was backported
827#sun/net/www/http/ChunkedOutputStream/checkError.java linux-all
Vitaly Provodin5bf61002017-01-20 09:54:17 +0700828
829# https://bugs.openjdk.java.net/browse/JDK-8146257
830sun/net/www/protocol/jar/B4957695.java generic-all
831
vprovodinc9acc382016-11-18 16:49:57 +0700832# https://bugs.openjdk.java.net/browse/JDK-6602831
833java/net/Inet6Address/B6206527.java generic-all
834
vprovodin48c38b32016-11-23 14:44:22 +0700835# https://bugs.openjdk.java.net/browse/JDK-8065419
836java/net/Inet4Address/textToNumericFormat.java generic-all
837
vprovodin29bc7ae2016-09-13 12:12:33 +0700838# 7122846
839java/net/MulticastSocket/NoLoopbackPackets.java macosx-all
840java/net/MulticastSocket/SetLoopbackMode.java macosx-all
841
842# 7145658
843java/net/MulticastSocket/Test.java macosx-all
844
845# 7143960
846java/net/DatagramSocket/SendDatagramToBadAddress.java macosx-all
847
848############################################################################
849
850# jdk_nio
851
vprovodin48c38b32016-11-23 14:44:22 +0700852# https://bugs.openjdk.java.net/browse/JDK-8068693
853java/nio/channels/AsyncCloseAndInterrupt.java generic-all
854
vprovodin29bc7ae2016-09-13 12:12:33 +0700855# 6963118
856java/nio/channels/Selector/Wakeup.java windows-all
857
858# 7141822
859java/nio/channels/DatagramChannel/ChangingAddress.java macosx-all
860
vprovodinf10a8df2016-09-16 14:43:40 +0700861# https://bugs.openjdk.java.net/browse/JDK-8137230
862java/nio/channels/FileChannel/LoopingTruncate.java generic-all
863
Vitaly Provodin5bf61002017-01-20 09:54:17 +0700864## the test requires ~4Gb diskspace
865## it often fails by java.io.IOException: No space left on device
866## and affect other tests
867java/nio/channels/FileChannel/Size.java generic-all
868
869# https://bugs.openjdk.java.net/browse/JDK-8140263
870java/nio/channels/FileChannel/Transfer.java macosx-all
871
vprovodin29bc7ae2016-09-13 12:12:33 +0700872# 7132677
873java/nio/channels/Selector/OutOfBand.java macosx-all
874
875# 7158947, Solaris 11
876java/nio/file/WatchService/Basic.java solaris-all
877java/nio/file/WatchService/LotsOfEvents.java solaris-all
878
879############################################################################
880
881# jdk_rmi
882
883# 7140992
884java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java generic-all
885
vprovodin4376b4e2016-09-28 10:22:26 +0700886# https://bugs.openjdk.java.net/browse/JDK-8029360
887java/rmi/transport/dgcDeadLock/DGCDeadLock.java generic-all
888
vprovodin29bc7ae2016-09-13 12:12:33 +0700889# 7146541
890java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
891
892# 7191877
893java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all
894
895# 7195095
896sun/rmi/transport/proxy/EagerHttpFallback.java generic-all
897
898############################################################################
899
900# jdk_security
901
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700902## https://bugs.openjdk.java.net/browse/JDK-7054428
903#java/security/SecureClassLoader/DefineClassByteBuffer.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700904
vprovodind2f9ed82016-09-14 15:10:40 +0700905# Test ignored: Must set up KDC and setup Kerberos configuration file
906javax/security/auth/kerberos/KerberosHashEqualsTest.java generic-all
907javax/security/auth/kerberos/KerberosTixDateTest.java generic-all
908
909# Test ignored: run these by hand
910com/sun/security/auth/callback/TextCallbackHandler/Password.java generic-all
911com/sun/security/auth/callback/TextCallbackHandler/Default.java generic-all
912
913# Test ignored: see runwjaas.csh for instructions for how to run this test
914com/sun/security/sasl/gsskerb/NoSecurityLayer.java generic-all
915com/sun/security/sasl/gsskerb/ConfSecurityLayer.java generic-all
916com/sun/security/sasl/gsskerb/AuthOnly.java generic-all
917
vprovodin29bc7ae2016-09-13 12:12:33 +0700918# 7157786
919sun/security/pkcs11/ec/TestKeyFactory.java generic-all
920
921# 7164518: no PortUnreachableException on Mac
922sun/security/krb5/auto/Unreachable.java macosx-all
923
924# 7147060
925com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
926
927# 6988842: 4 tests failing on Solaris 5.10
928sun/security/pkcs11/Secmod/AddPrivateKey.java solaris-all
929sun/security/pkcs11/ec/ReadCertificates.java solaris-all
930sun/security/pkcs11/ec/ReadPKCS12.java solaris-all
931sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java solaris-all
932
Vitaly Provodinf71c6902017-02-13 09:17:14 +0700933# https://bugs.openjdk.java.net/browse/JDK-8074580
934sun/security/pkcs11/rsa/TestKeyPairGenerator.java generic-all
935
vprovodin29bc7ae2016-09-13 12:12:33 +0700936# 7041639, Solaris DSA keypair generation bug
937java/security/KeyPairGenerator/SolarisShortDSA.java solaris-all
938sun/security/tools/keytool/standard.sh solaris-all
939
940# 8026393
941sun/security/tools/jarsigner/warnings/BadKeyUsageTest.java generic-all
942
943# 8158827
944sun/security/krb5/auto/tools/KinitConfPlusProps.java windows-all
945
946############################################################################
947
vprovodin29bc7ae2016-09-13 12:12:33 +0700948# jdk_swing
949
vprovodin163dc6b2016-09-20 14:17:26 +0700950# https://bugs.openjdk.java.net/browse/JDK-8060765
vprovodin48c38b32016-11-23 14:44:22 +0700951javax/swing/AbstractButton/6711682/bug6711682.java generic-all
vprovodinc9acc382016-11-18 16:49:57 +0700952
953# https://bugs.openjdk.java.net/browse/JDK-8143021
954javax/swing/JColorChooser/Test6541987.java generic-all
955
956# https://bugs.openjdk.java.net/browse/JDK-8076178
957javax/swing/JColorChooser/Test7194184.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700958
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700959# https://bugs.openjdk.java.net/browse/JDK-8171302
960javax/swing/JComboBox/4743225/bug4743225.java generic-all
961
962# https://bugs.openjdk.java.net/browse/JDK-8028707
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700963javax/swing/JComboBox/6236162/bug6236162.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700964
vprovodinf10a8df2016-09-16 14:43:40 +0700965# https://bugs.openjdk.java.net/browse/JDK-8040797
966javax/swing/JComboBox/8032878/bug8032878.java generic-all
967
vprovodin163dc6b2016-09-20 14:17:26 +0700968# https://bugs.openjdk.java.net/browse/JDK-8033069
969javax/swing/JComboBox/8033069/bug8033069NoScrollBar.java generic-all
970
vprovodin798153c2016-09-30 14:52:04 +0700971# https://bugs.openjdk.java.net/browse/JDK-8163367
972javax/swing/JComboBox/8033069/bug8033069ScrollBar.java generic-all
973
vprovodinc9acc382016-11-18 16:49:57 +0700974# https://bugs.openjdk.java.net/browse/JDK-8169953
975javax/swing/JComboBox/8057893/bug8057893.java windows-all
976
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700977# https://bugs.openjdk.java.net/browse/JDK-8136998
978javax/swing/JComboBox/8136998/bug8136998.java generic-all
979
vprovodinf10a8df2016-09-16 14:43:40 +0700980# http://bugs.java.com/view_bug.do?bug_id=8067986
vprovodin4376b4e2016-09-28 10:22:26 +0700981javax/swing/JComboBox/ConsumedKeyTest/ConsumedKeyTest.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +0700982
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700983# https://bugs.openjdk.java.net/browse/JDK-8172337
984javax/swing/JComponent/6683775/bug6683775.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +0700985
vprovodin4376b4e2016-09-28 10:22:26 +0700986# https://bugs.openjdk.java.net/browse/JDK-7190978
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700987javax/swing/JComponent/7154030/bug7154030.java generic-all
988
Vitaly Provodin5bf61002017-01-20 09:54:17 +0700989# https://bugs.openjdk.java.net/browse/JDK-8016559
990javax/swing/JEditorPane/6917744/bug6917744.java windows-all
991
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700992# https://bugs.openjdk.java.net/browse/JDK-8042380
993javax/swing/JFileChooser/4524490/bug4524490.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700994
vprovodin163dc6b2016-09-20 14:17:26 +0700995# https://bugs.openjdk.java.net/browse/JDK-8058231
996javax/swing/JFileChooser/6396844/TwentyThousandTest.java generic-all
997
998# https://bugs.openjdk.java.net/browse/JDK-8087110
999javax/swing/JFileChooser/8002077/bug8002077.java generic-all
1000
vprovodinc9acc382016-11-18 16:49:57 +07001001# https://bugs.openjdk.java.net/browse/JDK-8169954
1002javax/swing/JFileChooser/8021253/bug8021253.java windows-all
1003
vprovodinf10a8df2016-09-16 14:43:40 +07001004# https://bugs.openjdk.java.net/browse/JDK-8064715
1005javax/swing/JFileChooser/8062561/bug8062561.java generic-all
1006
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001007# https://bugs.openjdk.java.net/browse/JDK-8170721
1008javax/swing/JFrame/4962534/bug4962534.html macosx-all
Vitaly Provodin5d023a32016-12-06 10:31:27 +07001009
vprovodinc9acc382016-11-18 16:49:57 +07001010# https://bugs.openjdk.java.net/browse/JDK-8169955
1011javax/swing/JFrame/8016356/bug8016356.java windows-all
1012
vprovodin8616ab32016-10-19 18:52:13 +07001013# https://bugs.openjdk.java.net/browse/JDK-8007719
1014javax/swing/JInternalFrame/5066752/bug5066752.java generic-all
1015
vprovodinf10a8df2016-09-16 14:43:40 +07001016# https://bugs.openjdk.java.net/browse/JDK-8032568
1017javax/swing/JInternalFrame/8020708/bug8020708.java generic-all
1018
vprovodin163dc6b2016-09-20 14:17:26 +07001019# https://bugs.openjdk.java.net/browse/JDK-8160880
vprovodin798153c2016-09-30 14:52:04 +07001020javax/swing/JInternalFrame/Test6325652.java generic-all
1021
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001022# https://bugs.openjdk.java.net/browse/JDK-8172535
1023javax/swing/JInternalFrame/Test6505027.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001024
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001025# https://bugs.openjdk.java.net/browse/JDK-8040914
1026javax/swing/JLabel/6596966/bug6596966.java generic-all
1027
vprovodin163dc6b2016-09-20 14:17:26 +07001028# https://bugs.openjdk.java.net/browse/JDK-8003972
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001029javax/swing/JList/6462008/bug6462008.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001030
vprovodinc9acc382016-11-18 16:49:57 +07001031# https://bugs.openjdk.java.net/browse/JDK-8040915
1032javax/swing/JMenu/4515762/bug4515762.java generic-all
1033
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001034https://bugs.openjdk.java.net/browse/JDK-8171998
1035javax/swing/JMenu/4692443/bug4692443.java windows-all
1036
vprovodinc9acc382016-11-18 16:49:57 +07001037# https://bugs.openjdk.java.net/browse/JDK-8142534
1038javax/swing/JMenu/8072900/WrongSelectionOnMouseOver.java generic-all
1039
Vitaly Provodin36f14f22016-12-22 16:58:00 +07001040## https://bugs.openjdk.java.net/browse/JDK-8015597
1041#javax/swing/JMenuBar/4750590/bug4750590.java generic-all
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001042
vprovodinc9acc382016-11-18 16:49:57 +07001043# https://bugs.openjdk.java.net/browse/JDK-8040916
1044javax/swing/JMenuItem/4171437/bug4171437.java generic-all
1045
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001046# https://bugs.openjdk.java.net/browse/JDK-8172536
1047javax/swing/JMenuItem/4654927/bug4654927.java windows-all
vprovodin8616ab32016-10-19 18:52:13 +07001048
vprovodin163dc6b2016-09-20 14:17:26 +07001049# https://bugs.openjdk.java.net/browse/JDK-8025083
1050javax/swing/JMenuItem/6209975/bug6209975.java generic-all
1051
Vitaly Provodin5d023a32016-12-06 10:31:27 +07001052https://bugs.openjdk.java.net/browse/JDK-8139169
1053javax/swing/JMenuItem/ActionListenerCalledTwice/ActionListenerCalledTwiceTest.java macosx-all
1054
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001055# https://bugs.openjdk.java.net/browse/JDK-7124548
1056javax/swing/JOptionPane/6464022/bug6464022.java macosx-all
1057
vprovodinc9acc382016-11-18 16:49:57 +07001058# https://bugs.openjdk.java.net/browse/JDK-8040917
1059javax/swing/JPopupMenu/4458079/bug4458079.java generic-all
1060
vprovodina8c69352016-09-22 11:20:03 +07001061# https://bugs.openjdk.java.net/browse/JDK-8064915
vprovodin02ff3162016-10-28 10:08:30 +07001062# https://bugs.openjdk.java.net/browse/JDK-8074385
1063javax/swing/JPopupMenu/4966112/bug4966112.java generic-all
vprovodina8c69352016-09-22 11:20:03 +07001064
vprovodind781c422016-10-13 09:31:09 +07001065# https://bugs. openjdk.java.net/browse/JDK-7184956
vprovodincfaf05a2016-10-04 09:45:22 +07001066javax/swing/JPopupMenu/6800513/bug6800513.java generic-all
1067
vprovodinc9acc382016-11-18 16:49:57 +07001068# https://bugs.openjdk.java.net/browse/JDK-8042378
vprovodin163dc6b2016-09-20 14:17:26 +07001069# https://bugs.openjdk.java.net/browse/JDK-8156460
vprovodinc9acc382016-11-18 16:49:57 +07001070javax/swing/JPopupMenu/6827786/bug6827786.java generic-all
1071
1072# https://bugs.openjdk.java.net/browse/JDK-8169956
1073javax/swing/JPopupMenu/6987844/bug6987844.java windows-all
vprovodin163dc6b2016-09-20 14:17:26 +07001074
vprovodina8c69352016-09-22 11:20:03 +07001075# https://bugs.openjdk.java.net/browse/JDK-7185563
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001076# https://bugs.openjdk.java.net/browse/JDK-8171381
1077javax/swing/JPopupMenu/7156657/bug7156657.java generic-all
vprovodina8c69352016-09-22 11:20:03 +07001078
vprovodin163dc6b2016-09-20 14:17:26 +07001079# https://bugs.openjdk.java.net/browse/JDK-8064920
vprovodin4376b4e2016-09-28 10:22:26 +07001080javax/swing/JRadioButton/8033699/bug8033699.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001081
vitaly.provodin0443df82017-01-26 17:20:50 +07001082## https://bugs.openjdk.java.net/browse/JDK-8130430
1083# fix was backported
Vitaly Provodin7af161d2017-02-01 07:59:08 +03001084# https://bugs.openjdk.java.net/browse/JDK-8136371
1085javax/swing/JRadioButton/8075609/bug8075609.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +07001086
vprovodinc9acc382016-11-18 16:49:57 +07001087# https://bugs.openjdk.java.net/browse/JDK-8042381
1088javax/swing/JRootPane/4670486/bug4670486.java generic-all
1089
1090# https://bugs.openjdk.java.net/browse/JDK-8145647 linux
1091# https://bugs.openjdk.java.net/browse/JDK-8169957
1092javax/swing/JScrollBar/4708809/bug4708809.java generic-all
vprovodina8c69352016-09-22 11:20:03 +07001093
Vitaly Provodin36f14f22016-12-22 16:58:00 +07001094## https://bugs.openjdk.java.net/browse/JDK-8024407
1095#javax/swing/JScrollBar/7163696/Test7163696.java macosx-all
vprovodin163dc6b2016-09-20 14:17:26 +07001096
vitaly.provodin164cbd62017-01-26 17:16:26 +07001097## https://bugs.openjdk.java.net/browse/JDK-8028618
1098# fix was backported
1099#javax/swing/JScrollBar/bug4202954/bug4202954.java windows-all
vprovodinc9acc382016-11-18 16:49:57 +07001100
1101# https://bugs.openjdk.java.net/browse/JDK-8169960
1102javax/swing/JScrollPane/HorizontalMouseWheelOnShiftPressed/HorizontalMouseWheelOnShiftPressed.java windows-all
1103
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001104# https://bugs.openjdk.java.net/browse/JDK-8172539
Vitaly Provodin5bf61002017-01-20 09:54:17 +07001105javax/swing/JSlider/6348946/bug6348946.java windows-all
vprovodin798153c2016-09-30 14:52:04 +07001106
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001107# https://bugs.openjdk.java.net/browse/JDK-8172408
1108javax/swing/JSpinner/4973721/bug4973721.java generic-all
vprovodin8616ab32016-10-19 18:52:13 +07001109
vprovodinc9acc382016-11-18 16:49:57 +07001110# https://bugs.openjdk.java.net/browse/JDK-8169958
1111javax/swing/JSpinner/5012888/bug5012888.java windows-all
1112
1113# https://bugs.openjdk.java.net/browse/JDK-8019935
1114javax/swing/JSplitPane/4885629/bug4885629.java generic-all
1115
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001116# https://bugs.openjdk.java.net/browse/JDK-7033533
vprovodinc9acc382016-11-18 16:49:57 +07001117javax/swing/JTable/4220171/bug4220171.java generic-all
1118
1119# https://bugs.openjdk.java.net/browse/JDK-8169959
1120javax/swing/JTable/6263446/bug6263446.java windows-all
1121
1122# https://bugs.openjdk.java.net/browse/JDK-8169952
1123javax/swing/JTableHeader/6884066/bug6884066.java windows-all
vprovodin4376b4e2016-09-28 10:22:26 +07001124
jetbrains_tester96adf012016-12-02 14:15:42 +07001125# https://bugs.openjdk.java.net/browse/JDK-7179842
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001126javax/swing/JTableHeader/6889007/bug6889007.java generic-all
jetbrains_tester96adf012016-12-02 14:15:42 +07001127
vprovodin534b3fa2016-11-25 16:43:40 +07001128# https://bugs.openjdk.java.net/browse/JDK-8170260
1129javax/swing/JTabbedPane/4361477/bug4361477.java generic-all
1130
Vitaly Provodin5bf61002017-01-20 09:54:17 +07001131# https://bugs.openjdk.java.net/browse/JDK-8064922
1132# https://bugs.openjdk.java.net/browse/JDK-8171997
1133javax/swing/JTabbedPane/4624207/bug4624207.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001134
1135# https://bugs.openjdk.java.net/browse/JDK-8028281
1136javax/swing/JTabbedPane/7024235/Test7024235.java macosx-all
1137
vprovodinf10a8df2016-09-16 14:43:40 +07001138# https://bugs.openjdk.java.net/browse/JDK-8051591
vprovodin4376b4e2016-09-28 10:22:26 +07001139javax/swing/JTabbedPane/8007563/Test8007563.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +07001140
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001141# https://bugs.openjdk.java.net/browse/JDK-8145645
1142javax/swing/JTextField/8036819/bug8036819.java generic-all
1143
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001144# https://bugs.openjdk.java.net/browse/JDK-8172407
1145javax/swing/JToolTip/4846413/bug4846413.java generic-all
1146
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001147# https://bugs.openjdk.java.net/browse/JDK-8029682
1148javax/swing/JTree/4330357/bug4330357.java windows-all
1149
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001150# https://bugs.openjdk.java.net/browse/JDK-8172065
Vitaly Provodin5bf61002017-01-20 09:54:17 +07001151javax/swing/JTree/4908142/bug4908142.java generic-all
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001152
1153# https://bugs.openjdk.java.net/browse/JDK-8172063
1154javax/swing/JTree/4927934/bug4927934.java windows-all
1155
vprovodinf10a8df2016-09-16 14:43:40 +07001156# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8011259
1157javax/swing/JTree/8003400/Test8003400.java generic-all
1158
vprovodina8c69352016-09-22 11:20:03 +07001159# https://bugs.openjdk.java.net/browse/JDK-7105119
1160javax/swing/MultiUIDefaults/4300666/bug4300666.java macosx-all
1161
vprovodin163dc6b2016-09-20 14:17:26 +07001162# https://bugs.openjdk.java.net/browse/JDK-8065099
1163javax/swing/PopupFactory/6276087/NonOpaquePopupMenuTest.java macosx-all
1164
vprovodinf10a8df2016-09-16 14:43:40 +07001165# http://bugs.java.com/view_bug.do?bug_id=8008119
1166javax/swing/RepaintManager/IconifyTest/IconifyTest.java generic-all
1167
vprovodin163dc6b2016-09-20 14:17:26 +07001168# https://bugs.openjdk.java.net/browse/JDK-8015602
1169javax/swing/SpringLayout/4726194/bug4726194.java macosx-all
1170
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001171# https://bugs.openjdk.java.net/browse/JDK-8172064
1172javax/swing/SwingUtilities/4917669/bug4917669.java windows-all
1173
Vitaly Provodinfcc728a2017-01-27 12:03:53 +07001174## https://bugs.openjdk.java.net/browse/JDK-7195187
1175#fix was backported
Vitaly Provodinf71c6902017-02-13 09:17:14 +07001176# https://bugs.openjdk.java.net/browse/JDK-8072110
1177javax/swing/SwingUtilities/7088744/bug7088744.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001178
vprovodina8c69352016-09-22 11:20:03 +07001179# https://bugs.openjdk.java.net/browse/JDK-8079253
1180javax/swing/SwingUtilities/TestBadBreak/TestBadBreak.java linux-all
1181
vprovodinf10a8df2016-09-16 14:43:40 +07001182# https://bugs.openjdk.java.net/browse/JDK-8159454
1183javax/swing/ToolTipManager/7123767/bug7123767.java generic-all
1184
jetbrains_tester96adf012016-12-02 14:15:42 +07001185# https://bugs.openjdk.java.net/browse/JDK-8167009
1186javax/swing/ToolTipManager/Test6256140.java generic-all
1187
vitaly.provodin6ebbb9f2017-01-26 17:00:55 +07001188## https://bugs.openjdk.java.net/browse/JDK-8081764
1189# fix was backported
1190#javax/swing/plaf/aqua/CustomComboBoxFocusTest.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +07001191
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001192# https://bugs.openjdk.java.net/browse/JDK-8042383
1193javax/swing/plaf/basic/BasicMenuUI/4983388/bug4983388.java generic-all
1194
Vitaly Provodin5bf61002017-01-20 09:54:17 +07001195# https://bugs.openjdk.java.net/browse/JDK-8137101
1196javax/swing/plaf/basic/BasicHTML/4251579/bug4251579.java generic-all
1197
vitaly.provodinde973442017-01-26 16:35:58 +07001198## https://bugs.openjdk.java.net/browse/JDK-8079450
1199# fix was backported
1200#javax/swing/plaf/nimbus/8041642/bug8041642.java generic-all
vprovodin8616ab32016-10-19 18:52:13 +07001201
vprovodin163dc6b2016-09-20 14:17:26 +07001202# https://bugs.openjdk.java.net/browse/JDK-8160438
1203javax/swing/plaf/nimbus/8057791/bug8057791.java macosx-all
1204
Vitaly Provodin5d023a32016-12-06 10:31:27 +07001205# https://bugs.openjdk.java.net/browse/JDK-8170722
1206javax/swing/plaf/synth/7158712/bug7158712.java generic-all
1207
vprovodin8616ab32016-10-19 18:52:13 +07001208# https://bugs.openjdk.java.net/browse/JDK-8081478
1209javax/swing/plaf/synth/SynthButtonUI/6276188/bug6276188.java generic-all
1210
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001211# https://bugs.openjdk.java.net/browse/JDK-8172071
1212javax/swing/plaf/windows/WindowsRootPaneUI/WrongAltProcessing/WrongAltProcessing.java windows-all
1213
vprovodina8c69352016-09-22 11:20:03 +07001214# https://bugs.openjdk.java.net/browse/JDK-8130895
1215javax/swing/system/6799345/TestShutdown.java linux-all
1216
jetbrains_tester96adf012016-12-02 14:15:42 +07001217# https://bugs.openjdk.java.net/browse/JDK-8003533
1218javax/swing/text/CSSBorder/6796710/bug6796710.java generic-all
1219
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001220# https://bugs.openjdk.java.net/browse/JDK-8063107
vprovodinf10a8df2016-09-16 14:43:40 +07001221javax/swing/text/DefaultEditorKit/4278839/bug4278839.java generic-all
1222
vprovodin02ff3162016-10-28 10:08:30 +07001223# https://bugs.openjdk.java.net/browse/JDK-8050988
1224javax/swing/text/GlyphPainter2/6427244/bug6427244.java generic-all
1225
Vitaly Provodin36f14f22016-12-22 16:58:00 +07001226## https://bugs.openjdk.java.net/browse/JDK-7147408
1227#javax/swing/text/StyledEditorKit/4506788/bug4506788.java generic-all
vprovodin798153c2016-09-30 14:52:04 +07001228
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001229# https://bugs.openjdk.java.net/browse/JDK-8041944
1230javax/swing/text/View/8014863/bug8014863.java generic-all
1231
vprovodin8616ab32016-10-19 18:52:13 +07001232# https://bugs.openjdk.java.net/browse/JDK-7033533
1233javax/swing/text/html/CSS/4530474/bug4530474.java generic-all
1234
vprovodin163dc6b2016-09-20 14:17:26 +07001235# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8076178
1236javax/swing/text/html/HTMLEditorKit/5043626/bug5043626.java generic-all
1237
1238# https://bugs.openjdk.java.net/browse/JDK-8022535
vprovodin4376b4e2016-09-28 10:22:26 +07001239javax/swing/text/html/parser/Test8017492.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001240
vprovodind2f9ed82016-09-14 15:10:40 +07001241# https://bugs.openjdk.java.net/browse/JDK-6962725
1242javax/swing/JFileChooser/6738668/bug6738668.java generic-all
1243
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001244# https://bugs.openjdk.java.net/browse/JDK-8049313
1245javax/swing/JTable/7068740/bug7068740.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +07001246
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001247# https://bugs.openjdk.java.net/browse/JDK-8032895
1248javax/swing/JTextArea/4697612/bug4697612.java linux-all
vprovodind2f9ed82016-09-14 15:10:40 +07001249
vprovodin29bc7ae2016-09-13 12:12:33 +07001250############################################################################
1251
1252# jdk_text
1253
1254############################################################################
1255
1256# jdk_time
1257
1258############################################################################
1259
1260# jdk_tools
1261
1262# Tests take too long, on sparcs see 7143279
1263tools/pack200/CommandLineTests.java solaris-all, macosx-all
1264tools/pack200/Pack200Test.java solaris-all, macosx-all
1265
Vitaly Provodin7af161d2017-02-01 07:59:08 +03001266# https://bugs.openjdk.java.net/browse/JDK-8140611
1267tools/pack200/UnpackerMemoryTest.java linux-all
1268
Vitaly Provodin8b34ad82017-01-26 15:41:30 +07001269# https://bugs.openjdk.java.net/browse/JDK-8172782
1270tools/launcher/FXLauncherTest.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +07001271
1272############################################################################
1273
1274# jdk_jdi
1275
1276############################################################################
1277
1278# jdk_util
1279
1280# Filed 6772009
1281java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
1282
vprovodind2f9ed82016-09-14 15:10:40 +07001283# Test ignored: Bug fix temporarily removed as it uncovered other bugs (4992226)
1284java/util/AbstractList/CheckForComodification.java generic-all
1285
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001286## https://bugs.openjdk.java.net/browse/JDK-8060093
1287# java/util/Currency/CurrencyTest.java generic-all
1288# java/util/Currency/ValidateISO4217.java generic-all
vprovodin798153c2016-09-30 14:52:04 +07001289
vprovodind2f9ed82016-09-14 15:10:40 +07001290# Test ignored: until 6842022 is resolved
1291java/util/ResourceBundle/RestrictedBundleTest.java generic-all
1292
1293#Test ignored: 6876961
1294java/util/ResourceBundle/Test4300693.java generic-all
1295
1296Test ignored: until 6842353 is resolved
1297java/util/WeakHashMap/GCDuringIteration.java generic-all
1298
1299# Test ignored: runs for hours and eats up 7 Gigabytes of disk space
1300java/util/zip/3GBZipFiles.sh generic-all
1301
vprovodin29bc7ae2016-09-13 12:12:33 +07001302############################################################################
1303
1304# svc_tools
1305
1306# 8031482
1307sun/tools/jcmd/TestJcmdSanity.java windows-all
1308
1309# 6456333
1310sun/tools/jps/TestJpsJarRelative.java generic-all
1311
Vitaly Provodinf71c6902017-02-13 09:17:14 +07001312# https://bugs.openjdk.java.net/browse/JDK-8165727
1313sun/tools/jstatd/TestJstatdExternalRegistry.java generic-all
1314
vprovodin29bc7ae2016-09-13 12:12:33 +07001315############################################################################
vprovodin48c38b32016-11-23 14:44:22 +07001316
1317# 1. cannot be executed under TC against Oracle JDK
1318# located at directory containing spaces in its name
1319# 2. it requires jar which does not exist in our OpenJDK builds
1320# 3.
vprovodineaabe412016-11-30 14:35:53 +07001321javax/imageio/stream/StreamCloserLeak/run_test.sh generic-all
1322
1323# https://bugs.openjdk.java.net/browse/JDK-8011371
1324sun/awt/datatransfer/SuplementaryCharactersTransferTest.java generic-all
1325
1326# https://bugs.openjdk.java.net/browse/JDK-8142540
1327sun/awt/dnd/8024061/bug8024061.java linux-all
1328
vitaly.provodin23482372017-01-26 16:25:52 +07001329## https://bugs.openjdk.java.net/browse/JDK-8042098
vitaly.provodinde973442017-01-26 16:35:58 +07001330# fix was backported
vitaly.provodin23482372017-01-26 16:25:52 +07001331#sun/java2d/AcceleratedXORModeTest.java windows-all
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001332
Vitaly Provodin5bf61002017-01-20 09:54:17 +07001333# https://bugs.openjdk.java.net/browse/JDK-8172888
1334sun/java2d/DirectX/InfiniteValidationLoopTest/InfiniteValidationLoopTest.java windows-all
1335
vprovodineaabe412016-11-30 14:35:53 +07001336# https://bugs.openjdk.java.net/browse/JDK-8022403
1337sun/java2d/DirectX/OnScreenRenderingResizeTest/OnScreenRenderingResizeTest.java macosx-all
1338
1339# https://bugs.openjdk.java.net/browse/JDK-7148533
1340sun/java2d/DirectX/OverriddenInsetsTest/OverriddenInsetsTest.java generic-all
1341
1342# https://bugs.openjdk.java.net/browse/JDK-8031433
1343sun/java2d/OpenGL/GradientPaints.java generic-all
1344
1345# https://bugs.openjdk.java.net/browse/JDK-8144033
1346sun/java2d/DirectX/RenderingToCachedGraphicsTest/RenderingToCachedGraphicsTest.java generic-all
1347
Vitaly Provodin5bf61002017-01-20 09:54:17 +07001348# https://bugs.openjdk.java.net/browse/JDK-7124403
1349sun/java2d/GdiRendering/InsetClipping.java generic-all
1350
vprovodineaabe412016-11-30 14:35:53 +07001351# https://bugs.openjdk.java.net/browse/JDK-8047703
1352sun/java2d/SunGraphics2D/DrawImageBilinear.java generic-all
1353
1354# https://bugs.openjdk.java.net/browse/JDK-6258137
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001355# https://bugs.openjdk.java.net/browse/JDK-6986565
1356sun/java2d/SunGraphics2D/PolyVertTest.java generic-all
vprovodineaabe412016-11-30 14:35:53 +07001357
1358# https://bugs.openjdk.java.net/browse/JDK-7124403
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001359# https://bugs.openjdk.java.net/browse/JDK-6992007
1360sun/java2d/SunGraphics2D/SimplePrimQuality.java generic-all
vprovodineaabe412016-11-30 14:35:53 +07001361
1362# https://bugs.openjdk.java.net/browse/JDK-8159142
1363sun/java2d/SunGraphics2D/SourceClippingBlitTest/SourceClippingBlitTest.java generic-all
1364
1365# https://bugs.openjdk.java.net/browse/JDK-7184899
Vitaly Provodin20b63f62016-12-15 14:19:24 +07001366# it blocks jtreg on Windows
1367sun/java2d/X11SurfaceData/SharedMemoryPixmapsTest/SharedMemoryPixmapsTest.sh generic-all
vprovodineaabe412016-11-30 14:35:53 +07001368
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001369# https://bugs.openjdk.java.net/browse/JDK-8171303
1370sun/java2d/pipe/InterpolationQualityTest.java generic-all
1371
vprovodineaabe412016-11-30 14:35:53 +07001372# https://bugs.openjdk.java.net/browse/JDK-8046046
1373sun/security/pkcs11/Signature/TestDSAKeyLength.java generic-all
1374
1375# https://bugs.openjdk.java.net/browse/JDK-8142541
1376sun/security/pkcs11/ec/TestECDH.java linux-all
1377sun/security/pkcs11/ec/TestECDSA.java linux-all
1378sun/security/pkcs11/ec/TestECGenSpec.java linux-all
1379
1380# https://bugs.openjdk.java.net/browse/JDK-7057022
1381sun/security/pkcs11/fips/ClientJSSEServerJSSE.java generic-all
1382
1383# https://bugs.openjdk.java.net/browse/JDK-8160071
1384sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java generic-all
1385
1386# https://bugs.openjdk.java.net/browse/JDK-8039280
1387sun/security/provider/PolicyFile/GrantAllPermToExtWhenNoPolicy.java generic-all
1388
1389# https://bugs.openjdk.java.net/browse/JDK-8033271
1390sun/security/provider/PolicyParser/ExtDirs.java generic-all
1391sun/security/provider/PolicyParser/ExtDirsChange.java generic-all
1392sun/security/provider/PolicyParser/ExtDirsDefaultPolicy.java generic-all
1393sun/security/provider/PolicyParser/PrincipalExpansionError.java generic-all
1394sun/security/tools/keytool/i18n.sh generic-all
1395
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001396# https://bugs.openjdk.java.net/browse/JDK-8130151
1397sun/security/provider/SecureRandom/StrongSecureRandom.java macosx-all
1398
Vitaly Provodin36f14f22016-12-22 16:58:00 +07001399## https://bugs.openjdk.java.net/browse/JDK-7083664
1400#sun/security/tools/jarsigner/diffend.sh windows-all
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001401
vprovodineaabe412016-11-30 14:35:53 +07001402# https://bugs.openjdk.java.net/browse/JDK-8011134
1403sun/security/ssl/com/sun/net/ssl/internal/ssl/X509TrustManagerImpl/ClientServer.java generic-all
1404
1405# https://bugs.openjdk.java.net/browse/JDK-8039130
1406sun/security/ssl/javax/net/ssl/NewAPIs/CheckMyTrustedKeystore.java generic-all
1407sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/Basics.java generic-all
1408sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/TestAllSuites.java generic-all
1409sun/security/ssl/sanity/ciphersuites/CheckCipherSuites.java generic-all
1410sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/CloseKeepAliveCached.java generic-all
1411
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001412# https://bugs.openjdk.java.net/browse/JDK-8171489
1413sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java linux-all
1414
Vitaly Provodin8b34ad82017-01-26 15:41:30 +07001415# https://bugs.openjdk.java.net/browse/JDK-8160023
1416sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/PostThruProxyWithAuth.sh generic-all
1417
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001418# https://bugs.openjdk.java.net/browse/JDK-8160624
1419sun/security/tools/keytool/printssl.sh windows-all
1420
vprovodineaabe412016-11-30 14:35:53 +07001421# expected failure on JBRE
Anton Tarasov72fba572016-12-06 13:33:40 +03001422sun/misc/Version/Version.java generic-all
1423
1424# https://youtrack.jetbrains.com/issue/JRE-128
1425java/awt/image/multiresolution/MultiDisplayTest/MultiDisplayTest.java generic-all
1426java/awt/image/multiresolution/MultiResolutionIcon/IconTest.java generic-all
1427java/awt/image/multiresolution/MultiResolutionTrayIconTest/MultiResolutionTrayIconTest.java generic-all
1428java/awt/image/multiresolution/BaseMultiResolutionImageTest.java generic-all
1429java/awt/image/multiresolution/Corrupted2XImageTest.java generic-all
1430java/awt/image/multiresolution/MenuMultiresolutionIconTest.java generic-all
1431java/awt/image/multiresolution/MultiResolutionIcon/MultiResIconTest.java generic-all
1432java/awt/image/multiresolution/MultiResolutionCachedImageTest.java generic-all
1433java/awt/image/multiresolution/MultiresolutionIconTest.java generic-all
1434java/awt/image/multiresolution/MultiResolutionImagePropertiesTest.java generic-all
1435java/awt/image/multiresolution/MultiResolutionJOptionPaneIconTest.java generic-all
1436java/awt/image/multiresolution/MultiResolutionRenderingHintsTest.java generic-all
1437java/awt/image/multiresolution/MultiresolutionSourceTest.java generic-all
1438java/awt/image/multiresolution/MultiResolutionToolkitImageTest.java generic-all
Anton Tarasov6f595152016-12-06 14:59:12 +03001439java/awt/image/multiresolution/MultiResolutionImageObserverTest.java gereric-all
1440java/awt/image/multiresolution/MultiResolutionDrawImageWithTransformTest.java gereric-all
Anton Tarasov72fba572016-12-06 13:33:40 +03001441java/awt/image/MultiResolutionImage/MultiResolutionDisabledImageTest.java generic-all
1442java/awt/image/MultiResolutionImage/MultiResolutionDrawImageWithTransformTest.java generic-all
1443java/awt/image/MultiResolutionImage/NSImageToMultiResolutionImageTest.java generic-all
1444java/awt/image/MultiResolutionImageCommonTest.java generic-all
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001445java/awt/image/MultiResolutionImageTest.java generic-all
1446
1447# ignored
Vitaly Provodin5bf61002017-01-20 09:54:17 +07001448com/sun/crypto/provider/Cipher/DES/PerformanceTest.java generic-all
1449com/sun/jdi/PopAndInvokeTest.java generic-all
1450com/sun/security/auth/callback/DialogCallbackHandler/Default.java generic-all
1451com/sun/security/auth/callback/TextCallbackHandler/Default.java generic-all
1452com/sun/tracing/BasicFunctionality.java generic-all
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001453# Uses certutil.exe that isn't guaranteed to be installed
Vitaly Provodin5bf61002017-01-20 09:54:17 +07001454sun/security/mscapi/nonUniqueAliases/NonUniqueAliases.sh generic-all
1455
1456## https://bugs.openjdk.java.net/browse/JDK-8150070
1457# https://bugs.openjdk.java.net/browse/JDK-8145552
1458com/sun/jdi/ArrayLengthDumpTest.sh windows-all
1459com/sun/jdi/BreakpointWithFullGC.sh windows-all
1460com/sun/jdi/CatchCaughtTest.sh windows-all
1461com/sun/jdi/CatchPatternTest.sh windows-all
1462com/sun/jdi/GetLocalVariables3Test.sh windows-all
1463com/sun/jdi/GetLocalVariables4Test.sh windows-all
1464com/sun/jdi/JdbMethodExitTest.sh windows-all
1465com/sun/jdi/JdbMissStep.sh windows-all
1466com/sun/jdi/JdbVarargsTest.sh windows-all
1467com/sun/jdi/NotAField.sh windows-all
1468com/sun/jdi/Redefine-g.sh windows-all
1469com/sun/jdi/RedefineAbstractClass.sh windows-all
1470com/sun/jdi/RedefineImplementor.sh windows-all
1471com/sun/jdi/RedefineMulti.sh windows-all
1472
1473# https://bugs.openjdk.java.net/browse/JDK-8141694
1474# https://bugs.openjdk.java.net/browse/JDK-8075066
1475com/sun/nio/sctp/SctpChannel/SocketOptionTests.java linux-all
1476
1477# https://bugs.openjdk.java.net/browse/JDK-8141694
1478com/sun/nio/sctp/SctpMultiChannel/SocketOptionTests.java linux-all
1479
1480# https://bugs.openjdk.java.net/browse/JDK-8172887
1481com/sun/awt/Translucency/WindowOpacity.java windows-all
1482java/awt/Focus/FocusEmbeddedFrameTest/FocusEmbeddedFrameTest.java windows-all
1483java/awt/Mixing/MixingInHwPanel.java windows-all
1484java/awt/dnd/NoFormatsCrashTest/NoFormatsCrashTest.html windows-all
1485java/io/File/SetLastModified.java windows-all
1486javax/swing/JScrollBar/7163696/Test7163696.java windows-all
1487javax/swing/PopupFactory/6276087/NonOpaquePopupMenuTest.java windows-all
1488javax/swing/dnd/7171812/bug7171812.java windows-all
1489javax/swing/plaf/basic/BasicTreeUI/8023474/bug8023474.java windows-all
1490javax/swing/plaf/nimbus/8041642/ScrollBarThumbVisibleTest.java windows-all
1491javax/swing/text/JTextComponent/5074573/bug5074573.java windows-all
1492javax/swing/text/StyledEditorKit/4506788/bug4506788.java windows-all
1493sun/java2d/DrawXORModeTest.java windows-all
1494sun/java2d/OpenGL/CustomCompositeTest.java windows-all
1495sun/java2d/OpenGL/DrawBufImgOp.java windows-all
1496sun/java2d/OpenGL/DrawHugeImageTest.java windows-all
1497sun/java2d/XRenderBlitsTest.java windows-all