Skip to content

Commit bb7a840

Browse files
Renjithkannathprrace
authored andcommittedNov 19, 2024
8342541: Exclude List/KeyEventsTest/KeyEventsTest.java from running on macOS
Reviewed-by: aivanov, prr
1 parent 087a07b commit bb7a840

File tree

1 file changed

+12
-18
lines changed

1 file changed

+12
-18
lines changed
 

‎test/jdk/java/awt/List/KeyEventsTest/KeyEventsTest.java

+12-18
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,6 @@
2121
* questions.
2222
*/
2323

24-
/*
25-
@test
26-
@key headful
27-
@bug 6190768 6190778
28-
@summary Tests that triggering events on AWT list by pressing CTRL + HOME,
29-
CTRL + END, PG-UP, PG-DOWN similar Motif behavior
30-
@library /test/lib
31-
@build jdk.test.lib.Platform
32-
@run main KeyEventsTest
33-
*/
34-
3524
import java.awt.BorderLayout;
3625
import java.awt.EventQueue;
3726
import java.awt.KeyboardFocusManager;
@@ -50,6 +39,17 @@
5039

5140
import jdk.test.lib.Platform;
5241

42+
/*
43+
* @test
44+
* @key headful
45+
* @bug 6190768 6190778
46+
* @requires os.family != "mac"
47+
* @summary Tests that triggering events on AWT list by pressing CTRL + HOME,
48+
* CTRL + END, PG-UP, PG-DOWN similar Motif behavior
49+
* @library /test/lib
50+
* @build jdk.test.lib.Platform
51+
* @run main KeyEventsTest
52+
*/
5353
public class KeyEventsTest {
5454
TestState currentState;
5555
final Object LOCK = new Object();
@@ -261,13 +261,7 @@ private void test(TestState currentState) throws Exception {
261261

262262
private void doTest() throws Exception {
263263

264-
boolean isWin = false;
265-
if (Platform.isWindows()) {
266-
isWin = true;
267-
} else if (Platform.isOSX()) {
268-
System.out.println("Not for OS X");
269-
return;
270-
}
264+
boolean isWin = Platform.isWindows();
271265

272266
System.out.println("multiple? selectedMoved? ?scrollMoved keyID? template? action?");
273267
test(new TestState(false, false, false, KeyEvent.VK_PAGE_UP, isWin?false:false));

0 commit comments

Comments
 (0)
Please sign in to comment.