< prev index next >

test/jdk/javax/management/loading/LibraryLoader/LibraryLoaderTest.java

Print this page
rev 59104 : imported patch serviceability

*** 56,71 **** String osArch = System.getProperty("os.arch"); System.out.println("os.name=" + osArch); // Check for supported platforms: // ! // Solaris/SPARC and Windows/x86 // ! if ((!(osName.equals("SunOS") && osArch.equals("sparc"))) && ! (!(osName.startsWith("Windows") && osArch.equals("x86")))) { System.out.println( ! "This test runs only on Solaris/SPARC and Windows/x86 platforms"); System.out.println("Bye! Bye!"); return; } String libPath = System.getProperty("java.library.path"); --- 56,70 ---- String osArch = System.getProperty("os.arch"); System.out.println("os.name=" + osArch); // Check for supported platforms: // ! // Windows/x86 // ! if ((!(osName.startsWith("Windows") && osArch.equals("x86")))) { System.out.println( ! "This test runs only on Windows/x86 platforms"); System.out.println("Bye! Bye!"); return; } String libPath = System.getProperty("java.library.path");
< prev index next >