< prev index next >

test/java/awt/TrayIcon/ActionEventMask/ActionEventMask.java

Print this page

        

@@ -64,10 +64,16 @@
             System.out.println("SystemTray not supported on the platform under test. " +
                                "Marking the test passed");
         } else {
             if (System.getProperty("os.name").toLowerCase().startsWith("mac")) {
                 isMacOS = true;
+            } else if( System.getProperty("os.name").toLowerCase()
+                    .contains("linux") && System.getProperty("os.version")
+                    .toLowerCase().contains("el7")) {
+                System.out.println("OEL 7 doesn't support double click in " +
+                        "systray. Skipped");
+                return;
             }
             new ActionEventMask().doTest();
         }
     }
 
< prev index next >