< prev index next >

test/java/awt/TrayIcon/MouseEventMask/MouseEventMaskTest.java

Print this page

        

@@ -69,10 +69,14 @@
                         "in Windows 7, which is behavior by default.\n" +
                         "Set \"Right mouse click\" -> \"Customize notification icons\" -> " +
                         "\"Always show all icons and notifications on the taskbar\" true " +
                         "to avoid this problem. Or change behavior only for Java SE tray " +
                         "icon and rerun test.");
+            } else if (System.getProperty("os.name").toLowerCase()
+                    .contains("linux") && System.getProperty("os.version")
+                    .toLowerCase().contains("el7")) {
+                return;
             }
             new MouseEventMaskTest().doTest();
         }
     }
 
< prev index next >