We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a39824 commit 4d3c723Copy full SHA for 4d3c723
modules/javafx.web/src/test/java/test/javafx/scene/web/LeakTest.java
@@ -50,6 +50,7 @@
50
import org.w3c.dom.Element;
51
import org.w3c.dom.NodeList;
52
import static org.junit.Assert.*;
53
+import static org.junit.Assume.assumeTrue;
54
55
public class LeakTest extends TestBase {
56
@@ -81,6 +82,8 @@ public class LeakTest extends TestBase {
81
82
}
83
84
@Test public void testGarbageCollectability() throws InterruptedException {
85
+ assumeTrue(Boolean.getBoolean("unstable.test")); // JDK-8234540
86
+
87
final BlockingQueue<WeakReference<WebPage>> webPageRefQueue =
88
new LinkedBlockingQueue<WeakReference<WebPage>>();
89
submit(() -> {
0 commit comments