blob: 30993f29c2c683a2a83d30bf19552d73e854e40e [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 Provodin9ad9e612017-05-31 11:05:11 +0700188# https://bugs.openjdk.java.net/browse/JDK-8015886
189java/awt/Focus/DeiconifiedFrameLoosesFocus/DeiconifiedFrameLoosesFocus.html linux-all
190
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700191## https://bugs.openjdk.java.net/browse/JDK-8169101
192# java/awt/Focus/FocusEmbeddedFrameTest/FocusEmbeddedFrameTest.java windows-all
vprovodina797be12016-11-03 18:55:15 +0700193
vprovodin4376b4e2016-09-28 10:22:26 +0700194# https://bugs.openjdk.java.net/browse/JDK-8081489
195java/awt/Focus/FocusOwnerFrameOnClick/FocusOwnerFrameOnClick.java generic-all
196
vprovodin163dc6b2016-09-20 14:17:26 +0700197# https://bugs.openjdk.java.net/browse/JDK-6849364
198java/awt/Focus/IconifiedFrameFocusChangeTest/IconifiedFrameFocusChangeTest.java generic-all
199
vprovodin4376b4e2016-09-28 10:22:26 +0700200# https://bugs.openjdk.java.net/browse/JDK-8053932
201java/awt/Focus/KeyEventForBadFocusOwnerTest/KeyEventForBadFocusOwnerTest.java generic-all
202
203# https://bugs.openjdk.java.net/browse/JDK-7152980
204java/awt/Focus/NoAutotransferToDisabledCompTest/NoAutotransferToDisabledCompTest.java generic-all
205
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700206# https://bugs.openjdk.java.net/browse/JDK-8151979
vprovodinfb6a5aa2016-10-21 17:00:12 +0700207java/awt/Focus/NonFocusableWindowTest/NonfocusableOwnerTest.java generic-all
208
vprovodina797be12016-11-03 18:55:15 +0700209# https://bugs.openjdk.java.net/browse/JDK-8169110
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700210java/awt/Focus/OwnedWindowFocusIMECrashTest/OwnedWindowFocusIMECrashTest.java generic-all
vprovodina797be12016-11-03 18:55:15 +0700211
vprovodinfb6a5aa2016-10-21 17:00:12 +0700212# https://bugs.openjdk.java.net/browse/JDK-8168294
213java/awt/Focus/ResetMostRecentFocusOwnerTest/ResetMostRecentFocusOwnerTest.java generic-all
214
vprovodin48c38b32016-11-23 14:44:22 +0700215# https://bugs.openjdk.java.net/browse/JDK-8028701
216java/awt/Focus/ShowFrameCheckForegroundTest/ShowFrameCheckForegroundTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700217
vprovodin163dc6b2016-09-20 14:17:26 +0700218# https://bugs.openjdk.java.net/browse/JDK-8159599
219java/awt/Focus/SimpleWindowActivationTest/SimpleWindowActivationTest.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700220
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700221# https://bugs.openjdk.java.net/browse/JDK-7156130
vprovodin4376b4e2016-09-28 10:22:26 +0700222java/awt/Focus/ToFrontFocusTest/ToFrontFocus.html generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700223
Vitaly Provodin96295882017-03-02 17:14:52 +0700224# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6848810
225# https://bugs.openjdk.java.net/browse/JDK-7035459
226java/awt/Focus/TranserFocusToWindow/TranserFocusToWindow.java generic-all
227
vprovodin4376b4e2016-09-28 10:22:26 +0700228# https://bugs.openjdk.java.net/browse/JDK-6986253
229java/awt/Focus/TypeAhead/TestFocusFreeze.java windows-all
230
vprovodina797be12016-11-03 18:55:15 +0700231# https://bugs.openjdk.java.net/browse/JDK-8169100
232java/awt/Focus/WindowInitialFocusTest/WindowInitialFocusTest.html windows-all
233
234# https://bugs.openjdk.java.net/browse/JDK-8169099
235java/awt/Focus/WindowIsFocusableAccessByThreadsTest/WindowIsFocusableAccessByThreadsTest.java windows-all
236
237# https://bugs.openjdk.java.net/browse/JDK-8169096
238java/awt/Focus/WrongKeyTypedConsumedTest/WrongKeyTypedConsumedTest.java windows-all
239
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700240# https://bugs.openjdk.java.net/browse/JDK-6868690
vprovodin163dc6b2016-09-20 14:17:26 +0700241java/awt/FontClass/CreateFont/bigfont.html generic-all
242
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700243# https://bugs.openjdk.java.net/browse/JDK-8076151
vprovodinf10a8df2016-09-16 14:43:40 +0700244java/awt/FontClass/CreateFont/fileaccess/FontFile.java generic-all
245
vprovodina797be12016-11-03 18:55:15 +0700246# https://bugs.openjdk.java.net/browse/JDK-8169111
Vitaly Provodin20b63f62016-12-15 14:19:24 +0700247java/awt/Frame/InvisibleOwner/InvisibleOwner.java generic-all
vprovodina797be12016-11-03 18:55:15 +0700248
vprovodin72369e62016-11-11 10:11:16 +0700249# https://bugs.openjdk.java.net/browse/JDK-8169472
250java/awt/Frame/LayoutOnMaximizeTest/LayoutOnMaximizeTest.java windows-all
251
vprovodincfaf05a2016-10-04 09:45:22 +0700252# excluded from regular runs since the test was not run
253# see http://download.java.net/openjdk/testresults/8/
254java/awt/Frame/UnfocusableMaximizedFrameResizablity/UnfocusableMaximizedFrameResizablity.java generic-all
255
vprovodin72369e62016-11-11 10:11:16 +0700256# https://bugs.openjdk.java.net/browse/JDK-8169470
257java/awt/Frame/WindowDragTest/WindowDragTest.java windows-all
258
259# https://bugs.openjdk.java.net/browse/JDK-8169471
260java/awt/FullScreen/8013581/bug8013581.java windows-all
261
vprovodin4376b4e2016-09-28 10:22:26 +0700262# https://bugs.openjdk.java.net/browse/JDK-8047218
vprovodinf10a8df2016-09-16 14:43:40 +0700263java/awt/FullScreen/AltTabCrashTest/AltTabCrashTest.java generic-all
264
vprovodin72369e62016-11-11 10:11:16 +0700265# https://bugs.openjdk.java.net/browse/JDK-8169469
266java/awt/FullScreen/DisplayChangeVITest/DisplayChangeVITest.java windows-all
267
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700268# https://bugs.openjdk.java.net/browse/JDK-7019055
vprovodin4376b4e2016-09-28 10:22:26 +0700269java/awt/FullScreen/FullScreenInsets/FullScreenInsets.java windows-all
270
vprovodin72369e62016-11-11 10:11:16 +0700271# https://bugs.openjdk.java.net/browse/JDK-8169468
272java/awt/FullScreen/NoResizeEventOnDMChangeTest/NoResizeEventOnDMChangeTest.java windows-all
273
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700274# https://bugs.openjdk.java.net/browse/JDK-8012224
vprovodinf10a8df2016-09-16 14:43:40 +0700275java/awt/Frame/MaximizedToIconified/MaximizedToIconified.java generic-all
276
vprovodin8616ab32016-10-19 18:52:13 +0700277# https://bugs.openjdk.java.net/browse/JDK-8144030
278java/awt/Frame/ShapeNotSetSometimes/ShapeNotSetSometimes.java generic-all
279
280# https://bugs.openjdk.java.net/browse/JDK-7019055
281java/awt/FullScreen/FullScreenInsets/FullScreenInsets.java generic-all
282
vprovodin72369e62016-11-11 10:11:16 +0700283# https://bugs.openjdk.java.net/browse/JDK-8016241
284java/awt/FullScreen/SetFSWindow/FSFrame.java generic-all
285
Vitaly Provodine38a0f02017-02-01 07:59:08 +0300286# https://bugs.openjdk.java.net/browse/JDK-7179526
Vitaly Provodin5bf2ba82017-03-07 15:55:46 +0700287#fixed in 8_112
Vitaly Provodin9ad9e612017-05-31 11:05:11 +0700288java/awt/Graphics/LineClipTest* generic-all
Vitaly Provodin5d023a32016-12-06 10:31:27 +0700289
vprovodin72369e62016-11-11 10:11:16 +0700290# https://bugs.openjdk.java.net/browse/JDK-8080084
291java/awt/Graphics2D/DrawString/DrawStringCrash.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700292
293# https://bugs.openjdk.java.net/browse/JDK-7043153
294java/awt/Graphics2D/DrawString/RotTransText.java generic-all
295
vprovodin72369e62016-11-11 10:11:16 +0700296# https://bugs.openjdk.java.net/browse/JDK-8169464
297java/awt/Graphics2D/DrawString/TextRenderingTest.java windows-all
298
299# https://bugs.openjdk.java.net/browse/JDK-8169463
300java/awt/Graphics2D/FillTexturePaint/FillTexturePaint.java windows-all
301
302# https://bugs.openjdk.java.net/browse/JDK-8169462
303java/awt/Graphics2D/FlipDrawImage/FlipDrawImage.java windows-all
304
vprovodincfaf05a2016-10-04 09:45:22 +0700305# https://bugs.openjdk.java.net/browse/JDK-8145808
306java/awt/Graphics2D/MTGraphicsAccessTest/MTGraphicsAccessTest.java generic-all
307
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700308# https://bugs.openjdk.java.net/browse/JDK-8054638
309java/awt/Graphics2D/WhiteTextColorTest.java generic-all
310
Vitaly Provodin43937952017-01-20 09:54:17 +0700311# https://bugs.openjdk.java.net/browse/JDK-8000171
312java/awt/GridLayout/LayoutExtraGaps/LayoutExtraGaps.java windows-all
313
Vitaly Provodin5d023a32016-12-06 10:31:27 +0700314# https://bugs.openjdk.java.net/browse/JDK-8170729
315java/awt/JAWT/JAWT.sh windows-all
316
vprovodin163dc6b2016-09-20 14:17:26 +0700317# https://bugs.openjdk.java.net/browse/JDK-8158380
318java/awt/KeyboardFocusmanager/TypeAhead/SubMenuShowTest/SubMenuShowTest.html generic-all
319
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700320## https://bugs.openjdk.java.net/browse/JDK-8073639
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700321# https://bugs.openjdk.java.net/browse/JDK-8074807
322java/awt/KeyboardFocusmanager/TypeAhead/TestDialogTypeAhead.html generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700323
324# https://bugs.openjdk.java.net/browse/JDK-8163261
325java/awt/LightweightDispatcher/LWDispatcherMemoryLeakTest.java generic-all
326
vprovodin72369e62016-11-11 10:11:16 +0700327# https://bugs.openjdk.java.net/browse/JDK-8169461
328java/awt/List/FirstItemRemoveTest/FirstItemRemoveTest.html windows-all
329
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700330## https://bugs.openjdk.java.net/browse/JDK-6561487
Vitaly Provodind20116b2017-02-13 09:17:14 +0700331# https://bugs.openjdk.java.net/browse/JDK-7125471
332java/awt/List/NofocusListDblClickTest/NofocusListDblClickTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700333
Vitaly Provodin43937952017-01-20 09:54:17 +0700334# https://bugs.openjdk.java.net/browse/JDK-7037728
335java/awt/Menu/OpensWithNoGrab/OpensWithNoGrab.java linux-all
336
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +0700337# https://bugs.openjdk.java.net/browse/JDK-8068305
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +0700338java/awt/Mixing/HWDisappear.java generic-all
339
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700340# https://bugs.openjdk.java.net/browse/JDK-8143295
vprovodin4376b4e2016-09-28 10:22:26 +0700341java/awt/Mixing/LWPopupMenu.java generic-all
342
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700343## https://bugs.openjdk.java.net/browse/JDK-6885735
344#java/awt/Mixing/MixingInHwPanel.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700345
346# https://bugs.openjdk.java.net/browse/JDK-4049668
347java/awt/Mixing/MixingOnDialog.java generic-all
348
vprovodin72369e62016-11-11 10:11:16 +0700349# https://bugs.openjdk.java.net/browse/JDK-8169460
350java/awt/Mixing/MixingOnShrinkingHWButton.java windows-all
351
vprovodin163dc6b2016-09-20 14:17:26 +0700352# https://bugs.openjdk.java.net/browse/JDK-7124549
353java/awt/Mixing/NonOpaqueInternalFrame.java macosx-all
354
vprovodin72369e62016-11-11 10:11:16 +0700355# https://bugs.openjdk.java.net/browse/JDK-8169457
356java/awt/Mixing/OpaqueTest.java windows-all
357
vprovodin48c38b32016-11-23 14:44:22 +0700358# https://bugs.openjdk.java.net/browse/JDK-7124549
359java/awt/Mixing/OverlappingButtons.java generic-all
360
vprovodin4376b4e2016-09-28 10:22:26 +0700361# https://bugs.openjdk.java.net/browse/JDK-8165619
362java/awt/Mixing/ValidBounds.java generic-all
363java/awt/Mixing/Validating.java generic-all
364
Vitaly Provodin0f8e8272017-03-23 09:09:02 +0700365# https://bugs.openjdk.java.net/browse/JDK-8177323
366java/awt/Modal/LWModalTest/LWModalTest.java macosx-all
367
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700368## https://bugs.openjdk.java.net/browse/JDK-8029024
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700369# https://bugs.openjdk.java.net/browse/JDK-8066259
370java/awt/Modal/ModalDialogOrderingTest/ModalDialogOrderingTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700371
vprovodin4376b4e2016-09-28 10:22:26 +0700372# https://bugs.openjdk.java.net/browse/JDK-8159599
373java/awt/Modal/ModalInternalFrameTest/ModalInternalFrameTest.java generic-all
374
375# https://bugs.openjdk.java.net/browse/JDK-8052166
376java/awt/Mouse/MouseComboBoxTest/MouseComboBoxTest.java generic-all
377
vprovodin163dc6b2016-09-20 14:17:26 +0700378# https://bugs.openjdk.java.net/browse/JDK-8023562
379java/awt/Mouse/EnterExitEvents/DragWindowOutOfFrameTest.java generic-all
380java/awt/Mouse/EnterExitEvents/DragWindowTest.java generic-all
381
Vitaly Provodin358c5e42017-04-13 14:51:48 +0700382# https://bugs.openjdk.java.net/browse/JDK-8165619
383java/awt/Mouse/EnterExitEvents/ModalDialogEnterExitEventsTest.java generic-all
384
vprovodin72369e62016-11-11 10:11:16 +0700385# https://bugs.openjdk.java.net/browse/JDK-8169534
Vitaly Provodine38a0f02017-02-01 07:59:08 +0300386java/awt/Mouse/ExtraMouseClick/ExtraMouseClick.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700387
vprovodin39bbb2b2016-09-22 11:20:03 +0700388# https://bugs.openjdk.java.net/browse/JDK-8051455
389java/awt/Mouse/EnterExitEvents/FullscreenEnterEventTest.java macosx-all
390
vprovodinf10a8df2016-09-16 14:43:40 +0700391# https://bugs.openjdk.java.net/browse/JDK-8144042
392java/awt/Mouse/EnterExitEvents/ResizingFrameTest.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700393
vprovodinfb6a5aa2016-10-21 17:00:12 +0700394# https://bugs.openjdk.java.net/browse/JDK-8168388
vprovodin5454c002016-10-26 09:48:10 +0700395java/awt/Mouse/GetMousePositionTest/GetMousePositionWithOverlay.java generic-all
vprovodinfb6a5aa2016-10-21 17:00:12 +0700396
vprovodin163dc6b2016-09-20 14:17:26 +0700397# https://bugs.openjdk.java.net/browse/JDK-8027154
398java/awt/Mouse/GetMousePositionTest/GetMousePositionWithPopup.java generic-all
399
400# https://bugs.openjdk.java.net/browse/JDK-8132766
401java/awt/Mouse/MaximizedFrameTest/MaximizedFrameTest.html macosx-all
402
vprovodin29bc7ae2016-09-13 12:12:33 +0700403# https://bugs.openjdk.java.net/browse/JDK-8129775
vprovodin4376b4e2016-09-28 10:22:26 +0700404java/awt/Mouse/MouseDragEvent/MouseDraggedTest.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700405
vprovodina8c69352016-09-22 11:20:03 +0700406# https://bugs.openjdk.java.net/browse/JDK-8013428
vprovodin4376b4e2016-09-28 10:22:26 +0700407java/awt/Mouse/MouseModifiersUnitTest/ExtraButtonDrag.java generic-all
vprovodina8c69352016-09-22 11:20:03 +0700408
vprovodin163dc6b2016-09-20 14:17:26 +0700409# https://bugs.openjdk.java.net/browse/JDK-8130471
410java/awt/Mouse/MouseModifiersUnitTest/MouseModifiersUnitTest_Extra.java linux-all
411
412# https://bugs.openjdk.java.net/browse/JDK-7124407
413java/awt/Mouse/MouseModifiersUnitTest/MouseModifiersUnitTest_Standard.java macosx-all
414
415# https://bugs.openjdk.java.net/browse/JDK-8157170
vprovodin4376b4e2016-09-28 10:22:26 +0700416java/awt/Mouse/RemovedComponentMouseListener/RemovedComponentMouseListener.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700417
vprovodin29bc7ae2016-09-13 12:12:33 +0700418# https://bugs.openjdk.java.net/browse/JDK-8148041
vprovodin8616ab32016-10-19 18:52:13 +0700419java/awt/Mouse/TitleBarDoubleClick/TitleBarDoubleClick.html generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700420
vprovodin4376b4e2016-09-28 10:22:26 +0700421# https://bugs.openjdk.java.net/browse/JDK-8012577
422java/awt/MouseAdapter/MouseAdapterUnitTest/MouseAdapterUnitTest.java generic-all
423
Vitaly Provodin358c5e42017-04-13 14:51:48 +0700424# https://bugs.openjdk.java.net/browse/JDK-8130741
425# https://bugs.openjdk.java.net/browse/JDK-8158798
426java/awt/MouseInfo/GetPointerInfoTest.java generic-all
427
vprovodin163dc6b2016-09-20 14:17:26 +0700428# https://bugs.openjdk.java.net/browse/JDK-8028484
vprovodin4376b4e2016-09-28 10:22:26 +0700429java/awt/MouseInfo/JContainerMousePositionTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700430
vprovodin8616ab32016-10-19 18:52:13 +0700431# https://bugs.openjdk.java.net/browse/JDK-7124230
432java/awt/Multiscreen/LocationRelativeToTest/LocationRelativeToTest.java macosx-all
433
vprovodin163dc6b2016-09-20 14:17:26 +0700434# https://bugs.openjdk.java.net/browse/JDK-8139581
vprovodinfb6a5aa2016-10-21 17:00:12 +0700435java/awt/Paint/ComponentIsNotDrawnAfterRemoveAddTest/ComponentIsNotDrawnAfterRemoveAddTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700436
vprovodin72369e62016-11-11 10:11:16 +0700437# https://bugs.openjdk.java.net/browse/JDK-8169104
438java/awt/Paint/ExposeOnEDT.java windows-all
439
vprovodin4376b4e2016-09-28 10:22:26 +0700440# https://bugs.openjdk.java.net/browse/JDK-8028000
441java/awt/Paint/PaintNativeOnUpdate.java generic-all
442
Vitaly Provodin1fe8d602017-03-04 06:42:00 +0700443# https://bugs.openjdk.java.net/browse/JDK-8031422
444#the test fails with the applied fix
445java/awt/Paint/bug8024864.java generic-all
446
vprovodincfaf05a2016-10-04 09:45:22 +0700447# excluded from regular runs since the test was not run
448# see http://download.java.net/openjdk/testresults/8/
449java/awt/ScrollPane/ScrollPanePreferredSize/ScrollPanePreferredSize.java generic-all
450java/awt/ScrollPane/bug8077409Test.java generic-all
451
Vitaly Provodin96295882017-03-02 17:14:52 +0700452# https://bugs.openjdk.java.net/browse/JDK-8140329
453java/awt/SplashScreen/FullscreenAfterSplash/FullScreenAfterSplash.java generic-all
454
vprovodina797be12016-11-03 18:55:15 +0700455# https://bugs.openjdk.java.net/browse/JDK-8159592
456java/awt/SplashScreen/MultiResolutionSplash/MultiResolutionSplashTest.java generic-all
457
vprovodin72369e62016-11-11 10:11:16 +0700458# https://bugs.openjdk.java.net/browse/JDK-8169533
459java/awt/TextField/SelectionInvisibleTest/SelectionInvisibleTest.java windows-all
460
vprovodin163dc6b2016-09-20 14:17:26 +0700461# https://bugs.openjdk.java.net/browse/JDK-6734341
vprovodin4376b4e2016-09-28 10:22:26 +0700462java/awt/TextArea/UsingWithMouse/SelectionAutoscrollTest.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700463
464# https://bugs.openjdk.java.net/browse/JDK-6829250
vprovodin4376b4e2016-09-28 10:22:26 +0700465java/awt/Toolkit/ScreenInsetsTest/ScreenInsetsTest.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700466
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700467## https://bugs.openjdk.java.net/browse/JDK-6829267
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700468# https://bugs.openjdk.java.net/browse/JDK-6847163
469java/awt/Toolkit/ToolkitPropertyTest/ToolkitPropertyTest_Enable.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700470
471# http://bugs.java.com/view_bug.do?bug_id=8039081
472java/awt/TrayIcon/PopupMenuLeakTest/PopupMenuLeakTest.java generic-all
473
474# https://bugs.openjdk.java.net/browse/JDK-7107528
475java/awt/Robot/AcceptExtraMouseButtons/AcceptExtraMouseButtons.java generic-all
476
Vitaly Provodine38a0f02017-02-01 07:59:08 +0300477# https://bugs.openjdk.java.net/browse/JDK-7081594
478# fixed in 8_112
479java/awt/Window/AlwaysOnTop/AlwaysOnTopFieldTest.java macosx-all
480
vprovodin72369e62016-11-11 10:11:16 +0700481# https://bugs.openjdk.java.net/browse/JDK-8169530
482java/awt/Window/AlwaysOnTop/TestAlwaysOnTopBeforeShow.java windows-all
483
vprovodin4376b4e2016-09-28 10:22:26 +0700484# https://bugs.openjdk.java.net/browse/JDK-8142536
485java/awt/Window/BackgroundIsNotUpdated/BackgroundIsNotUpdated.java generic-all
486
vprovodin8616ab32016-10-19 18:52:13 +0700487# https://bugs.openjdk.java.net/browse/JDK-8047703
488java/awt/Window/Grab/GrabTest.java generic-all
489
vprovodin163dc6b2016-09-20 14:17:26 +0700490# https://bugs.openjdk.java.net/browse/JDK-6848409
491java/awt/Window/GrabSequence/GrabSequence.java generic-all
492
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700493# https://bugs.openjdk.java.net/browse/JDK-8051857
494java/awt/Window/WindowType/WindowType.java linux-all
495
vprovodind2f9ed82016-09-14 15:10:40 +0700496# https://bugs.openjdk.java.net/browse/JDK-8080982
vprovodin4376b4e2016-09-28 10:22:26 +0700497java/awt/datatransfer/DragImage/MultiResolutionDragImageTest.java generic-all
498
499# https://bugs.openjdk.java.net/browse/JDK-8017457
500java/awt/datatransfer/DragUnicodeBetweenJVMTest/DragUnicodeBetweenJVMTest.html windows-all
vprovodind2f9ed82016-09-14 15:10:40 +0700501
502# https://bugs.openjdk.java.net/browse/JDK-8039082
503java/awt/dnd/BadSerializaionTest/BadSerializationTest.java generic-all
504
vprovodin5454c002016-10-26 09:48:10 +0700505# https://bugs.openjdk.java.net/browse/JDK-8144056
vprovodin5454c002016-10-26 09:48:10 +0700506java/awt/dnd/Button2DragTest/Button2DragTest.html generic-all
507
vprovodina8c69352016-09-22 11:20:03 +0700508# https://bugs.openjdk.java.net/browse/JDK-8066096
vprovodin4376b4e2016-09-28 10:22:26 +0700509java/awt/dnd/DragInterceptorAppletTest/DragInterceptorAppletTest.html generic-all
510
511# https://bugs.openjdk.java.net/browse/JDK-8029680
512java/awt/dnd/DropTargetEnterExitTest/ExtraDragEnterTest.java generic-all
513
514# https://bugs.openjdk.java.net/browse/JDK-8029680
515java/awt/dnd/DropTargetEnterExitTest/MissedDragExitTest.java generic-all
vprovodina8c69352016-09-22 11:20:03 +0700516
vprovodind2f9ed82016-09-14 15:10:40 +0700517# https://bugs.openjdk.java.net/browse/JDK-7098447
518java/awt/dnd/ImageTransferTest/ImageTransferTest.java generic-all
519
vprovodina8c69352016-09-22 11:20:03 +0700520# https://bugs.openjdk.java.net/browse/JDK-7124379
vprovodin4376b4e2016-09-28 10:22:26 +0700521java/awt/dnd/FileListBetweenJVMsTest/FileListBetweenJVMsTest.html generic-all
522java/awt/dnd/URIListBetweenJVMsTest/URIListBetweenJVMsTest.html generic-all
vprovodina8c69352016-09-22 11:20:03 +0700523
vprovodind2f9ed82016-09-14 15:10:40 +0700524# https://bugs.openjdk.java.net/browse/JDK-8030121
vprovodin4376b4e2016-09-28 10:22:26 +0700525java/awt/dnd/MissingDragExitEventTest/MissingDragExitEventTest.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +0700526
vprovodin163dc6b2016-09-20 14:17:26 +0700527# https://bugs.openjdk.java.net/browse/JDK-8164464
vprovodin4376b4e2016-09-28 10:22:26 +0700528java/awt/dnd/MissingEventsOnModalDialog/MissingEventsOnModalDialogTest.java generic-all
529
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700530## https://bugs.openjdk.java.net/browse/JDK-7109239
531#java/awt/dnd/NoFormatsCrashTest/NoFormatsCrashTest.html generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700532
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700533# https://bugs.openjdk.java.net/browse/JDK-8072088
534java/awt/dnd/ImageDecoratedDnDNegative/ImageDecoratedDnDNegative.html generic-all
535
vprovodin4376b4e2016-09-28 10:22:26 +0700536# https://bugs.openjdk.java.net/browse/JDK-8011614
537java/awt/dnd/InterJVMGetDropSuccessTest/InterJVMGetDropSuccessTest.html generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700538
vprovodina8c69352016-09-22 11:20:03 +0700539# https://bugs.openjdk.java.net/browse/JDK-8041431
540java/awt/dnd/URIListToFileListBetweenJVMsTest/URIListToFileListBetweenJVMsTest.html generic-all
541
vprovodin4376b4e2016-09-28 10:22:26 +0700542# https://bugs.openjdk.java.net/browse/JDK-6618538
vprovodin5454c002016-10-26 09:48:10 +0700543java/awt/event/HierarchyEvent/AncestorResized/AncestorResized.java generic-all
544
545# https://bugs.openjdk.java.net/browse/JDK-8168646
546java/awt/event/InputEvent/EventWhenTest/EventWhenTest.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700547
548# https://bugs.openjdk.java.net/browse/JDK-8158362
549java/awt/event/KeyEvent/AltCharAcceleratorTest/AltCharAcceleratorTest.java generic-all
550
551# https://bugs.openjdk.java.net/browse/JDK-8145652
552java/awt/event/KeyEvent/DeadKey/DeadKeySystemAssertionDialog.java generic-all
553
554# https://bugs.openjdk.java.net/browse/JDK-6626492
555java/awt/event/KeyEvent/CorrectTime/CorrectTime.java generic-all
556
vprovodin72369e62016-11-11 10:11:16 +0700557# https://bugs.openjdk.java.net/browse/JDK-8169476
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700558java/awt/event/KeyEvent/ExtendedKeyCode/ExtendedKeyCodeTest.java generic-all
vprovodin72369e62016-11-11 10:11:16 +0700559
560# https://bugs.openjdk.java.net/browse/JDK-8169474
561java/awt/event/KeyEvent/KeyChar/KeyCharTest.java windows-all
562
vprovodina8c69352016-09-22 11:20:03 +0700563# https://bugs.openjdk.java.net/browse/JDK-7156316
vprovodin4376b4e2016-09-28 10:22:26 +0700564# https://bugs.openjdk.java.net/browse/JDK-8160623
565java/awt/event/KeyEvent/KeyTyped/CtrlASCII.html generic-all
vprovodina8c69352016-09-22 11:20:03 +0700566
Vitaly Provodinfcc9d8d2016-12-07 16:41:51 +0700567# https://bugs.openjdk.java.net/browse/JDK-8032254
568java/awt/event/MouseEvent/EventTimeInFuture/EventTimeInFuture.java linux-all
569
Vitaly Provodin3ed5f382017-01-12 11:41:49 +0700570# https://bugs.openjdk.java.net/browse/JDK-8168389
571java/awt/event/MouseEvent/MouseClickTest/MouseClickTest.html generic-all
vprovodinfb6a5aa2016-10-21 17:00:12 +0700572
vprovodin163dc6b2016-09-20 14:17:26 +0700573# https://bugs.openjdk.java.net/browse/JDK-6854300
574java/awt/event/MouseEvent/SpuriousExitEnter/SpuriousExitEnter_3.java generic-all
575
vprovodin4376b4e2016-09-28 10:22:26 +0700576# https://bugs.openjdk.java.net/browse/JDK-8060176
577java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion.java generic-all
vprovodin8616ab32016-10-19 18:52:13 +0700578java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_1.java generic-all
579java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_2.html generic-all
580
581# https://bugs.openjdk.java.net/browse/JDK-6956646
582java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_4.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700583
vprovodin163dc6b2016-09-20 14:17:26 +0700584# https://bugs.openjdk.java.net/browse/JDK-6956646
585java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_3.html generic-all
586
vprovodin72369e62016-11-11 10:11:16 +0700587# https://bugs.openjdk.java.net/browse/JDK-8169475
588java/awt/event/MouseWheelEvent/WheelModifier/WheelModifier.java windows-all
589
vprovodina8c69352016-09-22 11:20:03 +0700590# https://bugs.openjdk.java.net/browse/JDK-7043170
591java/awt/font/TextLayout/CombiningPerf.java generic-all
592
vprovodin8616ab32016-10-19 18:52:13 +0700593# https://bugs.openjdk.java.net/browse/JDK-7162125
594java/awt/font/TextLayout/OSXLigatureTest.java macosx-all
595
vprovodin163dc6b2016-09-20 14:17:26 +0700596# Test ignored: Requires a special font installed
597java/awt/font/TextLayout/TestOldHangul.java generic-all
598java/awt/font/TextLayout/TestTibetan.java generic-all
599
600# https://bugs.openjdk.java.net/browse/JDK-8164818
601java/awt/font/TextLayout/VisibleAdvance.java generic-all
602
Vitaly Provodin70b4b812017-03-06 11:39:02 +0700603# https://bugs.openjdk.java.net/browse/JDK-8158356
604#affects runs (on OSX, causes the reopen dialog)
605java/awt/geom/AffineTransform/InvalidTransformParameterTest.java generic-all
606
vprovodin163dc6b2016-09-20 14:17:26 +0700607# https://bugs.openjdk.java.net/browse/JDK-7080150
608java/awt/grab/EmbeddedFrameTest1/EmbeddedFrameTest1.java generic-all
609
vprovodina797be12016-11-03 18:55:15 +0700610# https://bugs.openjdk.java.net/browse/JDK-8169109
611java/awt/grab/GrabOnUnfocusableToplevel/GrabOnUnfocusableToplevel.java windows-all
612
vprovodin4376b4e2016-09-28 10:22:26 +0700613# https://bugs.openjdk.java.net/browse/JDK-8028000
614java/awt/image/DrawImage/EABlitTest.java generic-all
615
vprovodind2f9ed82016-09-14 15:10:40 +0700616# https://bugs.openjdk.java.net/browse/JDK-8056077
617java/awt/image/DrawImage/IncorrectAlphaSurface2SW.java linux-all
618
vprovodin72369e62016-11-11 10:11:16 +0700619# https://bugs.openjdk.java.net/browse/JDK-8169473
620java/awt/image/DrawImage/IncorrectBounds.java windows-all
621
vprovodind2f9ed82016-09-14 15:10:40 +0700622# https://bugs.openjdk.java.net/browse/JDK-8130400
623java/awt/image/DrawImage/IncorrectClipXorModeSW2Surface.java linux-all
624java/awt/image/DrawImage/IncorrectClipXorModeSurface2Surface.java linux-all
625
vprovodinc9acc382016-11-18 16:49:57 +0700626# https://bugs.openjdk.java.net/browse/JDK-8169951
vprovodin48c38b32016-11-23 14:44:22 +0700627java/awt/image/DrawImage/IncorrectOffset.java windows-all
vprovodinc9acc382016-11-18 16:49:57 +0700628java/awt/image/DrawImage/IncorrectDestinationOffset.java windows-all
vprovodin48c38b32016-11-23 14:44:22 +0700629java/awt/image/DrawImage/IncorrectSourceOffset.java windows-all
vprovodinc9acc382016-11-18 16:49:57 +0700630
vprovodinf10a8df2016-09-16 14:43:40 +0700631# no printer found
632java/awt/print/PrinterJob/ExceptionTest.java generic-all
633java/awt/print/PrinterJob/ImagePrinting/NullClipARGB.java generic-all
634java/awt/print/PrinterJob/PrtException.java generic-all
Vitaly Provodin358c5e42017-04-13 14:51:48 +0700635java/awt/print/PrinterJob/PrintCrashTest.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +0700636
vprovodin163dc6b2016-09-20 14:17:26 +0700637# https://bugs.openjdk.java.net/browse/JDK-8152944
638https://bugs.openjdk.java.net/browse/JDK-8152944
639excluded from regular runs
640java/time/tck/java/time/TCKDayOfWeek.java generic-all
641java/time/tck/java/time/TCKDuration.java generic-all
642java/time/tck/java/time/TCKInstant.java generic-all
643java/time/tck/java/time/TCKLocalDate.java generic-all
644java/time/tck/java/time/TCKLocalDateTime.java generic-all
645java/time/tck/java/time/TCKLocalTime.java generic-all
646java/time/tck/java/time/TCKMonth.java generic-all
647java/time/tck/java/time/TCKOffsetDateTime.java generic-all
648java/time/tck/java/time/TCKOffsetTime.java generic-all
649java/time/tck/java/time/TCKPeriod.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700650java/time/tck/java/time/TCKYear.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700651java/time/tck/java/time/TCKYearMonth.java generic-all
652java/time/tck/java/time/TCKZonedDateTime.java generic-all
653java/time/tck/java/time/format/TCKDateTimeFormatters.java generic-all
654java/time/tck/java/time/format/TCKDateTimeParseResolver.java generic-all
655java/time/tck/java/time/format/TCKInstantPrinterParser.java generic-all
656java/time/tck/java/time/format/TCKLocalizedFieldParser.java generic-all
657java/time/tck/java/time/temporal/TCKChronoField.java generic-all
658java/time/tck/java/time/temporal/TCKChronoUnit.java generic-all
659java/time/tck/java/time/temporal/TCKIsoFields.java generic-all
660java/time/tck/java/time/temporal/TCKJulianFields.java generic-all
661java/time/test/java/time/chrono/TestUmmAlQuraChronology.java generic-all
662java/time/test/java/time/format/TestNumberParser.java generic-all
663java/time/test/java/time/format/TestNumberPrinter.java generic-all
664java/time/test/java/time/format/TestZoneOffsetParser.java generic-all
665java/time/test/java/time/temporal/TestChronoUnit.java generic-all
666java/time/test/java/time/temporal/TestDateTimeValueRange.java generic-all
667
668
Vitaly Provodine38a0f02017-02-01 07:59:08 +0300669# https://bugs.openjdk.java.net/browse/JDK-8144247
670java/awt/xembed/server/RunTestXEmbed.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +0700671
vprovodind2f9ed82016-09-14 15:10:40 +0700672############################################################################
673
674# jdk_sound
675
676## https://bugs.openjdk.java.net/browse/JDK-8134632 (fixed in jdk9)
vprovodin4376b4e2016-09-28 10:22:26 +0700677# MidiSystem not available
678javax/sound/midi/Devices/InitializationHang.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700679
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +0700680# https://bugs.openjdk.java.net/browse/JDK-8148915
681javax/sound/sampled/DirectAudio/bug6400879.java generic-all
682
vprovodin29bc7ae2016-09-13 12:12:33 +0700683############################################################################
684
685# jdk_beans
686
vprovodin163dc6b2016-09-20 14:17:26 +0700687# https://bugs.openjdk.java.net/browse/JDK-8015593
688java/beans/XMLEncoder/Test6570354.java macosx-all
689
vprovodind2f9ed82016-09-14 15:10:40 +0700690# https://bugs.openjdk.java.net/browse/JDK-8030123
691java/beans/Introspector/Test8027648.java linux-all
692
693############################################################################
694
695# jdk_io
696
697# Test ignored: This test has huge memory requirements
698java/io/ByteArrayOutputStream/MaxCapacity.java generic-all
699
Vitaly Provodin358c5e42017-04-13 14:51:48 +0700700# Test ignored: This test has huge memory requirements
701java/io/CharArrayReader/OverflowInRead.java generic-all
702
vprovodind2f9ed82016-09-14 15:10:40 +0700703# Test ignored: until 6492634 and 6501010 is fixed
704# http://bugs.java.com/view_bug.do?bug_id=6492634
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700705# https://bugs.openjdk.java.net/browse/JDK-6492634
vprovodind2f9ed82016-09-14 15:10:40 +0700706# http://bugs.java.com/view_bug.do?bug_id=6501010
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700707# https://bugs.openjdk.java.net/browse/JDK-6501010
vprovodind2f9ed82016-09-14 15:10:40 +0700708java/io/File/GetXSpace.java generic-all
709
710# Test ignored: Test truncates system files when run as root, see 7042603
711# http://bugs.java.com/view_bug.do?bug_id=7042603
712java/io/IOException/LastErrorString.java generic-all
713
Vitaly Provodin358c5e42017-04-13 14:51:48 +0700714# https://bugs.openjdk.java.net/browse/JDK-8169055
715java/io/Serializable/serialFilter/CheckInputOrderTest.java generic-all
716java/io/Serializable/serialFilter/FilterWithSecurityManagerTest.java generic-all
717java/io/Serializable/serialFilter/GlobalFilterTest.java generic-all
718java/io/Serializable/serialFilter/MixedFiltersTest.java generic-all
719java/io/Serializable/serialFilter/SerialFilterTest.java generic-all
720
721# Test ignored: This test has huge memory requirements
722java/io/StringBufferInputStream/OverflowInRead.java generic-all
723
vprovodind2f9ed82016-09-14 15:10:40 +0700724# Test ignored: This test requires console (/dev/tty) input, which is not supported by the current harness
725java/io/SystemInAvailable.java generic-all
726
vprovodin29bc7ae2016-09-13 12:12:33 +0700727############################################################################
728
729# jdk_lang
730
Vitaly Provodind20116b2017-02-13 09:17:14 +0700731# https://bugs.openjdk.java.net/browse/JDK-8029891
732java/lang/ClassLoader/deadlock/GetResource.java generic-all
733
vprovodin163dc6b2016-09-20 14:17:26 +0700734# Test ignored: This test has huge memory requirements
735java/lang/StringBuilder/HugeCapacity.java generic-all
736
737# https://bugs.openjdk.java.net/browse/JDK-8072130
738java/lang/instrument/BootClassPath/BootClassPathTest.sh macosx-all
739
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700740## Test ignored: until bug 6835233 dealt with
741## http://bugs.java.com/view_bug.do?bug_id=6835233
742# https://bugs.openjdk.java.net/browse/JDK-8166026
vprovodind2f9ed82016-09-14 15:10:40 +0700743java/lang/instrument/ParallelTransformerLoader.sh generic-all
744
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +0700745## Test ignored: 8078602
746## http://bugs.java.com/view_bug.do?bug_id=8078602
747# https://bugs.openjdk.java.net/browse/JDK-8078602
vprovodind2f9ed82016-09-14 15:10:40 +0700748java/lang/invoke/LFCaching/LFGarbageCollectedTest.java generic-all
749
vprovodin29bc7ae2016-09-13 12:12:33 +0700750############################################################################
751
752# jdk_management
753
vprovodin48c38b32016-11-23 14:44:22 +0700754# https://bugs.openjdk.java.net/browse/JDK-8038822
755java/lang/management/MemoryMXBean/LowMemoryTest2.sh generic-all
756
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +0700757## https://bugs.openjdk.java.net/browse/JDK-8170303
758# java/lang/management/ThreadMXBean/ThreadInfoArray.java generic-all
vprovodin534b3fa2016-11-25 16:43:40 +0700759
Vitaly Provodine44fd5e2017-04-26 10:55:18 +0700760# https://bugs.openjdk.java.net/browse/JDK-8029098
761javax/management/remote/mandatory/notif/ListenerScaleTest.java generic-all
762
vprovodin163dc6b2016-09-20 14:17:26 +0700763# https://bugs.openjdk.java.net/browse/JDK-8160913
764javax/management/security/SecurityTest.java generic-all
765
Vitaly Provodine272fd82017-02-27 14:50:45 +0700766# https://bugs.openjdk.java.net/browse/JDK-8030616
Vitaly Provodin6c6b6f72017-03-09 15:49:14 +0700767sun/management/jmxremote/bootstrap/RmiBootstrapTest.sh generic-all
Vitaly Provodine272fd82017-02-27 14:50:45 +0700768
769# https://bugs.openjdk.java.net/browse/JDK-8028150
Vitaly Provodin43937952017-01-20 09:54:17 +0700770sun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +0700771
772############################################################################
773
774# jdk_jmx
775
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +0700776# https://bugs.openjdk.java.net/browse/JDK-8047295
Vitaly Provodin85e947b2017-05-18 10:56:21 +0700777# https://bugs.openjdk.java.net/browse/JDK-8031036
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +0700778com/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
Vitaly Provodincf2a1952017-06-07 11:50:12 +0700849# https://bugs.openjdk.java.net/browse/JDK-8181645
850java/net/Socket/GetLocalAddress.java windows-all
851
vprovodin29bc7ae2016-09-13 12:12:33 +0700852# 7148829
853sun/net/InetAddress/nameservice/simple/CacheTest.java generic-all
854sun/net/InetAddress/nameservice/simple/DefaultCaching.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
Vitaly Provodin9ad9e612017-05-31 11:05:11 +0700924https://bugs.openjdk.java.net/browse/JDK-8019538
925java/rmi/activation/rmidViaInheritedChannel/RmidViaInheritedChannel.java generic-all
926java/rmi/activation/rmidViaInheritedChannel/InheritedChannelNotServerSocket.java generic-all
927
vprovodin29bc7ae2016-09-13 12:12:33 +0700928# 7140992
929java/rmi/server/Unreferenced/finiteGCLatency/FiniteGCLatency.java generic-all
930
vprovodin4376b4e2016-09-28 10:22:26 +0700931# https://bugs.openjdk.java.net/browse/JDK-8029360
932java/rmi/transport/dgcDeadLock/DGCDeadLock.java generic-all
933
vprovodin29bc7ae2016-09-13 12:12:33 +0700934# 7146541
935java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
936
937# 7191877
938java/rmi/transport/checkLeaseInfoLeak/CheckLeaseLeak.java generic-all
939
940# 7195095
941sun/rmi/transport/proxy/EagerHttpFallback.java generic-all
942
943############################################################################
944
945# jdk_security
946
Vitaly Provodin36f14f22016-12-22 16:58:00 +0700947## https://bugs.openjdk.java.net/browse/JDK-7054428
948#java/security/SecureClassLoader/DefineClassByteBuffer.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +0700949
vprovodind2f9ed82016-09-14 15:10:40 +0700950# Test ignored: Must set up KDC and setup Kerberos configuration file
951javax/security/auth/kerberos/KerberosHashEqualsTest.java generic-all
952javax/security/auth/kerberos/KerberosTixDateTest.java generic-all
953
954# Test ignored: run these by hand
955com/sun/security/auth/callback/TextCallbackHandler/Password.java generic-all
956com/sun/security/auth/callback/TextCallbackHandler/Default.java generic-all
957
958# Test ignored: see runwjaas.csh for instructions for how to run this test
959com/sun/security/sasl/gsskerb/NoSecurityLayer.java generic-all
960com/sun/security/sasl/gsskerb/ConfSecurityLayer.java generic-all
961com/sun/security/sasl/gsskerb/AuthOnly.java generic-all
962
vprovodin29bc7ae2016-09-13 12:12:33 +0700963# 7157786
964sun/security/pkcs11/ec/TestKeyFactory.java generic-all
965
966# 7164518: no PortUnreachableException on Mac
967sun/security/krb5/auto/Unreachable.java macosx-all
968
969# 7147060
970com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
971
972# 6988842: 4 tests failing on Solaris 5.10
973sun/security/pkcs11/Secmod/AddPrivateKey.java solaris-all
974sun/security/pkcs11/ec/ReadCertificates.java solaris-all
975sun/security/pkcs11/ec/ReadPKCS12.java solaris-all
976sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java solaris-all
977
Vitaly Provodind20116b2017-02-13 09:17:14 +0700978# https://bugs.openjdk.java.net/browse/JDK-8074580
Vitaly Provodin85e947b2017-05-18 10:56:21 +0700979sun/security/pkcs11/Secmod/AddTrustedCert.java linux-all
980sun/security/pkcs11/tls/TestKeyMaterial.java linux-all
Vitaly Provodind20116b2017-02-13 09:17:14 +0700981sun/security/pkcs11/rsa/TestKeyPairGenerator.java generic-all
982
vprovodin29bc7ae2016-09-13 12:12:33 +0700983# 7041639, Solaris DSA keypair generation bug
984java/security/KeyPairGenerator/SolarisShortDSA.java solaris-all
985sun/security/tools/keytool/standard.sh solaris-all
986
987# 8026393
988sun/security/tools/jarsigner/warnings/BadKeyUsageTest.java generic-all
989
990# 8158827
991sun/security/krb5/auto/tools/KinitConfPlusProps.java windows-all
992
993############################################################################
994
vprovodin29bc7ae2016-09-13 12:12:33 +0700995# jdk_swing
996
vprovodin163dc6b2016-09-20 14:17:26 +0700997# https://bugs.openjdk.java.net/browse/JDK-8060765
vprovodin48c38b32016-11-23 14:44:22 +0700998javax/swing/AbstractButton/6711682/bug6711682.java generic-all
vprovodinc9acc382016-11-18 16:49:57 +0700999
1000# https://bugs.openjdk.java.net/browse/JDK-8143021
1001javax/swing/JColorChooser/Test6541987.java generic-all
1002
1003# https://bugs.openjdk.java.net/browse/JDK-8076178
1004javax/swing/JColorChooser/Test7194184.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001005
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001006# https://bugs.openjdk.java.net/browse/JDK-8171302
1007javax/swing/JComboBox/4743225/bug4743225.java generic-all
1008
1009# https://bugs.openjdk.java.net/browse/JDK-8028707
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001010javax/swing/JComboBox/6236162/bug6236162.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001011
vprovodinf10a8df2016-09-16 14:43:40 +07001012# https://bugs.openjdk.java.net/browse/JDK-8040797
1013javax/swing/JComboBox/8032878/bug8032878.java generic-all
1014
vprovodin163dc6b2016-09-20 14:17:26 +07001015# https://bugs.openjdk.java.net/browse/JDK-8033069
1016javax/swing/JComboBox/8033069/bug8033069NoScrollBar.java generic-all
1017
vprovodin798153c2016-09-30 14:52:04 +07001018# https://bugs.openjdk.java.net/browse/JDK-8163367
1019javax/swing/JComboBox/8033069/bug8033069ScrollBar.java generic-all
1020
vprovodinc9acc382016-11-18 16:49:57 +07001021# https://bugs.openjdk.java.net/browse/JDK-8169953
1022javax/swing/JComboBox/8057893/bug8057893.java windows-all
1023
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001024# https://bugs.openjdk.java.net/browse/JDK-8136998
1025javax/swing/JComboBox/8136998/bug8136998.java generic-all
1026
vprovodinf10a8df2016-09-16 14:43:40 +07001027# http://bugs.java.com/view_bug.do?bug_id=8067986
vprovodin4376b4e2016-09-28 10:22:26 +07001028javax/swing/JComboBox/ConsumedKeyTest/ConsumedKeyTest.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +07001029
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001030# https://bugs.openjdk.java.net/browse/JDK-8172337
1031javax/swing/JComponent/6683775/bug6683775.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +07001032
vprovodin4376b4e2016-09-28 10:22:26 +07001033# https://bugs.openjdk.java.net/browse/JDK-7190978
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001034javax/swing/JComponent/7154030/bug7154030.java generic-all
1035
Vitaly Provodin43937952017-01-20 09:54:17 +07001036# https://bugs.openjdk.java.net/browse/JDK-8016559
1037javax/swing/JEditorPane/6917744/bug6917744.java windows-all
1038
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001039# https://bugs.openjdk.java.net/browse/JDK-8042380
1040javax/swing/JFileChooser/4524490/bug4524490.java generic-all
vprovodin4376b4e2016-09-28 10:22:26 +07001041
vprovodin163dc6b2016-09-20 14:17:26 +07001042# https://bugs.openjdk.java.net/browse/JDK-8058231
1043javax/swing/JFileChooser/6396844/TwentyThousandTest.java generic-all
1044
1045# https://bugs.openjdk.java.net/browse/JDK-8087110
1046javax/swing/JFileChooser/8002077/bug8002077.java generic-all
1047
vprovodinc9acc382016-11-18 16:49:57 +07001048# https://bugs.openjdk.java.net/browse/JDK-8169954
Vitaly Provodin5bf2ba82017-03-07 15:55:46 +07001049javax/swing/JFileChooser/8021253/bug8021253.java generic-all
vprovodinc9acc382016-11-18 16:49:57 +07001050
vprovodinf10a8df2016-09-16 14:43:40 +07001051# https://bugs.openjdk.java.net/browse/JDK-8064715
1052javax/swing/JFileChooser/8062561/bug8062561.java generic-all
1053
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001054# https://bugs.openjdk.java.net/browse/JDK-8170721
1055javax/swing/JFrame/4962534/bug4962534.html macosx-all
Vitaly Provodin5d023a32016-12-06 10:31:27 +07001056
vprovodinc9acc382016-11-18 16:49:57 +07001057# https://bugs.openjdk.java.net/browse/JDK-8169955
1058javax/swing/JFrame/8016356/bug8016356.java windows-all
1059
vprovodin8616ab32016-10-19 18:52:13 +07001060# https://bugs.openjdk.java.net/browse/JDK-8007719
1061javax/swing/JInternalFrame/5066752/bug5066752.java generic-all
1062
vprovodinf10a8df2016-09-16 14:43:40 +07001063# https://bugs.openjdk.java.net/browse/JDK-8032568
1064javax/swing/JInternalFrame/8020708/bug8020708.java generic-all
1065
vprovodin163dc6b2016-09-20 14:17:26 +07001066# https://bugs.openjdk.java.net/browse/JDK-8160880
vprovodin798153c2016-09-30 14:52:04 +07001067javax/swing/JInternalFrame/Test6325652.java generic-all
1068
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001069# https://bugs.openjdk.java.net/browse/JDK-8172535
1070javax/swing/JInternalFrame/Test6505027.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001071
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001072# https://bugs.openjdk.java.net/browse/JDK-8040914
1073javax/swing/JLabel/6596966/bug6596966.java generic-all
1074
vprovodin163dc6b2016-09-20 14:17:26 +07001075# https://bugs.openjdk.java.net/browse/JDK-8003972
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001076javax/swing/JList/6462008/bug6462008.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001077
vprovodinc9acc382016-11-18 16:49:57 +07001078# https://bugs.openjdk.java.net/browse/JDK-8040915
1079javax/swing/JMenu/4515762/bug4515762.java generic-all
1080
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001081https://bugs.openjdk.java.net/browse/JDK-8171998
1082javax/swing/JMenu/4692443/bug4692443.java windows-all
1083
vprovodinc9acc382016-11-18 16:49:57 +07001084# https://bugs.openjdk.java.net/browse/JDK-8142534
1085javax/swing/JMenu/8072900/WrongSelectionOnMouseOver.java generic-all
1086
Vitaly Provodin965f53e2017-03-27 15:57:07 +07001087# https://bugs.openjdk.java.net/browse/JDK-8158496
1088javax/swing/JMenuBar/4750590/bug4750590.java windows-all
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001089
vprovodinc9acc382016-11-18 16:49:57 +07001090# https://bugs.openjdk.java.net/browse/JDK-8040916
1091javax/swing/JMenuItem/4171437/bug4171437.java generic-all
1092
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001093# https://bugs.openjdk.java.net/browse/JDK-8172536
1094javax/swing/JMenuItem/4654927/bug4654927.java windows-all
vprovodin8616ab32016-10-19 18:52:13 +07001095
vprovodin163dc6b2016-09-20 14:17:26 +07001096# https://bugs.openjdk.java.net/browse/JDK-8025083
1097javax/swing/JMenuItem/6209975/bug6209975.java generic-all
1098
Vitaly Provodin5d023a32016-12-06 10:31:27 +07001099https://bugs.openjdk.java.net/browse/JDK-8139169
1100javax/swing/JMenuItem/ActionListenerCalledTwice/ActionListenerCalledTwiceTest.java macosx-all
1101
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001102# https://bugs.openjdk.java.net/browse/JDK-7124548
1103javax/swing/JOptionPane/6464022/bug6464022.java macosx-all
1104
vprovodinc9acc382016-11-18 16:49:57 +07001105# https://bugs.openjdk.java.net/browse/JDK-8040917
1106javax/swing/JPopupMenu/4458079/bug4458079.java generic-all
1107
vprovodina8c69352016-09-22 11:20:03 +07001108# https://bugs.openjdk.java.net/browse/JDK-8064915
vprovodin02ff3162016-10-28 10:08:30 +07001109# https://bugs.openjdk.java.net/browse/JDK-8074385
1110javax/swing/JPopupMenu/4966112/bug4966112.java generic-all
vprovodina8c69352016-09-22 11:20:03 +07001111
vprovodind781c422016-10-13 09:31:09 +07001112# https://bugs. openjdk.java.net/browse/JDK-7184956
vprovodincfaf05a2016-10-04 09:45:22 +07001113javax/swing/JPopupMenu/6800513/bug6800513.java generic-all
1114
vprovodinc9acc382016-11-18 16:49:57 +07001115# https://bugs.openjdk.java.net/browse/JDK-8042378
vprovodin163dc6b2016-09-20 14:17:26 +07001116# https://bugs.openjdk.java.net/browse/JDK-8156460
vprovodinc9acc382016-11-18 16:49:57 +07001117javax/swing/JPopupMenu/6827786/bug6827786.java generic-all
1118
1119# https://bugs.openjdk.java.net/browse/JDK-8169956
1120javax/swing/JPopupMenu/6987844/bug6987844.java windows-all
vprovodin163dc6b2016-09-20 14:17:26 +07001121
vprovodina8c69352016-09-22 11:20:03 +07001122# https://bugs.openjdk.java.net/browse/JDK-7185563
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001123# https://bugs.openjdk.java.net/browse/JDK-8171381
1124javax/swing/JPopupMenu/7156657/bug7156657.java generic-all
vprovodina8c69352016-09-22 11:20:03 +07001125
vprovodin163dc6b2016-09-20 14:17:26 +07001126# https://bugs.openjdk.java.net/browse/JDK-8064920
vprovodin4376b4e2016-09-28 10:22:26 +07001127javax/swing/JRadioButton/8033699/bug8033699.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001128
Vitaly Provodine38a0f02017-02-01 07:59:08 +03001129# https://bugs.openjdk.java.net/browse/JDK-8136371
1130javax/swing/JRadioButton/8075609/bug8075609.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +07001131
vprovodinc9acc382016-11-18 16:49:57 +07001132# https://bugs.openjdk.java.net/browse/JDK-8042381
1133javax/swing/JRootPane/4670486/bug4670486.java generic-all
1134
1135# https://bugs.openjdk.java.net/browse/JDK-8145647 linux
1136# https://bugs.openjdk.java.net/browse/JDK-8169957
1137javax/swing/JScrollBar/4708809/bug4708809.java generic-all
vprovodina8c69352016-09-22 11:20:03 +07001138
Vitaly Provodin36f14f22016-12-22 16:58:00 +07001139## https://bugs.openjdk.java.net/browse/JDK-8024407
1140#javax/swing/JScrollBar/7163696/Test7163696.java macosx-all
vprovodin163dc6b2016-09-20 14:17:26 +07001141
Vitaly Provodin965f53e2017-03-27 15:57:07 +07001142# https://bugs.openjdk.java.net/browse/JDK-8028618
1143javax/swing/JScrollBar/bug4202954/bug4202954.java windows-all
1144
vprovodinc9acc382016-11-18 16:49:57 +07001145# https://bugs.openjdk.java.net/browse/JDK-8169960
1146javax/swing/JScrollPane/HorizontalMouseWheelOnShiftPressed/HorizontalMouseWheelOnShiftPressed.java windows-all
1147
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001148# https://bugs.openjdk.java.net/browse/JDK-8172539
Vitaly Provodin43937952017-01-20 09:54:17 +07001149javax/swing/JSlider/6348946/bug6348946.java windows-all
vprovodin798153c2016-09-30 14:52:04 +07001150
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001151# https://bugs.openjdk.java.net/browse/JDK-8172408
1152javax/swing/JSpinner/4973721/bug4973721.java generic-all
vprovodin8616ab32016-10-19 18:52:13 +07001153
vprovodinc9acc382016-11-18 16:49:57 +07001154# https://bugs.openjdk.java.net/browse/JDK-8169958
1155javax/swing/JSpinner/5012888/bug5012888.java windows-all
1156
1157# https://bugs.openjdk.java.net/browse/JDK-8019935
1158javax/swing/JSplitPane/4885629/bug4885629.java generic-all
1159
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001160# https://bugs.openjdk.java.net/browse/JDK-7033533
Vitaly Provodin1d378fa2017-03-01 16:03:04 +07001161javax/swing/JComboBox/4199622/bug4199622.java linux-all
Vitaly Provodinf9167582017-05-03 16:53:24 +07001162javax/swing/JInternalFrame/Test6802868.java linux-all
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +07001163javax/swing/JPopupMenu/6495920/bug6495920.java linux-all
Vitaly Provodinf9167582017-05-03 16:53:24 +07001164javax/swing/JTable/4220171/bug4220171.java linux-all
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +07001165javax/swing/Security/6657138/ComponentTest.java linux-all
Vitaly Provodinf9167582017-05-03 16:53:24 +07001166javax/swing/text/html/CSS/4530474/bug4530474.java linux-all
vprovodinc9acc382016-11-18 16:49:57 +07001167
1168# https://bugs.openjdk.java.net/browse/JDK-8169959
1169javax/swing/JTable/6263446/bug6263446.java windows-all
1170
1171# https://bugs.openjdk.java.net/browse/JDK-8169952
1172javax/swing/JTableHeader/6884066/bug6884066.java windows-all
vprovodin4376b4e2016-09-28 10:22:26 +07001173
jetbrains_tester96adf012016-12-02 14:15:42 +07001174# https://bugs.openjdk.java.net/browse/JDK-7179842
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001175javax/swing/JTableHeader/6889007/bug6889007.java generic-all
jetbrains_tester96adf012016-12-02 14:15:42 +07001176
vprovodin534b3fa2016-11-25 16:43:40 +07001177# https://bugs.openjdk.java.net/browse/JDK-8170260
1178javax/swing/JTabbedPane/4361477/bug4361477.java generic-all
1179
Vitaly Provodin43937952017-01-20 09:54:17 +07001180# https://bugs.openjdk.java.net/browse/JDK-8064922
1181# https://bugs.openjdk.java.net/browse/JDK-8171997
1182javax/swing/JTabbedPane/4624207/bug4624207.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001183
1184# https://bugs.openjdk.java.net/browse/JDK-8028281
1185javax/swing/JTabbedPane/7024235/Test7024235.java macosx-all
1186
vprovodinf10a8df2016-09-16 14:43:40 +07001187# https://bugs.openjdk.java.net/browse/JDK-8051591
vprovodin4376b4e2016-09-28 10:22:26 +07001188javax/swing/JTabbedPane/8007563/Test8007563.java generic-all
vprovodinf10a8df2016-09-16 14:43:40 +07001189
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001190# https://bugs.openjdk.java.net/browse/JDK-8145645
1191javax/swing/JTextField/8036819/bug8036819.java generic-all
1192
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001193# https://bugs.openjdk.java.net/browse/JDK-8172407
1194javax/swing/JToolTip/4846413/bug4846413.java generic-all
1195
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001196# https://bugs.openjdk.java.net/browse/JDK-8029682
1197javax/swing/JTree/4330357/bug4330357.java windows-all
1198
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001199# https://bugs.openjdk.java.net/browse/JDK-8172065
Vitaly Provodin43937952017-01-20 09:54:17 +07001200javax/swing/JTree/4908142/bug4908142.java generic-all
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001201
1202# https://bugs.openjdk.java.net/browse/JDK-8172063
1203javax/swing/JTree/4927934/bug4927934.java windows-all
1204
vprovodinf10a8df2016-09-16 14:43:40 +07001205# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8011259
1206javax/swing/JTree/8003400/Test8003400.java generic-all
1207
vprovodina8c69352016-09-22 11:20:03 +07001208# https://bugs.openjdk.java.net/browse/JDK-7105119
1209javax/swing/MultiUIDefaults/4300666/bug4300666.java macosx-all
1210
vprovodin163dc6b2016-09-20 14:17:26 +07001211# https://bugs.openjdk.java.net/browse/JDK-8065099
1212javax/swing/PopupFactory/6276087/NonOpaquePopupMenuTest.java macosx-all
1213
vprovodinf10a8df2016-09-16 14:43:40 +07001214# http://bugs.java.com/view_bug.do?bug_id=8008119
1215javax/swing/RepaintManager/IconifyTest/IconifyTest.java generic-all
1216
vprovodin163dc6b2016-09-20 14:17:26 +07001217# https://bugs.openjdk.java.net/browse/JDK-8015602
1218javax/swing/SpringLayout/4726194/bug4726194.java macosx-all
1219
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001220# https://bugs.openjdk.java.net/browse/JDK-8172064
1221javax/swing/SwingUtilities/4917669/bug4917669.java windows-all
1222
Vitaly Provodind20116b2017-02-13 09:17:14 +07001223# https://bugs.openjdk.java.net/browse/JDK-8072110
1224javax/swing/SwingUtilities/7088744/bug7088744.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001225
vprovodina8c69352016-09-22 11:20:03 +07001226# https://bugs.openjdk.java.net/browse/JDK-8079253
1227javax/swing/SwingUtilities/TestBadBreak/TestBadBreak.java linux-all
1228
jetbrains_tester96adf012016-12-02 14:15:42 +07001229# https://bugs.openjdk.java.net/browse/JDK-8167009
1230javax/swing/ToolTipManager/Test6256140.java generic-all
1231
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001232# https://bugs.openjdk.java.net/browse/JDK-8042383
1233javax/swing/plaf/basic/BasicMenuUI/4983388/bug4983388.java generic-all
1234
Vitaly Provodin43937952017-01-20 09:54:17 +07001235# https://bugs.openjdk.java.net/browse/JDK-8137101
1236javax/swing/plaf/basic/BasicHTML/4251579/bug4251579.java generic-all
1237
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +07001238# https://bugs.openjdk.java.net/browse/JDK-8140237
1239javax/swing/plaf/nimbus/8041642/bug8041642.java generic-all
vprovodin8616ab32016-10-19 18:52:13 +07001240
vprovodin163dc6b2016-09-20 14:17:26 +07001241# https://bugs.openjdk.java.net/browse/JDK-8160438
1242javax/swing/plaf/nimbus/8057791/bug8057791.java macosx-all
1243
Vitaly Provodin5d023a32016-12-06 10:31:27 +07001244# https://bugs.openjdk.java.net/browse/JDK-8170722
1245javax/swing/plaf/synth/7158712/bug7158712.java generic-all
1246
vprovodin8616ab32016-10-19 18:52:13 +07001247# https://bugs.openjdk.java.net/browse/JDK-8081478
1248javax/swing/plaf/synth/SynthButtonUI/6276188/bug6276188.java generic-all
1249
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001250# https://bugs.openjdk.java.net/browse/JDK-8172071
1251javax/swing/plaf/windows/WindowsRootPaneUI/WrongAltProcessing/WrongAltProcessing.java windows-all
1252
vprovodina8c69352016-09-22 11:20:03 +07001253# https://bugs.openjdk.java.net/browse/JDK-8130895
1254javax/swing/system/6799345/TestShutdown.java linux-all
1255
jetbrains_tester96adf012016-12-02 14:15:42 +07001256# https://bugs.openjdk.java.net/browse/JDK-8003533
1257javax/swing/text/CSSBorder/6796710/bug6796710.java generic-all
1258
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001259# https://bugs.openjdk.java.net/browse/JDK-8063107
vprovodinf10a8df2016-09-16 14:43:40 +07001260javax/swing/text/DefaultEditorKit/4278839/bug4278839.java generic-all
1261
vprovodin02ff3162016-10-28 10:08:30 +07001262# https://bugs.openjdk.java.net/browse/JDK-8050988
1263javax/swing/text/GlyphPainter2/6427244/bug6427244.java generic-all
1264
Vitaly Provodin36f14f22016-12-22 16:58:00 +07001265## https://bugs.openjdk.java.net/browse/JDK-7147408
1266#javax/swing/text/StyledEditorKit/4506788/bug4506788.java generic-all
vprovodin798153c2016-09-30 14:52:04 +07001267
Vitaly Provodinb185a802017-06-02 11:08:09 +07001268https://bugs.openjdk.java.net/browse/JDK-8145644
1269javax/swing/text/View/8048110/bug8048110.java generic-all
1270
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001271# https://bugs.openjdk.java.net/browse/JDK-8041944
1272javax/swing/text/View/8014863/bug8014863.java generic-all
1273
vprovodin163dc6b2016-09-20 14:17:26 +07001274# http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8076178
1275javax/swing/text/html/HTMLEditorKit/5043626/bug5043626.java generic-all
1276
1277# https://bugs.openjdk.java.net/browse/JDK-8022535
vprovodin4376b4e2016-09-28 10:22:26 +07001278javax/swing/text/html/parser/Test8017492.java generic-all
vprovodin163dc6b2016-09-20 14:17:26 +07001279
vprovodind2f9ed82016-09-14 15:10:40 +07001280# https://bugs.openjdk.java.net/browse/JDK-6962725
1281javax/swing/JFileChooser/6738668/bug6738668.java generic-all
1282
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001283# https://bugs.openjdk.java.net/browse/JDK-8049313
1284javax/swing/JTable/7068740/bug7068740.java generic-all
vprovodind2f9ed82016-09-14 15:10:40 +07001285
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001286# https://bugs.openjdk.java.net/browse/JDK-8032895
1287javax/swing/JTextArea/4697612/bug4697612.java linux-all
vprovodind2f9ed82016-09-14 15:10:40 +07001288
vprovodin29bc7ae2016-09-13 12:12:33 +07001289############################################################################
1290
1291# jdk_text
1292
1293############################################################################
1294
1295# jdk_time
1296
1297############################################################################
1298
1299# jdk_tools
1300
1301# Tests take too long, on sparcs see 7143279
1302tools/pack200/CommandLineTests.java solaris-all, macosx-all
1303tools/pack200/Pack200Test.java solaris-all, macosx-all
1304
Vitaly Provodine38a0f02017-02-01 07:59:08 +03001305# https://bugs.openjdk.java.net/browse/JDK-8140611
1306tools/pack200/UnpackerMemoryTest.java linux-all
1307
Vitaly Provodine272fd82017-02-27 14:50:45 +07001308# https://bugs.openjdk.java.net/browse/JDK-8130392
Vitaly Provodin3bdb4f02017-01-26 15:41:30 +07001309tools/launcher/FXLauncherTest.java generic-all
vprovodin29bc7ae2016-09-13 12:12:33 +07001310
Vitaly Provodin85e947b2017-05-18 10:56:21 +07001311# https://bugs.openjdk.java.net/browse/JDK-8180478
1312tools/launcher/MultipleJRE.sh windows_all
1313
vprovodin29bc7ae2016-09-13 12:12:33 +07001314############################################################################
1315
1316# jdk_jdi
1317
1318############################################################################
1319
1320# jdk_util
1321
1322# Filed 6772009
1323java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
1324
vprovodind2f9ed82016-09-14 15:10:40 +07001325# Test ignored: Bug fix temporarily removed as it uncovered other bugs (4992226)
1326java/util/AbstractList/CheckForComodification.java generic-all
1327
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001328## https://bugs.openjdk.java.net/browse/JDK-8060093
1329# java/util/Currency/CurrencyTest.java generic-all
1330# java/util/Currency/ValidateISO4217.java generic-all
vprovodin798153c2016-09-30 14:52:04 +07001331
vprovodind2f9ed82016-09-14 15:10:40 +07001332# Test ignored: until 6842022 is resolved
1333java/util/ResourceBundle/RestrictedBundleTest.java generic-all
1334
1335#Test ignored: 6876961
1336java/util/ResourceBundle/Test4300693.java generic-all
1337
Vitaly Provodine5b7d3a2017-02-27 15:05:02 +07001338#Test ignored: until 6842353 is resolved
1339# https://bugs.openjdk.java.net/browse/JDK-6842353
vprovodind2f9ed82016-09-14 15:10:40 +07001340java/util/WeakHashMap/GCDuringIteration.java generic-all
1341
1342# Test ignored: runs for hours and eats up 7 Gigabytes of disk space
1343java/util/zip/3GBZipFiles.sh generic-all
1344
vprovodin29bc7ae2016-09-13 12:12:33 +07001345############################################################################
1346
1347# svc_tools
1348
1349# 8031482
1350sun/tools/jcmd/TestJcmdSanity.java windows-all
1351
1352# 6456333
1353sun/tools/jps/TestJpsJarRelative.java generic-all
1354
Vitaly Provodind20116b2017-02-13 09:17:14 +07001355# https://bugs.openjdk.java.net/browse/JDK-8165727
1356sun/tools/jstatd/TestJstatdExternalRegistry.java generic-all
1357
vprovodin29bc7ae2016-09-13 12:12:33 +07001358############################################################################
vprovodin48c38b32016-11-23 14:44:22 +07001359
1360# 1. cannot be executed under TC against Oracle JDK
1361# located at directory containing spaces in its name
1362# 2. it requires jar which does not exist in our OpenJDK builds
1363# 3.
vprovodineaabe412016-11-30 14:35:53 +07001364javax/imageio/stream/StreamCloserLeak/run_test.sh generic-all
1365
1366# https://bugs.openjdk.java.net/browse/JDK-8011371
1367sun/awt/datatransfer/SuplementaryCharactersTransferTest.java generic-all
1368
1369# https://bugs.openjdk.java.net/browse/JDK-8142540
1370sun/awt/dnd/8024061/bug8024061.java linux-all
1371
Vitaly Provodin965f53e2017-03-27 15:57:07 +07001372# https://bugs.openjdk.java.net/browse/JDK-8042098
1373sun/java2d/AcceleratedXORModeTest.java windows-all
1374
Vitaly Provodin43937952017-01-20 09:54:17 +07001375# https://bugs.openjdk.java.net/browse/JDK-8172888
1376sun/java2d/DirectX/InfiniteValidationLoopTest/InfiniteValidationLoopTest.java windows-all
1377
vprovodineaabe412016-11-30 14:35:53 +07001378# https://bugs.openjdk.java.net/browse/JDK-8022403
1379sun/java2d/DirectX/OnScreenRenderingResizeTest/OnScreenRenderingResizeTest.java macosx-all
1380
1381# https://bugs.openjdk.java.net/browse/JDK-7148533
1382sun/java2d/DirectX/OverriddenInsetsTest/OverriddenInsetsTest.java generic-all
1383
1384# https://bugs.openjdk.java.net/browse/JDK-8031433
1385sun/java2d/OpenGL/GradientPaints.java generic-all
1386
1387# https://bugs.openjdk.java.net/browse/JDK-8144033
1388sun/java2d/DirectX/RenderingToCachedGraphicsTest/RenderingToCachedGraphicsTest.java generic-all
1389
Vitaly Provodin43937952017-01-20 09:54:17 +07001390# https://bugs.openjdk.java.net/browse/JDK-7124403
1391sun/java2d/GdiRendering/InsetClipping.java generic-all
1392
vprovodineaabe412016-11-30 14:35:53 +07001393# https://bugs.openjdk.java.net/browse/JDK-8047703
1394sun/java2d/SunGraphics2D/DrawImageBilinear.java generic-all
1395
1396# https://bugs.openjdk.java.net/browse/JDK-6258137
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001397# https://bugs.openjdk.java.net/browse/JDK-6986565
1398sun/java2d/SunGraphics2D/PolyVertTest.java generic-all
vprovodineaabe412016-11-30 14:35:53 +07001399
1400# https://bugs.openjdk.java.net/browse/JDK-7124403
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001401# https://bugs.openjdk.java.net/browse/JDK-6992007
1402sun/java2d/SunGraphics2D/SimplePrimQuality.java generic-all
vprovodineaabe412016-11-30 14:35:53 +07001403
1404# https://bugs.openjdk.java.net/browse/JDK-8159142
1405sun/java2d/SunGraphics2D/SourceClippingBlitTest/SourceClippingBlitTest.java generic-all
1406
1407# https://bugs.openjdk.java.net/browse/JDK-7184899
Vitaly Provodin20b63f62016-12-15 14:19:24 +07001408# it blocks jtreg on Windows
1409sun/java2d/X11SurfaceData/SharedMemoryPixmapsTest/SharedMemoryPixmapsTest.sh generic-all
vprovodineaabe412016-11-30 14:35:53 +07001410
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001411# https://bugs.openjdk.java.net/browse/JDK-8171303
1412sun/java2d/pipe/InterpolationQualityTest.java generic-all
1413
Vitaly Provodin1fe8d602017-03-04 06:42:00 +07001414# https://bugs.openjdk.java.net/browse/JDK-8058767
1415sun/jvmstat/monitor/MonitoredVm/MonitorVmStartTerminate.java windows-all
1416
vprovodineaabe412016-11-30 14:35:53 +07001417# https://bugs.openjdk.java.net/browse/JDK-8046046
1418sun/security/pkcs11/Signature/TestDSAKeyLength.java generic-all
1419
1420# https://bugs.openjdk.java.net/browse/JDK-8142541
1421sun/security/pkcs11/ec/TestECDH.java linux-all
1422sun/security/pkcs11/ec/TestECDSA.java linux-all
1423sun/security/pkcs11/ec/TestECGenSpec.java linux-all
1424
1425# https://bugs.openjdk.java.net/browse/JDK-7057022
1426sun/security/pkcs11/fips/ClientJSSEServerJSSE.java generic-all
1427
1428# https://bugs.openjdk.java.net/browse/JDK-8160071
1429sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java generic-all
1430
1431# https://bugs.openjdk.java.net/browse/JDK-8039280
1432sun/security/provider/PolicyFile/GrantAllPermToExtWhenNoPolicy.java generic-all
1433
1434# https://bugs.openjdk.java.net/browse/JDK-8033271
1435sun/security/provider/PolicyParser/ExtDirs.java generic-all
1436sun/security/provider/PolicyParser/ExtDirsChange.java generic-all
1437sun/security/provider/PolicyParser/ExtDirsDefaultPolicy.java generic-all
1438sun/security/provider/PolicyParser/PrincipalExpansionError.java generic-all
1439sun/security/tools/keytool/i18n.sh generic-all
1440
Vitaly Provodin3ed5f382017-01-12 11:41:49 +07001441# https://bugs.openjdk.java.net/browse/JDK-8130151
1442sun/security/provider/SecureRandom/StrongSecureRandom.java macosx-all
1443
Vitaly Provodin36f14f22016-12-22 16:58:00 +07001444## https://bugs.openjdk.java.net/browse/JDK-7083664
1445#sun/security/tools/jarsigner/diffend.sh windows-all
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001446
vprovodineaabe412016-11-30 14:35:53 +07001447# https://bugs.openjdk.java.net/browse/JDK-8011134
1448sun/security/ssl/com/sun/net/ssl/internal/ssl/X509TrustManagerImpl/ClientServer.java generic-all
1449
1450# https://bugs.openjdk.java.net/browse/JDK-8039130
1451sun/security/ssl/javax/net/ssl/NewAPIs/CheckMyTrustedKeystore.java generic-all
1452sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/Basics.java generic-all
1453sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/TestAllSuites.java generic-all
1454sun/security/ssl/sanity/ciphersuites/CheckCipherSuites.java generic-all
1455sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/CloseKeepAliveCached.java generic-all
1456
Vitaly Provodinbc9b53d2016-12-22 16:13:47 +07001457# https://bugs.openjdk.java.net/browse/JDK-8171489
1458sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java linux-all
1459
Vitaly Provodin3bdb4f02017-01-26 15:41:30 +07001460# https://bugs.openjdk.java.net/browse/JDK-8160023
1461sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/PostThruProxyWithAuth.sh generic-all
1462
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001463# https://bugs.openjdk.java.net/browse/JDK-8160624
1464sun/security/tools/keytool/printssl.sh windows-all
1465
vprovodineaabe412016-11-30 14:35:53 +07001466# expected failure on JBRE
Anton Tarasov72fba572016-12-06 13:33:40 +03001467sun/misc/Version/Version.java generic-all
1468
1469# https://youtrack.jetbrains.com/issue/JRE-128
1470java/awt/image/multiresolution/MultiDisplayTest/MultiDisplayTest.java generic-all
1471java/awt/image/multiresolution/MultiResolutionIcon/IconTest.java generic-all
1472java/awt/image/multiresolution/MultiResolutionTrayIconTest/MultiResolutionTrayIconTest.java generic-all
1473java/awt/image/multiresolution/BaseMultiResolutionImageTest.java generic-all
1474java/awt/image/multiresolution/Corrupted2XImageTest.java generic-all
1475java/awt/image/multiresolution/MenuMultiresolutionIconTest.java generic-all
1476java/awt/image/multiresolution/MultiResolutionIcon/MultiResIconTest.java generic-all
1477java/awt/image/multiresolution/MultiResolutionCachedImageTest.java generic-all
1478java/awt/image/multiresolution/MultiresolutionIconTest.java generic-all
1479java/awt/image/multiresolution/MultiResolutionImagePropertiesTest.java generic-all
1480java/awt/image/multiresolution/MultiResolutionJOptionPaneIconTest.java generic-all
1481java/awt/image/multiresolution/MultiResolutionRenderingHintsTest.java generic-all
1482java/awt/image/multiresolution/MultiresolutionSourceTest.java generic-all
1483java/awt/image/multiresolution/MultiResolutionToolkitImageTest.java generic-all
Anton Tarasov6f595152016-12-06 14:59:12 +03001484java/awt/image/multiresolution/MultiResolutionImageObserverTest.java gereric-all
1485java/awt/image/multiresolution/MultiResolutionDrawImageWithTransformTest.java gereric-all
Anton Tarasov72fba572016-12-06 13:33:40 +03001486java/awt/image/MultiResolutionImage/MultiResolutionDisabledImageTest.java generic-all
1487java/awt/image/MultiResolutionImage/MultiResolutionDrawImageWithTransformTest.java generic-all
1488java/awt/image/MultiResolutionImage/NSImageToMultiResolutionImageTest.java generic-all
1489java/awt/image/MultiResolutionImageCommonTest.java generic-all
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001490java/awt/image/MultiResolutionImageTest.java generic-all
1491
1492# ignored
Vitaly Provodin43937952017-01-20 09:54:17 +07001493com/sun/crypto/provider/Cipher/DES/PerformanceTest.java generic-all
1494com/sun/jdi/PopAndInvokeTest.java generic-all
1495com/sun/security/auth/callback/DialogCallbackHandler/Default.java generic-all
1496com/sun/security/auth/callback/TextCallbackHandler/Default.java generic-all
1497com/sun/tracing/BasicFunctionality.java generic-all
Vitaly Provodinc8b4b9d2016-12-29 11:20:26 +07001498# Uses certutil.exe that isn't guaranteed to be installed
Vitaly Provodin43937952017-01-20 09:54:17 +07001499sun/security/mscapi/nonUniqueAliases/NonUniqueAliases.sh generic-all
1500
1501## https://bugs.openjdk.java.net/browse/JDK-8150070
1502# https://bugs.openjdk.java.net/browse/JDK-8145552
1503com/sun/jdi/ArrayLengthDumpTest.sh windows-all
1504com/sun/jdi/BreakpointWithFullGC.sh windows-all
1505com/sun/jdi/CatchCaughtTest.sh windows-all
1506com/sun/jdi/CatchPatternTest.sh windows-all
1507com/sun/jdi/GetLocalVariables3Test.sh windows-all
1508com/sun/jdi/GetLocalVariables4Test.sh windows-all
1509com/sun/jdi/JdbMethodExitTest.sh windows-all
1510com/sun/jdi/JdbMissStep.sh windows-all
1511com/sun/jdi/JdbVarargsTest.sh windows-all
1512com/sun/jdi/NotAField.sh windows-all
1513com/sun/jdi/Redefine-g.sh windows-all
1514com/sun/jdi/RedefineAbstractClass.sh windows-all
1515com/sun/jdi/RedefineImplementor.sh windows-all
1516com/sun/jdi/RedefineMulti.sh windows-all
1517
Vitaly Provodina446cf22017-04-13 17:34:28 +07001518# https://bugs.openjdk.java.net/browse/JDK-6822627
1519com/sun/jdi/ConstantPoolInfoGC.java generic-all
1520
Vitaly Provodin358c5e42017-04-13 14:51:48 +07001521# https://bugs.openjdk.java.net/browse/JDK-8054066
1522com/sun/jdi/DoubleAgentTest.java generic-all
1523
Vitaly Provodin1d378fa2017-03-01 16:03:04 +07001524# https://bugs.openjdk.java.net/browse/JDK-8151887
1525com/sun/jdi/RedefineClearBreakpoint.sh generic-all
1526
Vitaly Provodin43937952017-01-20 09:54:17 +07001527# https://bugs.openjdk.java.net/browse/JDK-8141694
1528# https://bugs.openjdk.java.net/browse/JDK-8075066
1529com/sun/nio/sctp/SctpChannel/SocketOptionTests.java linux-all
1530
1531# https://bugs.openjdk.java.net/browse/JDK-8141694
1532com/sun/nio/sctp/SctpMultiChannel/SocketOptionTests.java linux-all
1533
Vitaly Provodin9ad9e612017-05-31 11:05:11 +07001534https://bugs.openjdk.java.net/browse/JDK-8022224
1535sun/nio/cs/FindDecoderBugs.java linux-all
1536
Vitaly Provodin43937952017-01-20 09:54:17 +07001537# https://bugs.openjdk.java.net/browse/JDK-8172887
1538com/sun/awt/Translucency/WindowOpacity.java windows-all
Vitaly Provodinb1b8c962017-04-26 09:33:31 +07001539java/awt/DataFlavor/MissedHtmlAndRtfBug/MissedHtmlAndRtfBug.html generic-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001540java/awt/Focus/FocusEmbeddedFrameTest/FocusEmbeddedFrameTest.java windows-all
Vitaly Provodin85e947b2017-05-18 10:56:21 +07001541java/awt/Frame/NormalToIconified/NormalToIconifiedTest.java generic-all
1542java/awt/Frame/ObscuredFrame/ObscuredFrameTest.java linux-all
Vitaly Provodin358c5e42017-04-13 14:51:48 +07001543java/awt/FullScreen/TranslucentWindow/TranslucentWindow.java windows-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001544java/awt/Mixing/MixingInHwPanel.java windows-all
Vitaly Provodin903741b2017-05-26 10:21:39 +07001545java/awt/event/MouseEvent/EnterAsGrabbedEvent/EnterAsGrabbedEvent.java generic-all
Vitaly Provodin85e947b2017-05-18 10:56:21 +07001546java/awt/event/MouseEvent/RobotLWTest/RobotLWTest.html windows-all
Vitaly Provodine272fd82017-02-27 14:50:45 +07001547java/awt/TextArea/Mixing/TextAreaMixing.java windows-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001548java/awt/dnd/NoFormatsCrashTest/NoFormatsCrashTest.html windows-all
Vitaly Provodin965f53e2017-03-27 15:57:07 +07001549java/io/File/SetLastModified.java generic-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001550javax/swing/JScrollBar/7163696/Test7163696.java windows-all
Vitaly Provodin85e947b2017-05-18 10:56:21 +07001551javax/swing/text/html/CSS/4530474/bug4530474.java windows-all
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +07001552# https://bugs.openjdk.java.net/browse/JDK-8065099
1553javax/swing/PopupFactory/6276087/NonOpaquePopupMenuTest.java generic-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001554javax/swing/dnd/7171812/bug7171812.java windows-all
1555javax/swing/plaf/basic/BasicTreeUI/8023474/bug8023474.java windows-all
Vitaly Provodine272fd82017-02-27 14:50:45 +07001556javax/swing/plaf/basic/Test6984643.java windows-all
Vitaly Provodin82d94092017-04-21 10:47:21 +07001557javax/swing/plaf/basic/Test6984643.java windows-all
1558javax/swing/plaf/nimbus/8041642/ScrollBarThumbVisibleTest.java generic-all
Vitaly Provodin25e7ddc2017-03-17 10:20:03 +07001559# https://bugs.openjdk.java.net/browse/JDK-8155740
1560javax/swing/text/JTextComponent/5074573/bug5074573.java generic-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001561javax/swing/text/StyledEditorKit/4506788/bug4506788.java windows-all
Vitaly Provodine272fd82017-02-27 14:50:45 +07001562sun/java2d/DirectX/OpaqueImageToSurfaceBlitTest/OpaqueImageToSurfaceBlitTest.java windows-all
Vitaly Provodin43937952017-01-20 09:54:17 +07001563sun/java2d/DrawXORModeTest.java windows-all
1564sun/java2d/OpenGL/CustomCompositeTest.java windows-all
1565sun/java2d/OpenGL/DrawBufImgOp.java windows-all
1566sun/java2d/OpenGL/DrawHugeImageTest.java windows-all
Vitaly Provodin358c5e42017-04-13 14:51:48 +07001567sun/java2d/XRenderBlitsTest.java windows-all
1568
1569# https://bugs.openjdk.java.net/browse/JDK-8160536
Vitaly Provodinf3eac5a2017-05-23 15:23:45 +07001570com/apple/eawt/DefaultMenuBar/DefaultMenuBarTest.java macosx-all
1571
1572# https://bugs.openjdk.java.net/browse/JDK-8180821
1573com/apple/laf/ScreenMenu/ScreenMenuMemoryLeakTest.java macosx-all