< prev index next >

modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacAppBundlerTest.java

Print this page
rev 9896 : 8193554: Disable failing fxpackager tests on macOS until JDK-8193232 is fixed
Reviewed-by:

*** 440,449 **** --- 440,450 ---- } /** * Build signed smoke test and mark it as quarantined, skip if no keys present */ + @Ignore("JDK-8193232") @Test public void quarantinedAppTest() throws IOException, ConfigException, UnsupportedPlatformException { AbstractBundler bundler = new MacAppBundler(); assertNotNull(bundler.getName());
*** 496,505 **** --- 497,507 ---- * <li>The jar containing the application (with a main-class attribute)</li> * </ul> * * All other values will be driven off of those two values. */ + @Ignore("JDK-8193232") @Test public void minimumConfig() throws IOException, ConfigException, UnsupportedPlatformException { Bundler bundler = new MacAppBundler(); Map<String, Object> bundleParams = new HashMap<>();
*** 723,732 **** --- 725,735 ---- /** * User a JRE instead of a JDK */ + @Ignore("JDK-8193232") @Test public void testJRE() throws IOException, ConfigException, UnsupportedPlatformException { String jre = runtimeJre == null ? "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/" : runtimeJre; Assume.assumeTrue(new File(jre).isDirectory());
< prev index next >