Re: [Integrated] RFR: 8234540: javafx.web LeakTest.testGarbageCollectability fails intermittently

2020-05-27 Thread Arun Joseph
On Tue, 26 May 2020 09:27:52 GMT, Arun Joseph wrote: > Cause: The test assumes that WebView/WebPage will be GCed right after > `System.gc()` > > Fix: Use `runFinalization()` and `sleep()` to wait for objects to get GCed This pull request has now been integrated. Changeset: 8914bd2a Author:

Re: RFR: 8234540: javafx.web LeakTest.testGarbageCollectability fails intermittently

2020-05-26 Thread Kevin Rushforth
On Tue, 26 May 2020 09:27:52 GMT, Arun Joseph wrote: > Cause: The test assumes that WebView/WebPage will be GCed right after > `System.gc()` > > Fix: Use `runFinalization()` and `sleep()` to wait for objects to get GCed Marked as reviewed by kcr (Lead). - PR:

RFR: 8234540: javafx.web LeakTest.testGarbageCollectability fails intermittently

2020-05-26 Thread Arun Joseph
Cause: The test assumes that WebView/WebPage will be GCed right after `System.gc()` Fix: Use `runFinalization()` and `sleep()` to wait for objects to get GCed - Commit messages: - Update copyright year - Remove unwanted line - 8234540: javafx.web