From 298ef6a50e3ba3be1ac4d098db5a887c7c0e236b Mon Sep 17 00:00:00 2001 From: Pooja Chopra Date: Thu, 13 Aug 2015 16:26:17 +0300 Subject: [PATCH] 8081764: [TEST_BUG] Test javax/swing/plaf/aqua/CustomComboBoxFocusTest.java fails on Windows, Solaris Sparcv9 and Linux but passes on MacOSX Reviewed-by: alexsch, azvegint --- .../javax/swing/plaf/aqua/CustomComboBoxFocusTest.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/jdk/test/javax/swing/plaf/aqua/CustomComboBoxFocusTest.java b/jdk/test/javax/swing/plaf/aqua/CustomComboBoxFocusTest.java index 76e8ab6fbf0..0c289835603 100644 --- a/jdk/test/javax/swing/plaf/aqua/CustomComboBoxFocusTest.java +++ b/jdk/test/javax/swing/plaf/aqua/CustomComboBoxFocusTest.java @@ -22,9 +22,11 @@ */ /* @test - @bug 8073001 + @bug 8073001 8081764 @summary Test verifies that combo box with custom editor renders focus ring around arrow button correctly. + @library /lib/testlibrary + @build jdk.testlibrary.OSInfo @run main CustomComboBoxFocusTest */ @@ -50,12 +52,17 @@ import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JTextField; import javax.swing.SwingUtilities; +import jdk.testlibrary.OSInfo; public class CustomComboBoxFocusTest { private static CustomComboBoxFocusTest test = null; public static void main(String[] args) { + if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) { + System.out.println("Only Mac platform test. Test is skipped for other OS."); + return; + } try { SwingUtilities.invokeAndWait(new Runnable() {