# HG changeset patch # User kcr # Date 1513794935 28800 # Wed Dec 20 10:35:35 2017 -0800 # Node ID c2a7393a620d1fe1b0ad5cbc246005c990b27961 # Parent 7591bcb9ea90318f3ed8f78865016a84952a0a20 8193554: Disable failing fxpackager tests on macOS until JDK-8193232 is fixed Reviewed-by: diff --git a/modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacAppBundlerTest.java b/modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacAppBundlerTest.java --- a/modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacAppBundlerTest.java +++ b/modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacAppBundlerTest.java @@ -442,6 +442,7 @@ /** * 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(); @@ -498,6 +499,7 @@ * * 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(); @@ -725,6 +727,7 @@ /** * 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; diff --git a/modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacPkgBundlerTest.java b/modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacPkgBundlerTest.java --- a/modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacPkgBundlerTest.java +++ b/modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacPkgBundlerTest.java @@ -270,6 +270,7 @@ /** * Build smoke test and mark it as quarantined, possibly signed */ + @Ignore("JDK-8193232") @Test public void quarantinedAppTest() throws IOException, ConfigException, UnsupportedPlatformException { @@ -327,6 +328,7 @@ * * 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 MacPkgBundler();