blob: ce2ca3e5fbb07cf307f3ad4e35be20063308ea81 [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 Provodine38a0f02017-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
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700104# https://bugs.openjdk.java.net/browse/JDK-7105576
105java/awt/Component/F10TopToplevel/F10TopToplevel.html windows-all
106
vprovodina797be12016-11-03 18:55:15 +0700107# https://bugs.openjdk.java.net/browse/JDK-8169104
108java/awt/Component/PaintAll/PaintAll.java windows-all
109
vprovodin48c38b32016-11-23 14:44:22 +0700110https://bugs.openjdk.java.net/browse/JDK-6857809
111java/awt/Component/PrintAllXcheckJNI/PrintAllXcheckJNI.java linux-all
112
vprovodin163dc6b2016-09-20 14:17:26 +0700113# https://bugs.openjdk.java.net/browse/JDK-8165863
114java/awt/Component/SetEnabledPerformance/SetEnabledPerformance.java macosx-all
vprovodinf10a8df2016-09-16 14:43:40 +0700115
vprovodin534b3fa2016-11-25 16:43:40 +0700116# https://bugs.openjdk.java.net/browse/JDK-8170261
117java/awt/Component/TreeLockDeadlock/TreeLockDeadlock.java generic-all
118
Vitaly Provodin3bdb4f02017-01-26 15:41:30 +0700119## https://bugs.openjdk.java.net/browse/JDK-8017456
120# the fix was integrated
121#java/awt/DataFlavor/MissedHtmlAndRtfBug/MissedHtmlAndRtfBug.html generic-all
vprovodin8616ab32016-10-19 18:52:13 +0700122
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700123## https://bugs.openjdk.java.net/browse/JDK-8081469
124# https://bugs.openjdk.java.net/browse/JDK-7054586
vprovodin5454c002016-10-26 09:48:10 +0700125java/awt/Dialog/MakeWindowAlwaysOnTop/MakeWindowAlwaysOnTop.java generic-all
126
vprovodind2f9ed82016-09-14 15:10:40 +0700127# https://bugs.openjdk.java.net/browse/JDK-6990210
vprovodinf10a8df2016-09-16 14:43:40 +0700128java/awt/EventDispatchThread/HandleExceptionOnEDT/HandleExceptionOnEDT.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700129
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700130# https://bugs.openjdk.java.net/browse/JDK-8073636
131java/awt/EventDispatchThread/LoopRobustness/LoopRobustness.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700132
vprovodinfb6a5aa2016-10-21 17:00:12 +0700133# https://bugs.openjdk.java.net/browse/JDK-8168390
Vitaly Provodin82d94092017-04-21 10:47:21 +0700134java/awt/EventDispatchThread/PreserveDispathThread/PreserveDispatchThread.java generic-all
vprovodinfb6a5aa2016-10-21 17:00:12 +0700135
Vitaly Provodin358c5e42017-04-13 14:51:48 +0700136# https://bugs.openjdk.java.net/browse/JDK-8131670
137java/awt/EventQueue/6980209/bug6980209.java generic-all
138
Vitaly Provodine38a0f02017-02-01 07:59:08 +0300139# https://bugs.openjdk.java.net/browse/JDK-7149081
140java/awt/FileDialog/FilenameFilterTest/FilenameFilterTest.html generic-all
141
vprovodin163dc6b2016-09-20 14:17:26 +0700142# https://bugs.openjdk.java.net/browse/JDK-8029675
jetbrains_tester96adf012016-12-02 14:15:42 +0700143java/awt/Focus/6981400/Test1.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700144
Vitaly Provodine38a0f02017-02-01 07:59:08 +0300145# https://bugs.openjdk.java.net/browse/JDK-8173264
146java/awt/Focus/6981400/Test3.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700147
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700148## https://bugs.openjdk.java.net/browse/JDK-8013611
Vitaly Provodine272fd82017-02-27 14:50:45 +0700149# https://bugs.openjdk.java.net/browse/JDK-8175366
150java/awt/Focus/8013611/JDK8013611.java windows-all
vprovodin4376b4e2016-09-28 10:22:26 +0700151
152# https://bugs.openjdk.java.net/browse/JDK-8136517
153java/awt/Focus/8073453/AWTFocusTransitionTest.java generic-all
154
155# https://bugs.openjdk.java.net/browse/JDK-8081301
156java/awt/Focus/8073453/SwingFocusTransitionTest.java generic-all
157
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700158# https://bugs.openjdk.java.net/browse/JDK-8168408
159java/awt/Focus/ActualFocusedWindowTest/ActualFocusedWindowBlockingTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700160
vprovodinf10a8df2016-09-16 14:43:40 +0700161# https://bugs.openjdk.java.net/browse/JDK-6862004
vprovodina797be12016-11-03 18:55:15 +0700162java/awt/Focus/AppletInitialFocusTest/AppletInitialFocusTest.html generic-all
vprovodinf10a8df2016-09-16 14:43:40 +0700163
164# https://bugs.openjdk.java.net/browse/JDK-6849367
165java/awt/Focus/AppletInitialFocusTest/AppletInitialFocusTest1.html generic-all
166
vprovodin163dc6b2016-09-20 14:17:26 +0700167# https://bugs.openjdk.java.net/browse/JDK-6848407
168java/awt/Focus/AutoRequestFocusTest/AutoRequestFocusSetVisibleTest.java generic-all
169
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700170# https://bugs.openjdk.java.net/browse/JDK-6848406
vprovodinf10a8df2016-09-16 14:43:40 +0700171java/awt/Focus/AutoRequestFocusTest/AutoRequestFocusToFrontTest.java generic-all
172
173# https://bugs.openjdk.java.net/browse/JDK-6829264
174java/awt/Focus/ActualFocusedWindowTest/ActualFocusedWindowRetaining.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700175
vprovodina797be12016-11-03 18:55:15 +0700176# https://bugs.openjdk.java.net/browse/JDK-8169103
177java/awt/Focus/ChoiceFocus/ChoiceFocus.java windows-all
178
vprovodin4376b4e2016-09-28 10:22:26 +0700179# https://bugs.openjdk.java.net/browse/JDK-8078413
180java/awt/Focus/ClearLwQueueBreakTest/ClearLwQueueBreakTest.java generic-all
181
vprovodina8c69352016-09-22 11:20:03 +0700182# https://bugs.openjdk.java.net/browse/JDK-7124555
Vitaly Provodin3bdb4f02017-01-26 15:41:30 +0700183java/awt/Focus/CloseDialogActivateOwnerTest/CloseDialogActivateOwnerTest.java generic-all
vprovodina8c69352016-09-22 11:20:03 +0700184
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700185# https://bugs.openjdk.java.net/browse/JDK-6986252
vprovodin163dc6b2016-09-20 14:17:26 +0700186java/awt/Focus/ConsumeNextKeyTypedOnModalShowTest/ConsumeNextKeyTypedOnModalShowTest.java generic-all
187
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700188## https://bugs.openjdk.java.net/browse/JDK-8169101
189# java/awt/Focus/FocusEmbeddedFrameTest/FocusEmbeddedFrameTest.java windows-all
vprovodina797be12016-11-03 18:55:15 +0700190
vprovodin4376b4e2016-09-28 10:22:26 +0700191# https://bugs.openjdk.java.net/browse/JDK-8081489
192java/awt/Focus/FocusOwnerFrameOnClick/FocusOwnerFrameOnClick.java generic-all
193
vprovodin163dc6b2016-09-20 14:17:26 +0700194# https://bugs.openjdk.java.net/browse/JDK-6849364
195java/awt/Focus/IconifiedFrameFocusChangeTest/IconifiedFrameFocusChangeTest.java generic-all
196
vprovodin4376b4e2016-09-28 10:22:26 +0700197# https://bugs.openjdk.java.net/browse/JDK-8053932
198java/awt/Focus/KeyEventForBadFocusOwnerTest/KeyEventForBadFocusOwnerTest.java generic-all
199
200# https://bugs.openjdk.java.net/browse/JDK-7152980
201java/awt/Focus/NoAutotransferToDisabledCompTest/NoAutotransferToDisabledCompTest.java generic-all
202
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700203# https://bugs.openjdk.java.net/browse/JDK-8151979
vprovodinfb6a5aa2016-10-21 17:00:12 +0700204java/awt/Focus/NonFocusableWindowTest/NonfocusableOwnerTest.java generic-all
205
vprovodina797be12016-11-03 18:55:15 +0700206# https://bugs.openjdk.java.net/browse/JDK-8169110
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700207java/awt/Focus/OwnedWindowFocusIMECrashTest/OwnedWindowFocusIMECrashTest.java generic-all
vprovodina797be12016-11-03 18:55:15 +0700208
vprovodinfb6a5aa2016-10-21 17:00:12 +0700209# https://bugs.openjdk.java.net/browse/JDK-8168294
210java/awt/Focus/ResetMostRecentFocusOwnerTest/ResetMostRecentFocusOwnerTest.java generic-all
211
vprovodin48c38b32016-11-23 14:44:22 +0700212# https://bugs.openjdk.java.net/browse/JDK-8028701
213java/awt/Focus/ShowFrameCheckForegroundTest/ShowFrameCheckForegroundTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700214
vprovodin163dc6b2016-09-20 14:17:26 +0700215# https://bugs.openjdk.java.net/browse/JDK-8159599
216java/awt/Focus/SimpleWindowActivationTest/SimpleWindowActivationTest.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700217
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700218# https://bugs.openjdk.java.net/browse/JDK-7156130
vprovodin4376b4e2016-09-28 10:22:26 +0700219java/awt/Focus/ToFrontFocusTest/ToFrontFocus.html generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700220
Vitaly Provodin96295882017-03-02 17:14:52 +0700221# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6848810
222# https://bugs.openjdk.java.net/browse/JDK-7035459
223java/awt/Focus/TranserFocusToWindow/TranserFocusToWindow.java generic-all
224
vprovodin4376b4e2016-09-28 10:22:26 +0700225# https://bugs.openjdk.java.net/browse/JDK-6986253
226java/awt/Focus/TypeAhead/TestFocusFreeze.java windows-all
227
vprovodina797be12016-11-03 18:55:15 +0700228# https://bugs.openjdk.java.net/browse/JDK-8169100
229java/awt/Focus/WindowInitialFocusTest/WindowInitialFocusTest.html windows-all
230
231# https://bugs.openjdk.java.net/browse/JDK-8169099
232java/awt/Focus/WindowIsFocusableAccessByThreadsTest/WindowIsFocusableAccessByThreadsTest.java windows-all
233
234# https://bugs.openjdk.java.net/browse/JDK-8169096
235java/awt/Focus/WrongKeyTypedConsumedTest/WrongKeyTypedConsumedTest.java windows-all
236
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700237# https://bugs.openjdk.java.net/browse/JDK-6868690
vprovodin163dc6b2016-09-20 14:17:26 +0700238java/awt/FontClass/CreateFont/bigfont.html generic-all
239
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700240# https://bugs.openjdk.java.net/browse/JDK-8076151
vprovodinf10a8df2016-09-16 14:43:40 +0700241java/awt/FontClass/CreateFont/fileaccess/FontFile.java generic-all
242
vprovodina797be12016-11-03 18:55:15 +0700243# https://bugs.openjdk.java.net/browse/JDK-8169111
Vitaly Provodin20b63f62016-12-15 14:19:24 +0700244java/awt/Frame/InvisibleOwner/InvisibleOwner.java generic-all
vprovodina797be12016-11-03 18:55:15 +0700245
vprovodin72369e62016-11-11 10:11:16 +0700246# https://bugs.openjdk.java.net/browse/JDK-8169472
247java/awt/Frame/LayoutOnMaximizeTest/LayoutOnMaximizeTest.java windows-all
248
vprovodincfaf05a2016-10-04 09:45:22 +0700249# excluded from regular runs since the test was not run
250# see http://download.java.net/openjdk/testresults/8/
251java/awt/Frame/UnfocusableMaximizedFrameResizablity/UnfocusableMaximizedFrameResizablity.java generic-all
252
vprovodin72369e62016-11-11 10:11:16 +0700253# https://bugs.openjdk.java.net/browse/JDK-8169470
254java/awt/Frame/WindowDragTest/WindowDragTest.java windows-all
255
256# https://bugs.openjdk.java.net/browse/JDK-8169471
257java/awt/FullScreen/8013581/bug8013581.java windows-all
258
vprovodin4376b4e2016-09-28 10:22:26 +0700259# https://bugs.openjdk.java.net/browse/JDK-8047218
vprovodinf10a8df2016-09-16 14:43:40 +0700260java/awt/FullScreen/AltTabCrashTest/AltTabCrashTest.java generic-all
261
vprovodin72369e62016-11-11 10:11:16 +0700262# https://bugs.openjdk.java.net/browse/JDK-8169469
263java/awt/FullScreen/DisplayChangeVITest/DisplayChangeVITest.java windows-all
264
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700265# https://bugs.openjdk.java.net/browse/JDK-7019055
vprovodin4376b4e2016-09-28 10:22:26 +0700266java/awt/FullScreen/FullScreenInsets/FullScreenInsets.java windows-all
267
vprovodin72369e62016-11-11 10:11:16 +0700268# https://bugs.openjdk.java.net/browse/JDK-8169468
269java/awt/FullScreen/NoResizeEventOnDMChangeTest/NoResizeEventOnDMChangeTest.java windows-all
270
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700271# https://bugs.openjdk.java.net/browse/JDK-8012224
vprovodinf10a8df2016-09-16 14:43:40 +0700272java/awt/Frame/MaximizedToIconified/MaximizedToIconified.java generic-all
273
vprovodin8616ab32016-10-19 18:52:13 +0700274# https://bugs.openjdk.java.net/browse/JDK-8144030
275java/awt/Frame/ShapeNotSetSometimes/ShapeNotSetSometimes.java generic-all
276
277# https://bugs.openjdk.java.net/browse/JDK-7019055
278java/awt/FullScreen/FullScreenInsets/FullScreenInsets.java generic-all
279
vprovodin72369e62016-11-11 10:11:16 +0700280# https://bugs.openjdk.java.net/browse/JDK-8016241
281java/awt/FullScreen/SetFSWindow/FSFrame.java generic-all
282
Vitaly Provodine38a0f02017-02-01 07:59:08 +0300283# https://bugs.openjdk.java.net/browse/JDK-7179526
Vitaly Provodin5bf2ba82017-03-07 15:55:46 +0700284#fixed in 8_112
Vitaly Provodine38a0f02017-02-01 07:59:08 +0300285java/awt/Graphics/LineClipTest.java generic-all
Vitaly Provodin5d023a32016-12-06 10:31:27 +0700286
vprovodin72369e62016-11-11 10:11:16 +0700287# https://bugs.openjdk.java.net/browse/JDK-8080084
288java/awt/Graphics2D/DrawString/DrawStringCrash.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700289
290# https://bugs.openjdk.java.net/browse/JDK-7043153
291java/awt/Graphics2D/DrawString/RotTransText.java generic-all
292
vprovodin72369e62016-11-11 10:11:16 +0700293# https://bugs.openjdk.java.net/browse/JDK-8169464
294java/awt/Graphics2D/DrawString/TextRenderingTest.java windows-all
295
296# https://bugs.openjdk.java.net/browse/JDK-8169463
297java/awt/Graphics2D/FillTexturePaint/FillTexturePaint.java windows-all
298
299# https://bugs.openjdk.java.net/browse/JDK-8169462
300java/awt/Graphics2D/FlipDrawImage/FlipDrawImage.java windows-all
301
vprovodincfaf05a2016-10-04 09:45:22 +0700302# https://bugs.openjdk.java.net/browse/JDK-8145808
303java/awt/Graphics2D/MTGraphicsAccessTest/MTGraphicsAccessTest.java generic-all
304
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700305# https://bugs.openjdk.java.net/browse/JDK-8054638
306java/awt/Graphics2D/WhiteTextColorTest.java generic-all
307
Vitaly Provodin43937952017-01-20 09:54:17 +0700308# https://bugs.openjdk.java.net/browse/JDK-8000171
309java/awt/GridLayout/LayoutExtraGaps/LayoutExtraGaps.java windows-all
310
Vitaly Provodin5d023a32016-12-06 10:31:27 +0700311# https://bugs.openjdk.java.net/browse/JDK-8170729
312java/awt/JAWT/JAWT.sh windows-all
313
vprovodin163dc6b2016-09-20 14:17:26 +0700314# https://bugs.openjdk.java.net/browse/JDK-8158380
315java/awt/KeyboardFocusmanager/TypeAhead/SubMenuShowTest/SubMenuShowTest.html generic-all
316
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700317## https://bugs.openjdk.java.net/browse/JDK-8073639
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700318# https://bugs.openjdk.java.net/browse/JDK-8074807
319java/awt/KeyboardFocusmanager/TypeAhead/TestDialogTypeAhead.html generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700320
321# https://bugs.openjdk.java.net/browse/JDK-8163261
322java/awt/LightweightDispatcher/LWDispatcherMemoryLeakTest.java generic-all
323
vprovodin72369e62016-11-11 10:11:16 +0700324# https://bugs.openjdk.java.net/browse/JDK-8169461
325java/awt/List/FirstItemRemoveTest/FirstItemRemoveTest.html windows-all
326
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700327## https://bugs.openjdk.java.net/browse/JDK-6561487
Vitaly Provodind20116b2017-02-13 09:17:14 +0700328# https://bugs.openjdk.java.net/browse/JDK-7125471
329java/awt/List/NofocusListDblClickTest/NofocusListDblClickTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700330
Vitaly Provodin43937952017-01-20 09:54:17 +0700331# https://bugs.openjdk.java.net/browse/JDK-7037728
332java/awt/Menu/OpensWithNoGrab/OpensWithNoGrab.java linux-all
333
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +0700334# https://bugs.openjdk.java.net/browse/JDK-8068305
335#fix ported but the test fails
336java/awt/Mixing/HWDisappear.java generic-all
337
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700338# https://bugs.openjdk.java.net/browse/JDK-8143295
vprovodin4376b4e2016-09-28 10:22:26 +0700339java/awt/Mixing/LWPopupMenu.java generic-all
340
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700341## https://bugs.openjdk.java.net/browse/JDK-6885735
342#java/awt/Mixing/MixingInHwPanel.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700343
344# https://bugs.openjdk.java.net/browse/JDK-4049668
345java/awt/Mixing/MixingOnDialog.java generic-all
346
vprovodin72369e62016-11-11 10:11:16 +0700347# https://bugs.openjdk.java.net/browse/JDK-8169460
348java/awt/Mixing/MixingOnShrinkingHWButton.java windows-all
349
vprovodin163dc6b2016-09-20 14:17:26 +0700350# https://bugs.openjdk.java.net/browse/JDK-7124549
351java/awt/Mixing/NonOpaqueInternalFrame.java macosx-all
352
vprovodin72369e62016-11-11 10:11:16 +0700353# https://bugs.openjdk.java.net/browse/JDK-8169457
354java/awt/Mixing/OpaqueTest.java windows-all
355
vprovodin48c38b32016-11-23 14:44:22 +0700356# https://bugs.openjdk.java.net/browse/JDK-7124549
357java/awt/Mixing/OverlappingButtons.java generic-all
358
vprovodin4376b4e2016-09-28 10:22:26 +0700359# https://bugs.openjdk.java.net/browse/JDK-8165619
360java/awt/Mixing/ValidBounds.java generic-all
361java/awt/Mixing/Validating.java generic-all
362
Vitaly Provodin0f8e8272017-03-23 09:09:02 +0700363# https://bugs.openjdk.java.net/browse/JDK-8177323
364java/awt/Modal/LWModalTest/LWModalTest.java macosx-all
365
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700366## https://bugs.openjdk.java.net/browse/JDK-8029024
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700367# https://bugs.openjdk.java.net/browse/JDK-8066259
368java/awt/Modal/ModalDialogOrderingTest/ModalDialogOrderingTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700369
vprovodin4376b4e2016-09-28 10:22:26 +0700370# https://bugs.openjdk.java.net/browse/JDK-8159599
371java/awt/Modal/ModalInternalFrameTest/ModalInternalFrameTest.java generic-all
372
373# https://bugs.openjdk.java.net/browse/JDK-8052166
374java/awt/Mouse/MouseComboBoxTest/MouseComboBoxTest.java generic-all
375
vprovodin163dc6b2016-09-20 14:17:26 +0700376# https://bugs.openjdk.java.net/browse/JDK-8023562
377java/awt/Mouse/EnterExitEvents/DragWindowOutOfFrameTest.java generic-all
378java/awt/Mouse/EnterExitEvents/DragWindowTest.java generic-all
379
Vitaly Provodin358c5e42017-04-13 14:51:48 +0700380# https://bugs.openjdk.java.net/browse/JDK-8165619
381java/awt/Mouse/EnterExitEvents/ModalDialogEnterExitEventsTest.java generic-all
382
vprovodin72369e62016-11-11 10:11:16 +0700383# https://bugs.openjdk.java.net/browse/JDK-8169534
Vitaly Provodine38a0f02017-02-01 07:59:08 +0300384java/awt/Mouse/ExtraMouseClick/ExtraMouseClick.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700385
vprovodin39bbb2b2016-09-22 11:20:03 +0700386# https://bugs.openjdk.java.net/browse/JDK-8051455
387java/awt/Mouse/EnterExitEvents/FullscreenEnterEventTest.java macosx-all
388
vprovodinf10a8df2016-09-16 14:43:40 +0700389# https://bugs.openjdk.java.net/browse/JDK-8144042
390java/awt/Mouse/EnterExitEvents/ResizingFrameTest.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700391
vprovodinfb6a5aa2016-10-21 17:00:12 +0700392# https://bugs.openjdk.java.net/browse/JDK-8168388
vprovodin5454c002016-10-26 09:48:10 +0700393java/awt/Mouse/GetMousePositionTest/GetMousePositionWithOverlay.java generic-all
vprovodinfb6a5aa2016-10-21 17:00:12 +0700394
vprovodin163dc6b2016-09-20 14:17:26 +0700395# https://bugs.openjdk.java.net/browse/JDK-8027154
396java/awt/Mouse/GetMousePositionTest/GetMousePositionWithPopup.java generic-all
397
398# https://bugs.openjdk.java.net/browse/JDK-8132766
399java/awt/Mouse/MaximizedFrameTest/MaximizedFrameTest.html macosx-all
400
vprovodin29bc7ae2016-09-13 12:12:33 +0700401# https://bugs.openjdk.java.net/browse/JDK-8129775
vprovodin4376b4e2016-09-28 10:22:26 +0700402java/awt/Mouse/MouseDragEvent/MouseDraggedTest.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700403
vprovodina8c69352016-09-22 11:20:03 +0700404# https://bugs.openjdk.java.net/browse/JDK-8013428
vprovodin4376b4e2016-09-28 10:22:26 +0700405java/awt/Mouse/MouseModifiersUnitTest/ExtraButtonDrag.java generic-all
vprovodina8c69352016-09-22 11:20:03 +0700406
vprovodin163dc6b2016-09-20 14:17:26 +0700407# https://bugs.openjdk.java.net/browse/JDK-8130471
408java/awt/Mouse/MouseModifiersUnitTest/MouseModifiersUnitTest_Extra.java linux-all
409
410# https://bugs.openjdk.java.net/browse/JDK-7124407
411java/awt/Mouse/MouseModifiersUnitTest/MouseModifiersUnitTest_Standard.java macosx-all
412
413# https://bugs.openjdk.java.net/browse/JDK-8157170
vprovodin4376b4e2016-09-28 10:22:26 +0700414java/awt/Mouse/RemovedComponentMouseListener/RemovedComponentMouseListener.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700415
vprovodin29bc7ae2016-09-13 12:12:33 +0700416# https://bugs.openjdk.java.net/browse/JDK-8148041
vprovodin8616ab32016-10-19 18:52:13 +0700417java/awt/Mouse/TitleBarDoubleClick/TitleBarDoubleClick.html generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700418
vprovodin4376b4e2016-09-28 10:22:26 +0700419# https://bugs.openjdk.java.net/browse/JDK-8012577
420java/awt/MouseAdapter/MouseAdapterUnitTest/MouseAdapterUnitTest.java generic-all
421
Vitaly Provodin358c5e42017-04-13 14:51:48 +0700422# https://bugs.openjdk.java.net/browse/JDK-8130741
423# https://bugs.openjdk.java.net/browse/JDK-8158798
424java/awt/MouseInfo/GetPointerInfoTest.java generic-all
425
vprovodin163dc6b2016-09-20 14:17:26 +0700426# https://bugs.openjdk.java.net/browse/JDK-8028484
vprovodin4376b4e2016-09-28 10:22:26 +0700427java/awt/MouseInfo/JContainerMousePositionTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700428
vprovodin8616ab32016-10-19 18:52:13 +0700429# https://bugs.openjdk.java.net/browse/JDK-7124230
430java/awt/Multiscreen/LocationRelativeToTest/LocationRelativeToTest.java macosx-all
431
vprovodin163dc6b2016-09-20 14:17:26 +0700432# https://bugs.openjdk.java.net/browse/JDK-8139581
vprovodinfb6a5aa2016-10-21 17:00:12 +0700433java/awt/Paint/ComponentIsNotDrawnAfterRemoveAddTest/ComponentIsNotDrawnAfterRemoveAddTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700434
vprovodin72369e62016-11-11 10:11:16 +0700435# https://bugs.openjdk.java.net/browse/JDK-8169104
436java/awt/Paint/ExposeOnEDT.java windows-all
437
vprovodin4376b4e2016-09-28 10:22:26 +0700438# https://bugs.openjdk.java.net/browse/JDK-8028000
439java/awt/Paint/PaintNativeOnUpdate.java generic-all
440
Vitaly Provodin1fe8d602017-03-04 06:42:00 +0700441# https://bugs.openjdk.java.net/browse/JDK-8031422
442#the test fails with the applied fix
443java/awt/Paint/bug8024864.java generic-all
444
vprovodincfaf05a2016-10-04 09:45:22 +0700445# excluded from regular runs since the test was not run
446# see http://download.java.net/openjdk/testresults/8/
447java/awt/ScrollPane/ScrollPanePreferredSize/ScrollPanePreferredSize.java generic-all
448java/awt/ScrollPane/bug8077409Test.java generic-all
449
Vitaly Provodin96295882017-03-02 17:14:52 +0700450# https://bugs.openjdk.java.net/browse/JDK-8140329
451java/awt/SplashScreen/FullscreenAfterSplash/FullScreenAfterSplash.java generic-all
452
vprovodina797be12016-11-03 18:55:15 +0700453# https://bugs.openjdk.java.net/browse/JDK-8159592
454java/awt/SplashScreen/MultiResolutionSplash/MultiResolutionSplashTest.java generic-all
455
vprovodin72369e62016-11-11 10:11:16 +0700456# https://bugs.openjdk.java.net/browse/JDK-8169533
457java/awt/TextField/SelectionInvisibleTest/SelectionInvisibleTest.java windows-all
458
vprovodin163dc6b2016-09-20 14:17:26 +0700459# https://bugs.openjdk.java.net/browse/JDK-6734341
vprovodin4376b4e2016-09-28 10:22:26 +0700460java/awt/TextArea/UsingWithMouse/SelectionAutoscrollTest.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700461
462# https://bugs.openjdk.java.net/browse/JDK-6829250
vprovodin4376b4e2016-09-28 10:22:26 +0700463java/awt/Toolkit/ScreenInsetsTest/ScreenInsetsTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700464
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700465## https://bugs.openjdk.java.net/browse/JDK-6829267
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700466# https://bugs.openjdk.java.net/browse/JDK-6847163
467java/awt/Toolkit/ToolkitPropertyTest/ToolkitPropertyTest_Enable.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700468
469# http://bugs.java.com/view_bug.do?bug_id=8039081
470java/awt/TrayIcon/PopupMenuLeakTest/PopupMenuLeakTest.java generic-all
471
472# https://bugs.openjdk.java.net/browse/JDK-7107528
473java/awt/Robot/AcceptExtraMouseButtons/AcceptExtraMouseButtons.java generic-all
474
Vitaly Provodine38a0f02017-02-01 07:59:08 +0300475# https://bugs.openjdk.java.net/browse/JDK-7081594
476# fixed in 8_112
477java/awt/Window/AlwaysOnTop/AlwaysOnTopFieldTest.java macosx-all
478
vprovodin72369e62016-11-11 10:11:16 +0700479# https://bugs.openjdk.java.net/browse/JDK-8169530
480java/awt/Window/AlwaysOnTop/TestAlwaysOnTopBeforeShow.java windows-all
481
vprovodin4376b4e2016-09-28 10:22:26 +0700482# https://bugs.openjdk.java.net/browse/JDK-8142536
483java/awt/Window/BackgroundIsNotUpdated/BackgroundIsNotUpdated.java generic-all
484
vprovodin8616ab32016-10-19 18:52:13 +0700485# https://bugs.openjdk.java.net/browse/JDK-8047703
486java/awt/Window/Grab/GrabTest.java generic-all
487
vprovodin163dc6b2016-09-20 14:17:26 +0700488# https://bugs.openjdk.java.net/browse/JDK-6848409
489java/awt/Window/GrabSequence/GrabSequence.java generic-all
490
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700491# https://bugs.openjdk.java.net/browse/JDK-8051857
492java/awt/Window/WindowType/WindowType.java linux-all
493
vprovodind2f9ed82016-09-14 15:10:40 +0700494# https://bugs.openjdk.java.net/browse/JDK-8080982
vprovodin4376b4e2016-09-28 10:22:26 +0700495java/awt/datatransfer/DragImage/MultiResolutionDragImageTest.java generic-all
496
497# https://bugs.openjdk.java.net/browse/JDK-8017457
498java/awt/datatransfer/DragUnicodeBetweenJVMTest/DragUnicodeBetweenJVMTest.html windows-all
vprovodind2f9ed82016-09-14 15:10:40 +0700499
500# https://bugs.openjdk.java.net/browse/JDK-8039082
501java/awt/dnd/BadSerializaionTest/BadSerializationTest.java generic-all
502
vprovodin5454c002016-10-26 09:48:10 +0700503# https://bugs.openjdk.java.net/browse/JDK-8144056
vprovodin5454c002016-10-26 09:48:10 +0700504java/awt/dnd/Button2DragTest/Button2DragTest.html generic-all
505
vprovodina8c69352016-09-22 11:20:03 +0700506# https://bugs.openjdk.java.net/browse/JDK-8066096
vprovodin4376b4e2016-09-28 10:22:26 +0700507java/awt/dnd/DragInterceptorAppletTest/DragInterceptorAppletTest.html generic-all
508
509# https://bugs.openjdk.java.net/browse/JDK-8029680
510java/awt/dnd/DropTargetEnterExitTest/ExtraDragEnterTest.java generic-all
511
512# https://bugs.openjdk.java.net/browse/JDK-8029680
513java/awt/dnd/DropTargetEnterExitTest/MissedDragExitTest.java generic-all
vprovodina8c69352016-09-22 11:20:03 +0700514
vprovodind2f9ed82016-09-14 15:10:40 +0700515# https://bugs.openjdk.java.net/browse/JDK-7098447
516java/awt/dnd/ImageTransferTest/ImageTransferTest.java generic-all
517
vprovodina8c69352016-09-22 11:20:03 +0700518# https://bugs.openjdk.java.net/browse/JDK-7124379
vprovodin4376b4e2016-09-28 10:22:26 +0700519java/awt/dnd/FileListBetweenJVMsTest/FileListBetweenJVMsTest.html generic-all
520java/awt/dnd/URIListBetweenJVMsTest/URIListBetweenJVMsTest.html generic-all
vprovodina8c69352016-09-22 11:20:03 +0700521
vprovodind2f9ed82016-09-14 15:10:40 +0700522# https://bugs.openjdk.java.net/browse/JDK-8030121
vprovodin4376b4e2016-09-28 10:22:26 +0700523java/awt/dnd/MissingDragExitEventTest/MissingDragExitEventTest.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700524
vprovodin163dc6b2016-09-20 14:17:26 +0700525# https://bugs.openjdk.java.net/browse/JDK-8164464
vprovodin4376b4e2016-09-28 10:22:26 +0700526java/awt/dnd/MissingEventsOnModalDialog/MissingEventsOnModalDialogTest.java generic-all
527
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700528## https://bugs.openjdk.java.net/browse/JDK-7109239
529#java/awt/dnd/NoFormatsCrashTest/NoFormatsCrashTest.html generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700530
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700531# https://bugs.openjdk.java.net/browse/JDK-8072088
532java/awt/dnd/ImageDecoratedDnDNegative/ImageDecoratedDnDNegative.html generic-all
533
vprovodin4376b4e2016-09-28 10:22:26 +0700534# https://bugs.openjdk.java.net/browse/JDK-8011614
535java/awt/dnd/InterJVMGetDropSuccessTest/InterJVMGetDropSuccessTest.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700536
vprovodina8c69352016-09-22 11:20:03 +0700537# https://bugs.openjdk.java.net/browse/JDK-8041431
538java/awt/dnd/URIListToFileListBetweenJVMsTest/URIListToFileListBetweenJVMsTest.html generic-all
539
vprovodin4376b4e2016-09-28 10:22:26 +0700540# https://bugs.openjdk.java.net/browse/JDK-6618538
vprovodin5454c002016-10-26 09:48:10 +0700541java/awt/event/HierarchyEvent/AncestorResized/AncestorResized.java generic-all
542
543# https://bugs.openjdk.java.net/browse/JDK-8168646
544java/awt/event/InputEvent/EventWhenTest/EventWhenTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700545
546# https://bugs.openjdk.java.net/browse/JDK-8158362
547java/awt/event/KeyEvent/AltCharAcceleratorTest/AltCharAcceleratorTest.java generic-all
548
549# https://bugs.openjdk.java.net/browse/JDK-8145652
550java/awt/event/KeyEvent/DeadKey/DeadKeySystemAssertionDialog.java generic-all
551
552# https://bugs.openjdk.java.net/browse/JDK-6626492
553java/awt/event/KeyEvent/CorrectTime/CorrectTime.java generic-all
554
vprovodin72369e62016-11-11 10:11:16 +0700555# https://bugs.openjdk.java.net/browse/JDK-8169476
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700556java/awt/event/KeyEvent/ExtendedKeyCode/ExtendedKeyCodeTest.java generic-all
vprovodin72369e62016-11-11 10:11:16 +0700557
558# https://bugs.openjdk.java.net/browse/JDK-8169474
559java/awt/event/KeyEvent/KeyChar/KeyCharTest.java windows-all
560
vprovodina8c69352016-09-22 11:20:03 +0700561# https://bugs.openjdk.java.net/browse/JDK-7156316
vprovodin4376b4e2016-09-28 10:22:26 +0700562# https://bugs.openjdk.java.net/browse/JDK-8160623
563java/awt/event/KeyEvent/KeyTyped/CtrlASCII.html generic-all
vprovodina8c69352016-09-22 11:20:03 +0700564
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700565## https://bugs.openjdk.java.net/browse/JDK-7124391
566#java/awt/event/MouseEvent/EnterAsGrabbedEvent/EnterAsGrabbedEvent.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700567
Vitaly Provodinfcc9d8d2016-12-07 16:41:51 +0700568# https://bugs.openjdk.java.net/browse/JDK-8032254
569java/awt/event/MouseEvent/EventTimeInFuture/EventTimeInFuture.java linux-all
570
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700571# https://bugs.openjdk.java.net/browse/JDK-8168389
572java/awt/event/MouseEvent/MouseClickTest/MouseClickTest.html generic-all
vprovodinfb6a5aa2016-10-21 17:00:12 +0700573
vprovodin163dc6b2016-09-20 14:17:26 +0700574# https://bugs.openjdk.java.net/browse/JDK-6854300
575java/awt/event/MouseEvent/SpuriousExitEnter/SpuriousExitEnter_3.java generic-all
576
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700577## https://bugs.openjdk.java.net/browse/JDK-4391548
578#java/awt/event/MouseEvent/RobotLWTest/RobotLWTest.html generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700579
580# https://bugs.openjdk.java.net/browse/JDK-8060176
581java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion.java generic-all
vprovodin8616ab32016-10-19 18:52:13 +0700582java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_1.java generic-all
583java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_2.html generic-all
584
585# https://bugs.openjdk.java.net/browse/JDK-6956646
586java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_4.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700587
vprovodin163dc6b2016-09-20 14:17:26 +0700588# https://bugs.openjdk.java.net/browse/JDK-6956646
589java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_3.html generic-all
590
vprovodin72369e62016-11-11 10:11:16 +0700591# https://bugs.openjdk.java.net/browse/JDK-8169475
592java/awt/event/MouseWheelEvent/WheelModifier/WheelModifier.java windows-all
593
vprovodina8c69352016-09-22 11:20:03 +0700594# https://bugs.openjdk.java.net/browse/JDK-7043170
595java/awt/font/TextLayout/CombiningPerf.java generic-all
596
vprovodin8616ab32016-10-19 18:52:13 +0700597# https://bugs.openjdk.java.net/browse/JDK-7162125
598java/awt/font/TextLayout/OSXLigatureTest.java macosx-all
599
vprovodin163dc6b2016-09-20 14:17:26 +0700600# Test ignored: Requires a special font installed
601java/awt/font/TextLayout/TestOldHangul.java generic-all
602java/awt/font/TextLayout/TestTibetan.java generic-all
603
604# https://bugs.openjdk.java.net/browse/JDK-8164818
605java/awt/font/TextLayout/VisibleAdvance.java generic-all
606
Vitaly Provodin70b4b812017-03-06 11:39:02 +0700607# https://bugs.openjdk.java.net/browse/JDK-8158356
608#affects runs (on OSX, causes the reopen dialog)
609java/awt/geom/AffineTransform/InvalidTransformParameterTest.java generic-all
610
vprovodin163dc6b2016-09-20 14:17:26 +0700611# https://bugs.openjdk.java.net/browse/JDK-7080150
612java/awt/grab/EmbeddedFrameTest1/EmbeddedFrameTest1.java generic-all
613
vprovodina797be12016-11-03 18:55:15 +0700614# https://bugs.openjdk.java.net/browse/JDK-8169109
615java/awt/grab/GrabOnUnfocusableToplevel/GrabOnUnfocusableToplevel.java windows-all
616
vprovodin4376b4e2016-09-28 10:22:26 +0700617# https://bugs.openjdk.java.net/browse/JDK-8028000
618java/awt/image/DrawImage/EABlitTest.java generic-all
619
vprovodind2f9ed82016-09-14 15:10:40 +0700620# https://bugs.openjdk.java.net/browse/JDK-8056077
621java/awt/image/DrawImage/IncorrectAlphaSurface2SW.java linux-all
622
vprovodin72369e62016-11-11 10:11:16 +0700623# https://bugs.openjdk.java.net/browse/JDK-8169473
624java/awt/image/DrawImage/IncorrectBounds.java windows-all
625
vprovodind2f9ed82016-09-14 15:10:40 +0700626# https://bugs.openjdk.java.net/browse/JDK-8130400
627java/awt/image/DrawImage/IncorrectClipXorModeSW2Surface.java linux-all
628java/awt/image/DrawImage/IncorrectClipXorModeSurface2Surface.java linux-all
629
vprovodinc9acc382016-11-18 16:49:57 +0700630# https://bugs.openjdk.java.net/browse/JDK-8169951
vprovodin48c38b32016-11-23 14:44:22 +0700631java/awt/image/DrawImage/IncorrectOffset.java windows-all
vprovodinc9acc382016-11-18 16:49:57 +0700632java/awt/image/DrawImage/IncorrectDestinationOffset.java windows-all
vprovodin48c38b32016-11-23 14:44:22 +0700633java/awt/image/DrawImage/IncorrectSourceOffset.java windows-all
vprovodinc9acc382016-11-18 16:49:57 +0700634
vprovodinf10a8df2016-09-16 14:43:40 +0700635# no printer found
636java/awt/print/PrinterJob/ExceptionTest.java generic-all
637java/awt/print/PrinterJob/ImagePrinting/NullClipARGB.java generic-all
638java/awt/print/PrinterJob/PrtException.java generic-all
Vitaly Provodin358c5e42017-04-13 14:51:48 +0700639java/awt/print/PrinterJob/PrintCrashTest.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +0700640
vprovodin163dc6b2016-09-20 14:17:26 +0700641# https://bugs.openjdk.java.net/browse/JDK-8152944
642https://bugs.openjdk.java.net/browse/JDK-8152944
643excluded from regular runs
644java/time/tck/java/time/TCKDayOfWeek.java generic-all
645java/time/tck/java/time/TCKDuration.java generic-all
646java/time/tck/java/time/TCKInstant.java generic-all
647java/time/tck/java/time/TCKLocalDate.java generic-all
648java/time/tck/java/time/TCKLocalDateTime.java generic-all
649java/time/tck/java/time/TCKLocalTime.java generic-all
650java/time/tck/java/time/TCKMonth.java generic-all
651java/time/tck/java/time/TCKOffsetDateTime.java generic-all
652java/time/tck/java/time/TCKOffsetTime.java generic-all
653java/time/tck/java/time/TCKPeriod.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700654java/time/tck/java/time/TCKYear.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700655java/time/tck/java/time/TCKYearMonth.java generic-all
656java/time/tck/java/time/TCKZonedDateTime.java generic-all
657java/time/tck/java/time/format/TCKDateTimeFormatters.java generic-all
658java/time/tck/java/time/format/TCKDateTimeParseResolver.java generic-all
659java/time/tck/java/time/format/TCKInstantPrinterParser.java generic-all
660java/time/tck/java/time/format/TCKLocalizedFieldParser.java generic-all
661java/time/tck/java/time/temporal/TCKChronoField.java generic-all
662java/time/tck/java/time/temporal/TCKChronoUnit.java generic-all
663java/time/tck/java/time/temporal/TCKIsoFields.java generic-all
664java/time/tck/java/time/temporal/TCKJulianFields.java generic-all
665java/time/test/java/time/chrono/TestUmmAlQuraChronology.java generic-all
666java/time/test/java/time/format/TestNumberParser.java generic-all
667java/time/test/java/time/format/TestNumberPrinter.java generic-all
668java/time/test/java/time/format/TestZoneOffsetParser.java generic-all
669java/time/test/java/time/temporal/TestChronoUnit.java generic-all
670java/time/test/java/time/temporal/TestDateTimeValueRange.java generic-all
671
672
Vitaly Provodine38a0f02017-02-01 07:59:08 +0300673# https://bugs.openjdk.java.net/browse/JDK-8144247
674java/awt/xembed/server/RunTestXEmbed.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700675
vprovodind2f9ed82016-09-14 15:10:40 +0700676############################################################################
677
678# jdk_sound
679
680## https://bugs.openjdk.java.net/browse/JDK-8134632 (fixed in jdk9)
vprovodin4376b4e2016-09-28 10:22:26 +0700681# MidiSystem not available
682javax/sound/midi/Devices/InitializationHang.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700683
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700684# https://bugs.openjdk.java.net/browse/JDK-8148915
685javax/sound/sampled/DirectAudio/bug6400879.java generic-all
686
vprovodin29bc7ae2016-09-13 12:12:33 +0700687############################################################################
688
689# jdk_beans
690
vprovodin163dc6b2016-09-20 14:17:26 +0700691# https://bugs.openjdk.java.net/browse/JDK-8015593
692java/beans/XMLEncoder/Test6570354.java macosx-all
693
vprovodind2f9ed82016-09-14 15:10:40 +0700694# https://bugs.openjdk.java.net/browse/JDK-8030123
695java/beans/Introspector/Test8027648.java linux-all
696
697############################################################################
698
699# jdk_io
700
701# Test ignored: This test has huge memory requirements
702java/io/ByteArrayOutputStream/MaxCapacity.java generic-all
703
Vitaly Provodin358c5e42017-04-13 14:51:48 +0700704# Test ignored: This test has huge memory requirements
705java/io/CharArrayReader/OverflowInRead.java generic-all
706
vprovodind2f9ed82016-09-14 15:10:40 +0700707# Test ignored: until 6492634 and 6501010 is fixed
708# http://bugs.java.com/view_bug.do?bug_id=6492634
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700709# https://bugs.openjdk.java.net/browse/JDK-6492634
vprovodind2f9ed82016-09-14 15:10:40 +0700710# http://bugs.java.com/view_bug.do?bug_id=6501010
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700711# https://bugs.openjdk.java.net/browse/JDK-6501010
vprovodind2f9ed82016-09-14 15:10:40 +0700712java/io/File/GetXSpace.java generic-all
713
714# Test ignored: Test truncates system files when run as root, see 7042603
715# http://bugs.java.com/view_bug.do?bug_id=7042603
716java/io/IOException/LastErrorString.java generic-all
717
Vitaly Provodin358c5e42017-04-13 14:51:48 +0700718# https://bugs.openjdk.java.net/browse/JDK-8169055
719java/io/Serializable/serialFilter/CheckInputOrderTest.java generic-all
720java/io/Serializable/serialFilter/FilterWithSecurityManagerTest.java generic-all
721java/io/Serializable/serialFilter/GlobalFilterTest.java generic-all
722java/io/Serializable/serialFilter/MixedFiltersTest.java generic-all
723java/io/Serializable/serialFilter/SerialFilterTest.java generic-all
724
725# Test ignored: This test has huge memory requirements
726java/io/StringBufferInputStream/OverflowInRead.java generic-all
727
vprovodind2f9ed82016-09-14 15:10:40 +0700728# Test ignored: This test requires console (/dev/tty) input, which is not supported by the current harness
729java/io/SystemInAvailable.java generic-all
730
vprovodin29bc7ae2016-09-13 12:12:33 +0700731############################################################################
732
733# jdk_lang
734
Vitaly Provodind20116b2017-02-13 09:17:14 +0700735# https://bugs.openjdk.java.net/browse/JDK-8029891
736java/lang/ClassLoader/deadlock/GetResource.java generic-all
737
vprovodin163dc6b2016-09-20 14:17:26 +0700738# Test ignored: This test has huge memory requirements
739java/lang/StringBuilder/HugeCapacity.java generic-all
740
741# https://bugs.openjdk.java.net/browse/JDK-8072130
742java/lang/instrument/BootClassPath/BootClassPathTest.sh macosx-all
743
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700744## Test ignored: until bug 6835233 dealt with
745## http://bugs.java.com/view_bug.do?bug_id=6835233
746# https://bugs.openjdk.java.net/browse/JDK-8166026
vprovodind2f9ed82016-09-14 15:10:40 +0700747java/lang/instrument/ParallelTransformerLoader.sh generic-all
748
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700749## Test ignored: 8078602
750## http://bugs.java.com/view_bug.do?bug_id=8078602
751# https://bugs.openjdk.java.net/browse/JDK-8078602
vprovodind2f9ed82016-09-14 15:10:40 +0700752java/lang/invoke/LFCaching/LFGarbageCollectedTest.java generic-all
753
vprovodin29bc7ae2016-09-13 12:12:33 +0700754############################################################################
755
756# jdk_management
757
vprovodin48c38b32016-11-23 14:44:22 +0700758# https://bugs.openjdk.java.net/browse/JDK-8038822
759java/lang/management/MemoryMXBean/LowMemoryTest2.sh generic-all
760
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700761## https://bugs.openjdk.java.net/browse/JDK-8170303
762# java/lang/management/ThreadMXBean/ThreadInfoArray.java generic-all
vprovodin534b3fa2016-11-25 16:43:40 +0700763
vprovodin163dc6b2016-09-20 14:17:26 +0700764# https://bugs.openjdk.java.net/browse/JDK-8160913
765javax/management/security/SecurityTest.java generic-all
766
Vitaly Provodine272fd82017-02-27 14:50:45 +0700767# https://bugs.openjdk.java.net/browse/JDK-8030616
Vitaly Provodin6c6b6f72017-03-09 15:49:14 +0700768sun/management/jmxremote/bootstrap/RmiBootstrapTest.sh generic-all
Vitaly Provodine272fd82017-02-27 14:50:45 +0700769
770# https://bugs.openjdk.java.net/browse/JDK-8028150
Vitaly Provodin43937952017-01-20 09:54:17 +0700771sun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700772
773############################################################################
774
775# jdk_jmx
776
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +0700777# https://bugs.openjdk.java.net/browse/JDK-8047295
778com/sun/management/OperatingSystemMXBean/GetCommittedVirtualMemorySize.java macosx-all
779
780# https://bugs.openjdk.java.net/browse/JDK-8030957
vprovodin29bc7ae2016-09-13 12:12:33 +0700781com/sun/management/OperatingSystemMXBean/GetProcessCpuLoad.java aix-all
782com/sun/management/OperatingSystemMXBean/GetSystemCpuLoad.java aix-all
783javax/management/MBeanServer/OldMBeanServerTest.java aix-all
784
Vitaly Provodin43937952017-01-20 09:54:17 +0700785# https://bugs.openjdk.java.net/browse/CODETOOLS-7901859
786com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java generic-all
787
788
vprovodin29bc7ae2016-09-13 12:12:33 +0700789############################################################################
790
791# jdk_math
792
793############################################################################
794
795# jdk_other
796
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700797# https://bugs.openjdk.java.net/browse/JDK-6988950
Vitaly Provodine272fd82017-02-27 14:50:45 +0700798demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700799
800# 7027502
801demo/jvmti/hprof/MonitorTest.java generic-all
802
Vitaly Provodin3bdb4f02017-01-26 15:41:30 +0700803# The demos are a separate bundle, they require a build which has jdk/demo
804demo/jvmti/gctest/Gctest.java generic-all
805demo/jvmti/heapTracker/HeapTrackerTest.java generic-all
806demo/jvmti/heapViewer/HeapViewerTest.java generic-all
807demo/jvmti/minst/MinstTest.java generic-all
808demo/jvmti/mtrace/TraceJFrame.java generic-all
809demo/jvmti/versionCheck/FailsWhenJvmtiVersionDiffers.java generic-all
810demo/jvmti/waiters/WaitersTest.java generic-all
811
Vitaly Provodinc67959d2017-03-03 09:29:14 +0700812# https://bugs.openjdk.java.net/browse/JDK-8151352
813sample/chatserver/ChatTest.java generic-all
814sample/mergesort/MergeSortTest.java generic-all
815
vprovodin29bc7ae2016-09-13 12:12:33 +0700816# 8027973
817javax/xml/jaxp/transform/jdk8004476/XSLTExFuncTest.java windows-all
818
vprovodind2f9ed82016-09-14 15:10:40 +0700819# no printer found
820javax/print/CheckDupFlavor.java generic-all
821javax/print/PrintServiceLookup/CountPrintServices.java generic-all
822javax/print/attribute/AttributeTest.java generic-all
823javax/print/attribute/GetCopiesSupported.java generic-all
824javax/print/attribute/SidesPageRangesTest.java generic-all
825javax/print/attribute/SupportedPrintableAreas.java generic-all
826
vprovodincfaf05a2016-10-04 09:45:22 +0700827# it looks like the tests spend a lot of time on Windows
828javax/print/attribute/Chroma.java generic-all
829javax/print/attribute/ChromaticityValues.java generic-all
830javax/print/attribute/CollateAttr.java generic-all
831javax/print/attribute/MediaMappingsTest.java generic-all
832javax/print/attribute/PSCopiesFlavorTest.java generic-all
833javax/print/attribute/autosense/PrintAutoSenseData.java generic-all
834
Vitaly Provodinfcc9d8d2016-12-07 16:41:51 +0700835# hangs on Windows
836javax/print/PrintSE/PrintSE.sh windows-all
837
vprovodin29bc7ae2016-09-13 12:12:33 +0700838############################################################################
839
840# jdk_net
841
842# Filed 7052625
843com/sun/net/httpserver/bugs/6725892/Test.java generic-all
844
845# failing on vista 32/64 on nightly
846# 7102702
847java/net/PortUnreachableException/OneExceptionOnly.java windows-all
848
849# 7148829
850sun/net/InetAddress/nameservice/simple/CacheTest.java generic-all
851sun/net/InetAddress/nameservice/simple/DefaultCaching.java generic-all
852
Vitaly Provodin82d94092017-04-21 10:47:21 +0700853# https://bugs.openjdk.java.net/browse/JDK-8166362
854sun/net/www/http/HttpClient/B8025710.java generic-all
855
Vitaly Provodin43937952017-01-20 09:54:17 +0700856# https://bugs.openjdk.java.net/browse/JDK-8146257
857sun/net/www/protocol/jar/B4957695.java generic-all
858
vprovodinc9acc382016-11-18 16:49:57 +0700859# https://bugs.openjdk.java.net/browse/JDK-6602831
860java/net/Inet6Address/B6206527.java generic-all
861
vprovodin48c38b32016-11-23 14:44:22 +0700862# https://bugs.openjdk.java.net/browse/JDK-8065419
863java/net/Inet4Address/textToNumericFormat.java generic-all
864
vprovodin29bc7ae2016-09-13 12:12:33 +0700865# 7122846
866java/net/MulticastSocket/NoLoopbackPackets.java macosx-all
867java/net/MulticastSocket/SetLoopbackMode.java macosx-all
868
869# 7145658
870java/net/MulticastSocket/Test.java macosx-all
871
872# 7143960
873java/net/DatagramSocket/SendDatagramToBadAddress.java macosx-all
874
875############################################################################
876
877# jdk_nio
878
vprovodin48c38b32016-11-23 14:44:22 +0700879# https://bugs.openjdk.java.net/browse/JDK-8068693
880java/nio/channels/AsyncCloseAndInterrupt.java generic-all
881
vprovodin29bc7ae2016-09-13 12:12:33 +0700882# 6963118
883java/nio/channels/Selector/Wakeup.java windows-all
884
885# 7141822
886java/nio/channels/DatagramChannel/ChangingAddress.java macosx-all
887
vprovodinf10a8df2016-09-16 14:43:40 +0700888# https://bugs.openjdk.java.net/browse/JDK-8137230
889java/nio/channels/FileChannel/LoopingTruncate.java generic-all
890
Vitaly Provodin43937952017-01-20 09:54:17 +0700891## the test requires ~4Gb diskspace
892## it often fails by java.io.IOException: No space left on device
893## and affect other tests
894java/nio/channels/FileChannel/Size.java generic-all
895
896# https://bugs.openjdk.java.net/browse/JDK-8140263
897java/nio/channels/FileChannel/Transfer.java macosx-all
898
vprovodin29bc7ae2016-09-13 12:12:33 +0700899# 7132677
900java/nio/channels/Selector/OutOfBand.java macosx-all
901
902# 7158947, Solaris 11
903java/nio/file/WatchService/Basic.java solaris-all
904java/nio/file/WatchService/LotsOfEvents.java solaris-all
905
Vitaly Provodin82d94092017-04-21 10:47:21 +0700906# https://bugs.openjdk.java.net/browse/JDK-8156511
907java/nio/file/WatchService/DeleteInterference.java generic-all
908
vprovodin29bc7ae2016-09-13 12:12:33 +0700909############################################################################
910
911# jdk_rmi
912
Vitaly Provodin6c6b6f72017-03-09 15:49:14 +0700913# https://bugs.openjdk.java.net/browse/JDK-8085192
914java/rmi/activation/Activatable/checkRegisterInLog/CheckRegisterInLog.java generic-all
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +0700915java/rmi/activation/Activatable/forceLogSnapshot/ForceLogSnapshot.java generic-all
916java/rmi/activation/Activatable/inactiveGroup/InactiveGroup.java generic-all
Vitaly Provodin0f8e8272017-03-23 09:09:02 +0700917java/rmi/activation/Activatable/lookupActivationSystem/LookupActivationSystem.java generic-all
Vitaly Provodin6c6b6f72017-03-09 15:49:14 +0700918java/rmi/activation/Activatable/restartService/RestartService.java generic-all
919java/rmi/activation/CommandEnvironment/SetChildEnv.java generic-all
920
Vitaly Provodin82d94092017-04-21 10:47:21 +0700921# https://bugs.openjdk.java.net/browse/JDK-8085192
922java/rmi/activation/Activatable/restartCrashedService/RestartCrashedService.java generic-all
923
vprovodin29bc7ae2016-09-13 12:12:33 +0700924# 7140992
925java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java generic-all
926
vprovodin4376b4e2016-09-28 10:22:26 +0700927# https://bugs.openjdk.java.net/browse/JDK-8029360
928java/rmi/transport/dgcDeadLock/DGCDeadLock.java generic-all
929
vprovodin29bc7ae2016-09-13 12:12:33 +0700930# 7146541
931java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
932
933# 7191877
934java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all
935
936# 7195095
937sun/rmi/transport/proxy/EagerHttpFallback.java generic-all
938
939############################################################################
940
941# jdk_security
942
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700943## https://bugs.openjdk.java.net/browse/JDK-7054428
944#java/security/SecureClassLoader/DefineClassByteBuffer.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700945
vprovodind2f9ed82016-09-14 15:10:40 +0700946# Test ignored: Must set up KDC and setup Kerberos configuration file
947javax/security/auth/kerberos/KerberosHashEqualsTest.java generic-all
948javax/security/auth/kerberos/KerberosTixDateTest.java generic-all
949
950# Test ignored: run these by hand
951com/sun/security/auth/callback/TextCallbackHandler/Password.java generic-all
952com/sun/security/auth/callback/TextCallbackHandler/Default.java generic-all
953
954# Test ignored: see runwjaas.csh for instructions for how to run this test
955com/sun/security/sasl/gsskerb/NoSecurityLayer.java generic-all
956com/sun/security/sasl/gsskerb/ConfSecurityLayer.java generic-all
957com/sun/security/sasl/gsskerb/AuthOnly.java generic-all
958
vprovodin29bc7ae2016-09-13 12:12:33 +0700959# 7157786
960sun/security/pkcs11/ec/TestKeyFactory.java generic-all
961
962# 7164518: no PortUnreachableException on Mac
963sun/security/krb5/auto/Unreachable.java macosx-all
964
965# 7147060
966com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
967
968# 6988842: 4 tests failing on Solaris 5.10
969sun/security/pkcs11/Secmod/AddPrivateKey.java solaris-all
970sun/security/pkcs11/ec/ReadCertificates.java solaris-all
971sun/security/pkcs11/ec/ReadPKCS12.java solaris-all
972sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java solaris-all
973
Vitaly Provodind20116b2017-02-13 09:17:14 +0700974# https://bugs.openjdk.java.net/browse/JDK-8074580
975sun/security/pkcs11/rsa/TestKeyPairGenerator.java generic-all
976
vprovodin29bc7ae2016-09-13 12:12:33 +0700977# 7041639, Solaris DSA keypair generation bug
978java/security/KeyPairGenerator/SolarisShortDSA.java solaris-all
979sun/security/tools/keytool/standard.sh solaris-all
980
981# 8026393
982sun/security/tools/jarsigner/warnings/BadKeyUsageTest.java generic-all
983
984# 8158827
985sun/security/krb5/auto/tools/KinitConfPlusProps.java windows-all
986
987############################################################################
988
vprovodin29bc7ae2016-09-13 12:12:33 +0700989# jdk_swing
990
vprovodin163dc6b2016-09-20 14:17:26 +0700991# https://bugs.openjdk.java.net/browse/JDK-8060765
vprovodin48c38b32016-11-23 14:44:22 +0700992javax/swing/AbstractButton/6711682/bug6711682.java generic-all
vprovodinc9acc382016-11-18 16:49:57 +0700993
994# https://bugs.openjdk.java.net/browse/JDK-8143021
995javax/swing/JColorChooser/Test6541987.java generic-all
996
997# https://bugs.openjdk.java.net/browse/JDK-8076178
998javax/swing/JColorChooser/Test7194184.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700999
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001000# https://bugs.openjdk.java.net/browse/JDK-8171302
1001javax/swing/JComboBox/4743225/bug4743225.java generic-all
1002
1003# https://bugs.openjdk.java.net/browse/JDK-8028707
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001004javax/swing/JComboBox/6236162/bug6236162.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001005
vprovodinf10a8df2016-09-16 14:43:40 +07001006# https://bugs.openjdk.java.net/browse/JDK-8040797
1007javax/swing/JComboBox/8032878/bug8032878.java generic-all
1008
vprovodin163dc6b2016-09-20 14:17:26 +07001009# https://bugs.openjdk.java.net/browse/JDK-8033069
1010javax/swing/JComboBox/8033069/bug8033069NoScrollBar.java generic-all
1011
vprovodin798153c2016-09-30 14:52:04 +07001012# https://bugs.openjdk.java.net/browse/JDK-8163367
1013javax/swing/JComboBox/8033069/bug8033069ScrollBar.java generic-all
1014
vprovodinc9acc382016-11-18 16:49:57 +07001015# https://bugs.openjdk.java.net/browse/JDK-8169953
1016javax/swing/JComboBox/8057893/bug8057893.java windows-all
1017
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001018# https://bugs.openjdk.java.net/browse/JDK-8136998
1019javax/swing/JComboBox/8136998/bug8136998.java generic-all
1020
vprovodinf10a8df2016-09-16 14:43:40 +07001021# http://bugs.java.com/view_bug.do?bug_id=8067986
vprovodin4376b4e2016-09-28 10:22:26 +07001022javax/swing/JComboBox/ConsumedKeyTest/ConsumedKeyTest.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +07001023
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001024# https://bugs.openjdk.java.net/browse/JDK-8172337
1025javax/swing/JComponent/6683775/bug6683775.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +07001026
vprovodin4376b4e2016-09-28 10:22:26 +07001027# https://bugs.openjdk.java.net/browse/JDK-7190978
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001028javax/swing/JComponent/7154030/bug7154030.java generic-all
1029
Vitaly Provodin43937952017-01-20 09:54:17 +07001030# https://bugs.openjdk.java.net/browse/JDK-8016559
1031javax/swing/JEditorPane/6917744/bug6917744.java windows-all
1032
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001033# https://bugs.openjdk.java.net/browse/JDK-8042380
1034javax/swing/JFileChooser/4524490/bug4524490.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +07001035
vprovodin163dc6b2016-09-20 14:17:26 +07001036# https://bugs.openjdk.java.net/browse/JDK-8058231
1037javax/swing/JFileChooser/6396844/TwentyThousandTest.java generic-all
1038
1039# https://bugs.openjdk.java.net/browse/JDK-8087110
1040javax/swing/JFileChooser/8002077/bug8002077.java generic-all
1041
vprovodinc9acc382016-11-18 16:49:57 +07001042# https://bugs.openjdk.java.net/browse/JDK-8169954
Vitaly Provodin5bf2ba82017-03-07 15:55:46 +07001043javax/swing/JFileChooser/8021253/bug8021253.java generic-all
vprovodinc9acc382016-11-18 16:49:57 +07001044
vprovodinf10a8df2016-09-16 14:43:40 +07001045# https://bugs.openjdk.java.net/browse/JDK-8064715
1046javax/swing/JFileChooser/8062561/bug8062561.java generic-all
1047
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001048# https://bugs.openjdk.java.net/browse/JDK-8170721
1049javax/swing/JFrame/4962534/bug4962534.html macosx-all
Vitaly Provodin5d023a32016-12-06 10:31:27 +07001050
vprovodinc9acc382016-11-18 16:49:57 +07001051# https://bugs.openjdk.java.net/browse/JDK-8169955
1052javax/swing/JFrame/8016356/bug8016356.java windows-all
1053
vprovodin8616ab32016-10-19 18:52:13 +07001054# https://bugs.openjdk.java.net/browse/JDK-8007719
1055javax/swing/JInternalFrame/5066752/bug5066752.java generic-all
1056
vprovodinf10a8df2016-09-16 14:43:40 +07001057# https://bugs.openjdk.java.net/browse/JDK-8032568
1058javax/swing/JInternalFrame/8020708/bug8020708.java generic-all
1059
vprovodin163dc6b2016-09-20 14:17:26 +07001060# https://bugs.openjdk.java.net/browse/JDK-8160880
vprovodin798153c2016-09-30 14:52:04 +07001061javax/swing/JInternalFrame/Test6325652.java generic-all
1062
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001063# https://bugs.openjdk.java.net/browse/JDK-8172535
1064javax/swing/JInternalFrame/Test6505027.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001065
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001066# https://bugs.openjdk.java.net/browse/JDK-8040914
1067javax/swing/JLabel/6596966/bug6596966.java generic-all
1068
vprovodin163dc6b2016-09-20 14:17:26 +07001069# https://bugs.openjdk.java.net/browse/JDK-8003972
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001070javax/swing/JList/6462008/bug6462008.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001071
vprovodinc9acc382016-11-18 16:49:57 +07001072# https://bugs.openjdk.java.net/browse/JDK-8040915
1073javax/swing/JMenu/4515762/bug4515762.java generic-all
1074
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001075https://bugs.openjdk.java.net/browse/JDK-8171998
1076javax/swing/JMenu/4692443/bug4692443.java windows-all
1077
vprovodinc9acc382016-11-18 16:49:57 +07001078# https://bugs.openjdk.java.net/browse/JDK-8142534
1079javax/swing/JMenu/8072900/WrongSelectionOnMouseOver.java generic-all
1080
Vitaly Provodin965f53e2017-03-27 15:57:07 +07001081# https://bugs.openjdk.java.net/browse/JDK-8158496
1082javax/swing/JMenuBar/4750590/bug4750590.java windows-all
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001083
vprovodinc9acc382016-11-18 16:49:57 +07001084# https://bugs.openjdk.java.net/browse/JDK-8040916
1085javax/swing/JMenuItem/4171437/bug4171437.java generic-all
1086
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001087# https://bugs.openjdk.java.net/browse/JDK-8172536
1088javax/swing/JMenuItem/4654927/bug4654927.java windows-all
vprovodin8616ab32016-10-19 18:52:13 +07001089
vprovodin163dc6b2016-09-20 14:17:26 +07001090# https://bugs.openjdk.java.net/browse/JDK-8025083
1091javax/swing/JMenuItem/6209975/bug6209975.java generic-all
1092
Vitaly Provodin5d023a32016-12-06 10:31:27 +07001093https://bugs.openjdk.java.net/browse/JDK-8139169
1094javax/swing/JMenuItem/ActionListenerCalledTwice/ActionListenerCalledTwiceTest.java macosx-all
1095
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001096# https://bugs.openjdk.java.net/browse/JDK-7124548
1097javax/swing/JOptionPane/6464022/bug6464022.java macosx-all
1098
vprovodinc9acc382016-11-18 16:49:57 +07001099# https://bugs.openjdk.java.net/browse/JDK-8040917
1100javax/swing/JPopupMenu/4458079/bug4458079.java generic-all
1101
vprovodina8c69352016-09-22 11:20:03 +07001102# https://bugs.openjdk.java.net/browse/JDK-8064915
vprovodin02ff3162016-10-28 10:08:30 +07001103# https://bugs.openjdk.java.net/browse/JDK-8074385
1104javax/swing/JPopupMenu/4966112/bug4966112.java generic-all
vprovodina8c69352016-09-22 11:20:03 +07001105
vprovodind781c422016-10-13 09:31:09 +07001106# https://bugs. openjdk.java.net/browse/JDK-7184956
vprovodincfaf05a2016-10-04 09:45:22 +07001107javax/swing/JPopupMenu/6800513/bug6800513.java generic-all
1108
vprovodinc9acc382016-11-18 16:49:57 +07001109# https://bugs.openjdk.java.net/browse/JDK-8042378
vprovodin163dc6b2016-09-20 14:17:26 +07001110# https://bugs.openjdk.java.net/browse/JDK-8156460
vprovodinc9acc382016-11-18 16:49:57 +07001111javax/swing/JPopupMenu/6827786/bug6827786.java generic-all
1112
1113# https://bugs.openjdk.java.net/browse/JDK-8169956
1114javax/swing/JPopupMenu/6987844/bug6987844.java windows-all
vprovodin163dc6b2016-09-20 14:17:26 +07001115
vprovodina8c69352016-09-22 11:20:03 +07001116# https://bugs.openjdk.java.net/browse/JDK-7185563
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001117# https://bugs.openjdk.java.net/browse/JDK-8171381
1118javax/swing/JPopupMenu/7156657/bug7156657.java generic-all
vprovodina8c69352016-09-22 11:20:03 +07001119
vprovodin163dc6b2016-09-20 14:17:26 +07001120# https://bugs.openjdk.java.net/browse/JDK-8064920
vprovodin4376b4e2016-09-28 10:22:26 +07001121javax/swing/JRadioButton/8033699/bug8033699.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001122
Vitaly Provodine38a0f02017-02-01 07:59:08 +03001123# https://bugs.openjdk.java.net/browse/JDK-8136371
1124javax/swing/JRadioButton/8075609/bug8075609.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +07001125
vprovodinc9acc382016-11-18 16:49:57 +07001126# https://bugs.openjdk.java.net/browse/JDK-8042381
1127javax/swing/JRootPane/4670486/bug4670486.java generic-all
1128
1129# https://bugs.openjdk.java.net/browse/JDK-8145647 linux
1130# https://bugs.openjdk.java.net/browse/JDK-8169957
1131javax/swing/JScrollBar/4708809/bug4708809.java generic-all
vprovodina8c69352016-09-22 11:20:03 +07001132
Vitaly Provodin36f14f22016-12-22 16:58:00 +07001133## https://bugs.openjdk.java.net/browse/JDK-8024407
1134#javax/swing/JScrollBar/7163696/Test7163696.java macosx-all
vprovodin163dc6b2016-09-20 14:17:26 +07001135
Vitaly Provodin965f53e2017-03-27 15:57:07 +07001136# https://bugs.openjdk.java.net/browse/JDK-8028618
1137javax/swing/JScrollBar/bug4202954/bug4202954.java windows-all
1138
vprovodinc9acc382016-11-18 16:49:57 +07001139# https://bugs.openjdk.java.net/browse/JDK-8169960
1140javax/swing/JScrollPane/HorizontalMouseWheelOnShiftPressed/HorizontalMouseWheelOnShiftPressed.java windows-all
1141
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001142# https://bugs.openjdk.java.net/browse/JDK-8172539
Vitaly Provodin43937952017-01-20 09:54:17 +07001143javax/swing/JSlider/6348946/bug6348946.java windows-all
vprovodin798153c2016-09-30 14:52:04 +07001144
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001145# https://bugs.openjdk.java.net/browse/JDK-8172408
1146javax/swing/JSpinner/4973721/bug4973721.java generic-all
vprovodin8616ab32016-10-19 18:52:13 +07001147
vprovodinc9acc382016-11-18 16:49:57 +07001148# https://bugs.openjdk.java.net/browse/JDK-8169958
1149javax/swing/JSpinner/5012888/bug5012888.java windows-all
1150
1151# https://bugs.openjdk.java.net/browse/JDK-8019935
1152javax/swing/JSplitPane/4885629/bug4885629.java generic-all
1153
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001154# https://bugs.openjdk.java.net/browse/JDK-7033533
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +07001155javax/swing/JTable/4220171/bug4220171.java linux-all
Vitaly Provodin1d378fa2017-03-01 16:03:04 +07001156javax/swing/JComboBox/4199622/bug4199622.java linux-all
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +07001157javax/swing/JPopupMenu/6495920/bug6495920.java linux-all
1158javax/swing/Security/6657138/ComponentTest.java linux-all
1159
1160
vprovodinc9acc382016-11-18 16:49:57 +07001161
1162# https://bugs.openjdk.java.net/browse/JDK-8169959
1163javax/swing/JTable/6263446/bug6263446.java windows-all
1164
1165# https://bugs.openjdk.java.net/browse/JDK-8169952
1166javax/swing/JTableHeader/6884066/bug6884066.java windows-all
vprovodin4376b4e2016-09-28 10:22:26 +07001167
jetbrains_tester96adf012016-12-02 14:15:42 +07001168# https://bugs.openjdk.java.net/browse/JDK-7179842
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001169javax/swing/JTableHeader/6889007/bug6889007.java generic-all
jetbrains_tester96adf012016-12-02 14:15:42 +07001170
vprovodin534b3fa2016-11-25 16:43:40 +07001171# https://bugs.openjdk.java.net/browse/JDK-8170260
1172javax/swing/JTabbedPane/4361477/bug4361477.java generic-all
1173
Vitaly Provodin43937952017-01-20 09:54:17 +07001174# https://bugs.openjdk.java.net/browse/JDK-8064922
1175# https://bugs.openjdk.java.net/browse/JDK-8171997
1176javax/swing/JTabbedPane/4624207/bug4624207.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001177
1178# https://bugs.openjdk.java.net/browse/JDK-8028281
1179javax/swing/JTabbedPane/7024235/Test7024235.java macosx-all
1180
vprovodinf10a8df2016-09-16 14:43:40 +07001181# https://bugs.openjdk.java.net/browse/JDK-8051591
vprovodin4376b4e2016-09-28 10:22:26 +07001182javax/swing/JTabbedPane/8007563/Test8007563.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +07001183
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001184# https://bugs.openjdk.java.net/browse/JDK-8145645
1185javax/swing/JTextField/8036819/bug8036819.java generic-all
1186
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001187# https://bugs.openjdk.java.net/browse/JDK-8172407
1188javax/swing/JToolTip/4846413/bug4846413.java generic-all
1189
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001190# https://bugs.openjdk.java.net/browse/JDK-8029682
1191javax/swing/JTree/4330357/bug4330357.java windows-all
1192
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001193# https://bugs.openjdk.java.net/browse/JDK-8172065
Vitaly Provodin43937952017-01-20 09:54:17 +07001194javax/swing/JTree/4908142/bug4908142.java generic-all
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001195
1196# https://bugs.openjdk.java.net/browse/JDK-8172063
1197javax/swing/JTree/4927934/bug4927934.java windows-all
1198
vprovodinf10a8df2016-09-16 14:43:40 +07001199# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8011259
1200javax/swing/JTree/8003400/Test8003400.java generic-all
1201
vprovodina8c69352016-09-22 11:20:03 +07001202# https://bugs.openjdk.java.net/browse/JDK-7105119
1203javax/swing/MultiUIDefaults/4300666/bug4300666.java macosx-all
1204
vprovodin163dc6b2016-09-20 14:17:26 +07001205# https://bugs.openjdk.java.net/browse/JDK-8065099
1206javax/swing/PopupFactory/6276087/NonOpaquePopupMenuTest.java macosx-all
1207
vprovodinf10a8df2016-09-16 14:43:40 +07001208# http://bugs.java.com/view_bug.do?bug_id=8008119
1209javax/swing/RepaintManager/IconifyTest/IconifyTest.java generic-all
1210
vprovodin163dc6b2016-09-20 14:17:26 +07001211# https://bugs.openjdk.java.net/browse/JDK-8015602
1212javax/swing/SpringLayout/4726194/bug4726194.java macosx-all
1213
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001214# https://bugs.openjdk.java.net/browse/JDK-8172064
1215javax/swing/SwingUtilities/4917669/bug4917669.java windows-all
1216
Vitaly Provodind20116b2017-02-13 09:17:14 +07001217# https://bugs.openjdk.java.net/browse/JDK-8072110
1218javax/swing/SwingUtilities/7088744/bug7088744.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001219
vprovodina8c69352016-09-22 11:20:03 +07001220# https://bugs.openjdk.java.net/browse/JDK-8079253
1221javax/swing/SwingUtilities/TestBadBreak/TestBadBreak.java linux-all
1222
jetbrains_tester96adf012016-12-02 14:15:42 +07001223# https://bugs.openjdk.java.net/browse/JDK-8167009
1224javax/swing/ToolTipManager/Test6256140.java generic-all
1225
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001226# https://bugs.openjdk.java.net/browse/JDK-8042383
1227javax/swing/plaf/basic/BasicMenuUI/4983388/bug4983388.java generic-all
1228
Vitaly Provodin43937952017-01-20 09:54:17 +07001229# https://bugs.openjdk.java.net/browse/JDK-8137101
1230javax/swing/plaf/basic/BasicHTML/4251579/bug4251579.java generic-all
1231
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +07001232# https://bugs.openjdk.java.net/browse/JDK-8140237
1233javax/swing/plaf/nimbus/8041642/bug8041642.java generic-all
vprovodin8616ab32016-10-19 18:52:13 +07001234
vprovodin163dc6b2016-09-20 14:17:26 +07001235# https://bugs.openjdk.java.net/browse/JDK-8160438
1236javax/swing/plaf/nimbus/8057791/bug8057791.java macosx-all
1237
Vitaly Provodin5d023a32016-12-06 10:31:27 +07001238# https://bugs.openjdk.java.net/browse/JDK-8170722
1239javax/swing/plaf/synth/7158712/bug7158712.java generic-all
1240
vprovodin8616ab32016-10-19 18:52:13 +07001241# https://bugs.openjdk.java.net/browse/JDK-8081478
1242javax/swing/plaf/synth/SynthButtonUI/6276188/bug6276188.java generic-all
1243
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001244# https://bugs.openjdk.java.net/browse/JDK-8172071
1245javax/swing/plaf/windows/WindowsRootPaneUI/WrongAltProcessing/WrongAltProcessing.java windows-all
1246
vprovodina8c69352016-09-22 11:20:03 +07001247# https://bugs.openjdk.java.net/browse/JDK-8130895
1248javax/swing/system/6799345/TestShutdown.java linux-all
1249
jetbrains_tester96adf012016-12-02 14:15:42 +07001250# https://bugs.openjdk.java.net/browse/JDK-8003533
1251javax/swing/text/CSSBorder/6796710/bug6796710.java generic-all
1252
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001253# https://bugs.openjdk.java.net/browse/JDK-8063107
vprovodinf10a8df2016-09-16 14:43:40 +07001254javax/swing/text/DefaultEditorKit/4278839/bug4278839.java generic-all
1255
vprovodin02ff3162016-10-28 10:08:30 +07001256# https://bugs.openjdk.java.net/browse/JDK-8050988
1257javax/swing/text/GlyphPainter2/6427244/bug6427244.java generic-all
1258
Vitaly Provodin36f14f22016-12-22 16:58:00 +07001259## https://bugs.openjdk.java.net/browse/JDK-7147408
1260#javax/swing/text/StyledEditorKit/4506788/bug4506788.java generic-all
vprovodin798153c2016-09-30 14:52:04 +07001261
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001262# https://bugs.openjdk.java.net/browse/JDK-8041944
1263javax/swing/text/View/8014863/bug8014863.java generic-all
1264
vprovodin8616ab32016-10-19 18:52:13 +07001265# https://bugs.openjdk.java.net/browse/JDK-7033533
1266javax/swing/text/html/CSS/4530474/bug4530474.java generic-all
1267
vprovodin163dc6b2016-09-20 14:17:26 +07001268# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8076178
1269javax/swing/text/html/HTMLEditorKit/5043626/bug5043626.java generic-all
1270
1271# https://bugs.openjdk.java.net/browse/JDK-8022535
vprovodin4376b4e2016-09-28 10:22:26 +07001272javax/swing/text/html/parser/Test8017492.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001273
vprovodind2f9ed82016-09-14 15:10:40 +07001274# https://bugs.openjdk.java.net/browse/JDK-6962725
1275javax/swing/JFileChooser/6738668/bug6738668.java generic-all
1276
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001277# https://bugs.openjdk.java.net/browse/JDK-8049313
1278javax/swing/JTable/7068740/bug7068740.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +07001279
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001280# https://bugs.openjdk.java.net/browse/JDK-8032895
1281javax/swing/JTextArea/4697612/bug4697612.java linux-all
vprovodind2f9ed82016-09-14 15:10:40 +07001282
vprovodin29bc7ae2016-09-13 12:12:33 +07001283############################################################################
1284
1285# jdk_text
1286
1287############################################################################
1288
1289# jdk_time
1290
1291############################################################################
1292
1293# jdk_tools
1294
1295# Tests take too long, on sparcs see 7143279
1296tools/pack200/CommandLineTests.java solaris-all, macosx-all
1297tools/pack200/Pack200Test.java solaris-all, macosx-all
1298
Vitaly Provodine38a0f02017-02-01 07:59:08 +03001299# https://bugs.openjdk.java.net/browse/JDK-8140611
1300tools/pack200/UnpackerMemoryTest.java linux-all
1301
Vitaly Provodine272fd82017-02-27 14:50:45 +07001302# https://bugs.openjdk.java.net/browse/JDK-8130392
Vitaly Provodin3bdb4f02017-01-26 15:41:30 +07001303tools/launcher/FXLauncherTest.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +07001304
1305############################################################################
1306
1307# jdk_jdi
1308
1309############################################################################
1310
1311# jdk_util
1312
1313# Filed 6772009
1314java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
1315
vprovodind2f9ed82016-09-14 15:10:40 +07001316# Test ignored: Bug fix temporarily removed as it uncovered other bugs (4992226)
1317java/util/AbstractList/CheckForComodification.java generic-all
1318
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001319## https://bugs.openjdk.java.net/browse/JDK-8060093
1320# java/util/Currency/CurrencyTest.java generic-all
1321# java/util/Currency/ValidateISO4217.java generic-all
vprovodin798153c2016-09-30 14:52:04 +07001322
vprovodind2f9ed82016-09-14 15:10:40 +07001323# Test ignored: until 6842022 is resolved
1324java/util/ResourceBundle/RestrictedBundleTest.java generic-all
1325
1326#Test ignored: 6876961
1327java/util/ResourceBundle/Test4300693.java generic-all
1328
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +07001329#Test ignored: until 6842353 is resolved
1330# https://bugs.openjdk.java.net/browse/JDK-6842353
vprovodind2f9ed82016-09-14 15:10:40 +07001331java/util/WeakHashMap/GCDuringIteration.java generic-all
1332
1333# Test ignored: runs for hours and eats up 7 Gigabytes of disk space
1334java/util/zip/3GBZipFiles.sh generic-all
1335
vprovodin29bc7ae2016-09-13 12:12:33 +07001336############################################################################
1337
1338# svc_tools
1339
1340# 8031482
1341sun/tools/jcmd/TestJcmdSanity.java windows-all
1342
1343# 6456333
1344sun/tools/jps/TestJpsJarRelative.java generic-all
1345
Vitaly Provodind20116b2017-02-13 09:17:14 +07001346# https://bugs.openjdk.java.net/browse/JDK-8165727
1347sun/tools/jstatd/TestJstatdExternalRegistry.java generic-all
1348
vprovodin29bc7ae2016-09-13 12:12:33 +07001349############################################################################
vprovodin48c38b32016-11-23 14:44:22 +07001350
1351# 1. cannot be executed under TC against Oracle JDK
1352# located at directory containing spaces in its name
1353# 2. it requires jar which does not exist in our OpenJDK builds
1354# 3.
vprovodineaabe412016-11-30 14:35:53 +07001355javax/imageio/stream/StreamCloserLeak/run_test.sh generic-all
1356
1357# https://bugs.openjdk.java.net/browse/JDK-8011371
1358sun/awt/datatransfer/SuplementaryCharactersTransferTest.java generic-all
1359
1360# https://bugs.openjdk.java.net/browse/JDK-8142540
1361sun/awt/dnd/8024061/bug8024061.java linux-all
1362
Vitaly Provodin965f53e2017-03-27 15:57:07 +07001363# https://bugs.openjdk.java.net/browse/JDK-8042098
1364sun/java2d/AcceleratedXORModeTest.java windows-all
1365
Vitaly Provodin43937952017-01-20 09:54:17 +07001366# https://bugs.openjdk.java.net/browse/JDK-8172888
1367sun/java2d/DirectX/InfiniteValidationLoopTest/InfiniteValidationLoopTest.java windows-all
1368
vprovodineaabe412016-11-30 14:35:53 +07001369# https://bugs.openjdk.java.net/browse/JDK-8022403
1370sun/java2d/DirectX/OnScreenRenderingResizeTest/OnScreenRenderingResizeTest.java macosx-all
1371
1372# https://bugs.openjdk.java.net/browse/JDK-7148533
1373sun/java2d/DirectX/OverriddenInsetsTest/OverriddenInsetsTest.java generic-all
1374
1375# https://bugs.openjdk.java.net/browse/JDK-8031433
1376sun/java2d/OpenGL/GradientPaints.java generic-all
1377
1378# https://bugs.openjdk.java.net/browse/JDK-8144033
1379sun/java2d/DirectX/RenderingToCachedGraphicsTest/RenderingToCachedGraphicsTest.java generic-all
1380
Vitaly Provodin43937952017-01-20 09:54:17 +07001381# https://bugs.openjdk.java.net/browse/JDK-7124403
1382sun/java2d/GdiRendering/InsetClipping.java generic-all
1383
vprovodineaabe412016-11-30 14:35:53 +07001384# https://bugs.openjdk.java.net/browse/JDK-8047703
1385sun/java2d/SunGraphics2D/DrawImageBilinear.java generic-all
1386
1387# https://bugs.openjdk.java.net/browse/JDK-6258137
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001388# https://bugs.openjdk.java.net/browse/JDK-6986565
1389sun/java2d/SunGraphics2D/PolyVertTest.java generic-all
vprovodineaabe412016-11-30 14:35:53 +07001390
1391# https://bugs.openjdk.java.net/browse/JDK-7124403
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001392# https://bugs.openjdk.java.net/browse/JDK-6992007
1393sun/java2d/SunGraphics2D/SimplePrimQuality.java generic-all
vprovodineaabe412016-11-30 14:35:53 +07001394
1395# https://bugs.openjdk.java.net/browse/JDK-8159142
1396sun/java2d/SunGraphics2D/SourceClippingBlitTest/SourceClippingBlitTest.java generic-all
1397
1398# https://bugs.openjdk.java.net/browse/JDK-7184899
Vitaly Provodin20b63f62016-12-15 14:19:24 +07001399# it blocks jtreg on Windows
1400sun/java2d/X11SurfaceData/SharedMemoryPixmapsTest/SharedMemoryPixmapsTest.sh generic-all
vprovodineaabe412016-11-30 14:35:53 +07001401
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001402# https://bugs.openjdk.java.net/browse/JDK-8171303
1403sun/java2d/pipe/InterpolationQualityTest.java generic-all
1404
Vitaly Provodin1fe8d602017-03-04 06:42:00 +07001405# https://bugs.openjdk.java.net/browse/JDK-8058767
1406sun/jvmstat/monitor/MonitoredVm/MonitorVmStartTerminate.java windows-all
1407
vprovodineaabe412016-11-30 14:35:53 +07001408# https://bugs.openjdk.java.net/browse/JDK-8046046
1409sun/security/pkcs11/Signature/TestDSAKeyLength.java generic-all
1410
1411# https://bugs.openjdk.java.net/browse/JDK-8142541
1412sun/security/pkcs11/ec/TestECDH.java linux-all
1413sun/security/pkcs11/ec/TestECDSA.java linux-all
1414sun/security/pkcs11/ec/TestECGenSpec.java linux-all
1415
1416# https://bugs.openjdk.java.net/browse/JDK-7057022
1417sun/security/pkcs11/fips/ClientJSSEServerJSSE.java generic-all
1418
1419# https://bugs.openjdk.java.net/browse/JDK-8160071
1420sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java generic-all
1421
1422# https://bugs.openjdk.java.net/browse/JDK-8039280
1423sun/security/provider/PolicyFile/GrantAllPermToExtWhenNoPolicy.java generic-all
1424
1425# https://bugs.openjdk.java.net/browse/JDK-8033271
1426sun/security/provider/PolicyParser/ExtDirs.java generic-all
1427sun/security/provider/PolicyParser/ExtDirsChange.java generic-all
1428sun/security/provider/PolicyParser/ExtDirsDefaultPolicy.java generic-all
1429sun/security/provider/PolicyParser/PrincipalExpansionError.java generic-all
1430sun/security/tools/keytool/i18n.sh generic-all
1431
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001432# https://bugs.openjdk.java.net/browse/JDK-8130151
1433sun/security/provider/SecureRandom/StrongSecureRandom.java macosx-all
1434
Vitaly Provodin36f14f22016-12-22 16:58:00 +07001435## https://bugs.openjdk.java.net/browse/JDK-7083664
1436#sun/security/tools/jarsigner/diffend.sh windows-all
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001437
vprovodineaabe412016-11-30 14:35:53 +07001438# https://bugs.openjdk.java.net/browse/JDK-8011134
1439sun/security/ssl/com/sun/net/ssl/internal/ssl/X509TrustManagerImpl/ClientServer.java generic-all
1440
1441# https://bugs.openjdk.java.net/browse/JDK-8039130
1442sun/security/ssl/javax/net/ssl/NewAPIs/CheckMyTrustedKeystore.java generic-all
1443sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/Basics.java generic-all
1444sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/TestAllSuites.java generic-all
1445sun/security/ssl/sanity/ciphersuites/CheckCipherSuites.java generic-all
1446sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/CloseKeepAliveCached.java generic-all
1447
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001448# https://bugs.openjdk.java.net/browse/JDK-8171489
1449sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java linux-all
1450
Vitaly Provodin3bdb4f02017-01-26 15:41:30 +07001451# https://bugs.openjdk.java.net/browse/JDK-8160023
1452sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/PostThruProxyWithAuth.sh generic-all
1453
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001454# https://bugs.openjdk.java.net/browse/JDK-8160624
1455sun/security/tools/keytool/printssl.sh windows-all
1456
vprovodineaabe412016-11-30 14:35:53 +07001457# expected failure on JBRE
Anton Tarasov72fba572016-12-06 13:33:40 +03001458sun/misc/Version/Version.java generic-all
1459
1460# https://youtrack.jetbrains.com/issue/JRE-128
1461java/awt/image/multiresolution/MultiDisplayTest/MultiDisplayTest.java generic-all
1462java/awt/image/multiresolution/MultiResolutionIcon/IconTest.java generic-all
1463java/awt/image/multiresolution/MultiResolutionTrayIconTest/MultiResolutionTrayIconTest.java generic-all
1464java/awt/image/multiresolution/BaseMultiResolutionImageTest.java generic-all
1465java/awt/image/multiresolution/Corrupted2XImageTest.java generic-all
1466java/awt/image/multiresolution/MenuMultiresolutionIconTest.java generic-all
1467java/awt/image/multiresolution/MultiResolutionIcon/MultiResIconTest.java generic-all
1468java/awt/image/multiresolution/MultiResolutionCachedImageTest.java generic-all
1469java/awt/image/multiresolution/MultiresolutionIconTest.java generic-all
1470java/awt/image/multiresolution/MultiResolutionImagePropertiesTest.java generic-all
1471java/awt/image/multiresolution/MultiResolutionJOptionPaneIconTest.java generic-all
1472java/awt/image/multiresolution/MultiResolutionRenderingHintsTest.java generic-all
1473java/awt/image/multiresolution/MultiresolutionSourceTest.java generic-all
1474java/awt/image/multiresolution/MultiResolutionToolkitImageTest.java generic-all
Anton Tarasov6f595152016-12-06 14:59:12 +03001475java/awt/image/multiresolution/MultiResolutionImageObserverTest.java gereric-all
1476java/awt/image/multiresolution/MultiResolutionDrawImageWithTransformTest.java gereric-all
Anton Tarasov72fba572016-12-06 13:33:40 +03001477java/awt/image/MultiResolutionImage/MultiResolutionDisabledImageTest.java generic-all
1478java/awt/image/MultiResolutionImage/MultiResolutionDrawImageWithTransformTest.java generic-all
1479java/awt/image/MultiResolutionImage/NSImageToMultiResolutionImageTest.java generic-all
1480java/awt/image/MultiResolutionImageCommonTest.java generic-all
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001481java/awt/image/MultiResolutionImageTest.java generic-all
1482
1483# ignored
Vitaly Provodin43937952017-01-20 09:54:17 +07001484com/sun/crypto/provider/Cipher/DES/PerformanceTest.java generic-all
1485com/sun/jdi/PopAndInvokeTest.java generic-all
1486com/sun/security/auth/callback/DialogCallbackHandler/Default.java generic-all
1487com/sun/security/auth/callback/TextCallbackHandler/Default.java generic-all
1488com/sun/tracing/BasicFunctionality.java generic-all
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001489# Uses certutil.exe that isn't guaranteed to be installed
Vitaly Provodin43937952017-01-20 09:54:17 +07001490sun/security/mscapi/nonUniqueAliases/NonUniqueAliases.sh generic-all
1491
1492## https://bugs.openjdk.java.net/browse/JDK-8150070
1493# https://bugs.openjdk.java.net/browse/JDK-8145552
1494com/sun/jdi/ArrayLengthDumpTest.sh windows-all
1495com/sun/jdi/BreakpointWithFullGC.sh windows-all
1496com/sun/jdi/CatchCaughtTest.sh windows-all
1497com/sun/jdi/CatchPatternTest.sh windows-all
1498com/sun/jdi/GetLocalVariables3Test.sh windows-all
1499com/sun/jdi/GetLocalVariables4Test.sh windows-all
1500com/sun/jdi/JdbMethodExitTest.sh windows-all
1501com/sun/jdi/JdbMissStep.sh windows-all
1502com/sun/jdi/JdbVarargsTest.sh windows-all
1503com/sun/jdi/NotAField.sh windows-all
1504com/sun/jdi/Redefine-g.sh windows-all
1505com/sun/jdi/RedefineAbstractClass.sh windows-all
1506com/sun/jdi/RedefineImplementor.sh windows-all
1507com/sun/jdi/RedefineMulti.sh windows-all
1508
Vitaly Provodina446cf22017-04-13 17:34:28 +07001509# https://bugs.openjdk.java.net/browse/JDK-6822627
1510com/sun/jdi/ConstantPoolInfoGC.java generic-all
1511
Vitaly Provodin358c5e42017-04-13 14:51:48 +07001512# https://bugs.openjdk.java.net/browse/JDK-8054066
1513com/sun/jdi/DoubleAgentTest.java generic-all
1514
Vitaly Provodin1d378fa2017-03-01 16:03:04 +07001515# https://bugs.openjdk.java.net/browse/JDK-8151887
1516com/sun/jdi/RedefineClearBreakpoint.sh generic-all
1517
Vitaly Provodin43937952017-01-20 09:54:17 +07001518# https://bugs.openjdk.java.net/browse/JDK-8141694
1519# https://bugs.openjdk.java.net/browse/JDK-8075066
1520com/sun/nio/sctp/SctpChannel/SocketOptionTests.java linux-all
1521
1522# https://bugs.openjdk.java.net/browse/JDK-8141694
1523com/sun/nio/sctp/SctpMultiChannel/SocketOptionTests.java linux-all
1524
1525# https://bugs.openjdk.java.net/browse/JDK-8172887
1526com/sun/awt/Translucency/WindowOpacity.java windows-all
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +07001527java/awt/DataFlavor/MissedHtmlAndRtfBug/MissedHtmlAndRtfBug.html windows-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001528java/awt/Focus/FocusEmbeddedFrameTest/FocusEmbeddedFrameTest.java windows-all
Vitaly Provodin358c5e42017-04-13 14:51:48 +07001529java/awt/FullScreen/TranslucentWindow/TranslucentWindow.java windows-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001530java/awt/Mixing/MixingInHwPanel.java windows-all
Vitaly Provodine272fd82017-02-27 14:50:45 +07001531java/awt/TextArea/Mixing/TextAreaMixing.java windows-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001532java/awt/dnd/NoFormatsCrashTest/NoFormatsCrashTest.html windows-all
Vitaly Provodin965f53e2017-03-27 15:57:07 +07001533java/io/File/SetLastModified.java generic-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001534javax/swing/JScrollBar/7163696/Test7163696.java windows-all
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +07001535# https://bugs.openjdk.java.net/browse/JDK-8065099
1536javax/swing/PopupFactory/6276087/NonOpaquePopupMenuTest.java generic-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001537javax/swing/dnd/7171812/bug7171812.java windows-all
1538javax/swing/plaf/basic/BasicTreeUI/8023474/bug8023474.java windows-all
Vitaly Provodine272fd82017-02-27 14:50:45 +07001539javax/swing/plaf/basic/Test6984643.java windows-all
Vitaly Provodin82d94092017-04-21 10:47:21 +07001540javax/swing/plaf/basic/Test6984643.java windows-all
1541javax/swing/plaf/nimbus/8041642/ScrollBarThumbVisibleTest.java generic-all
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +07001542# https://bugs.openjdk.java.net/browse/JDK-8155740
1543javax/swing/text/JTextComponent/5074573/bug5074573.java generic-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001544javax/swing/text/StyledEditorKit/4506788/bug4506788.java windows-all
Vitaly Provodine272fd82017-02-27 14:50:45 +07001545sun/java2d/DirectX/OpaqueImageToSurfaceBlitTest/OpaqueImageToSurfaceBlitTest.java windows-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001546sun/java2d/DrawXORModeTest.java windows-all
1547sun/java2d/OpenGL/CustomCompositeTest.java windows-all
1548sun/java2d/OpenGL/DrawBufImgOp.java windows-all
1549sun/java2d/OpenGL/DrawHugeImageTest.java windows-all
Vitaly Provodin358c5e42017-04-13 14:51:48 +07001550sun/java2d/XRenderBlitsTest.java windows-all
1551
1552# https://bugs.openjdk.java.net/browse/JDK-8160536
1553com/apple/eawt/DefaultMenuBar/DefaultMenuBarTest.java macosx-all