JDK-8207923 : Disable failing Swing interop tests in SandboxAppTest
  • Type: Bug
  • Component: javafx
  • Sub-Component: swing
  • Affected Version: openjfx11
  • Priority: P3
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2018-07-20
  • Updated: 2018-07-20
  • Resolved: 2018-07-20
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
openjfx11Fixed
Related Reports
Relates :  
Description
Unless and until JDK-8202451 is fixed, we need to disable the failing Swing interop tests in SandboxAppTest. They should be disabled using:

@Ignore("JDK-8202451")

Comments
Changeset: b808531e08ea Author: psadhukhan Date: 2018-07-20 18:30 +0530 URL: http://hg.openjdk.java.net/openjfx/jfx-dev/rt/rev/b808531e08ea
20-07-2018

+1
20-07-2018

Hi Kevin, All Please review the disabling of the 2 failing tests in SandboxAppTest. --- a/tests/system/src/test/java/test/sandbox/SandboxAppTest.java Mon Jul 16 14:30:19 2018 +0530 +++ b/tests/system/src/test/java/test/sandbox/SandboxAppTest.java Fri Jul 20 10:49:46 2018 +0530 @@ -29,6 +29,7 @@ import java.util.ArrayList; import junit.framework.AssertionFailedError; import org.junit.Test; +import org.junit.Ignore; import static org.junit.Assert.*; import static org.junit.Assume.*; @@ -109,11 +110,13 @@ runSandboxedApp("FXNonApp"); } + @Ignore("JDK-8202451") @Test (timeout = 15000) public void testJFXPanelApp() throws Exception { runSandboxedApp("JFXPanelApp"); } + @Ignore("JDK-8202451") @Test (timeout = 15000) public void testJFXPanelImplicitExitApp() throws Exception { runSandboxedApp("JFXPanelImplicitExitApp", 0); Regards Prasanta
20-07-2018