--- old/test/java/awt/TrayIcon/ActionCommand/ActionCommand.java 2015-10-13 14:01:49.352252180 +0300 +++ new/test/java/awt/TrayIcon/ActionCommand/ActionCommand.java 2015-10-13 14:01:49.252252183 +0300 @@ -59,8 +59,13 @@ "and rerun test."); } 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 ActionCommand().doTest(); } }