< prev index next >

test/jdk/java/awt/MenuBar/8007006/bug8007006.java

Print this page
rev 51542 : 8210039: move OSInfo to top level testlibrary
Reviewed-by: duke

*** 25,50 **** * @test * @key headful * @bug 8007006 * @summary [macosx] Closing subwindow loses main window menus. * @author Leonid Romanov ! * @library ../../../../lib/testlibrary ! * @build ExtendedRobot jdk.testlibrary.OSInfo * @run main bug8007006 */ import java.awt.*; import java.awt.event.*; ! import jdk.testlibrary.OSInfo; public class bug8007006 { private static Frame frame1; private static Frame frame2; public static void main(String[] args) throws Exception { ! if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) { System.out.println("This test is for MacOS only. Automatically passed on other platforms."); return; } System.setProperty("apple.laf.useScreenMenuBar", "true"); --- 25,50 ---- * @test * @key headful * @bug 8007006 * @summary [macosx] Closing subwindow loses main window menus. * @author Leonid Romanov ! * @library /test/lib ! * @build ExtendedRobot jdk.test.lib.Platform * @run main bug8007006 */ import java.awt.*; import java.awt.event.*; ! import jdk.test.lib.Platform; public class bug8007006 { private static Frame frame1; private static Frame frame2; public static void main(String[] args) throws Exception { ! if (!Platform.isOSX()) { System.out.println("This test is for MacOS only. Automatically passed on other platforms."); return; } System.setProperty("apple.laf.useScreenMenuBar", "true");
< prev index next >