Skip to content

Commit 90257f9

Browse files
Alisen Chungprrace
Alisen Chung
authored andcommittedAug 4, 2022
8169187: [macosx] Aqua: java/awt/image/multiresolution/MultiresolutionIconTest.java
Reviewed-by: prr, dnguyen
1 parent c48cd88 commit 90257f9

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed
 

‎test/jdk/ProblemList.txt

-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,6 @@ java/awt/Window/LocationAtScreenCorner/LocationAtScreenCorner.java 8203371 linux
222222
java/awt/font/TextLayout/TextLayoutBounds.java 8169188 generic-all
223223
java/awt/image/BufferedImage/ICMColorDataTest/ICMColorDataTest.java 8233028 generic-all
224224
java/awt/image/DrawImage/IncorrectAlphaSurface2SW.java 8056077 linux-all
225-
java/awt/image/multiresolution/MultiresolutionIconTest.java 8169187,8252812 macosx-all,windows-all,linux-x64
226225
java/awt/print/Headless/HeadlessPrinterJob.java 8196088 windows-all
227226
sun/awt/datatransfer/SuplementaryCharactersTransferTest.java 8011371 generic-all
228227
sun/awt/shell/ShellFolderMemoryLeak.java 8197794 windows-all

‎test/jdk/java/awt/image/multiresolution/MultiresolutionIconTest.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -128,7 +128,7 @@ private void UI() {
128128

129129
private boolean checkPressedColor(int x, int y, Color ok) {
130130

131-
r.mouseMove(x, y);
131+
r.mouseMove(x+5, y+5);
132132
r.waitForIdle();
133133
r.mousePress(InputEvent.BUTTON1_DOWN_MASK);
134134
r.waitForIdle(100);
@@ -217,6 +217,10 @@ private void doTest() {
217217
public static void main(String[] args) throws Exception {
218218

219219
for (UIManager.LookAndFeelInfo LF: UIManager.getInstalledLookAndFeels()) {
220+
// skip AquaL&F because Aqua icon darkening fails the test
221+
if (LF.getName().equalsIgnoreCase("Mac OS X")) {
222+
continue;
223+
}
220224
System.out.println("\nL&F: " + LF.getName());
221225
(new MultiresolutionIconTest(LF)).doTest();
222226
}

0 commit comments

Comments
 (0)
Please sign in to comment.