# HG changeset patch # User pchopra # Date 1439472377 -10800 # Node ID ab5221ce87be82c18b5762cdae4d63b513c9cb2e # Parent 9a84d7ae22e08061c1e488d086fa5bca7f548db5 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 diff -r 9a84d7ae22e0 -r ab5221ce87be jdk/test/javax/swing/plaf/aqua/CustomComboBoxFocusTest.java --- a/jdk/test/javax/swing/plaf/aqua/CustomComboBoxFocusTest.java Thu Aug 13 15:29:03 2015 +0300 +++ b/jdk/test/javax/swing/plaf/aqua/CustomComboBoxFocusTest.java Thu Aug 13 16:26:17 2015 +0300 @@ -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.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() {