RFR: 8254569: Remove hard dependency on Dispman in Monocle fb rendering

2020-10-30 Thread Johan Vos
Allow the EGL functionality in monocle to leverage EGL-based systems. The low-level specific details about how the EGL calls should be constructed are left out, and a native interface (egl_ext.h) is created that can be mapped to any low-level system. - Commit messages: - use a

Integrated: 8244297: Provide utility for testing for memory leaks

2020-10-30 Thread Florian Kirmaier
On Sun, 3 May 2020 21:39:41 GMT, Florian Kirmaier wrote: > It's based on the discussion of my previous PR: > https://github.com/openjdk/jfx/pull/71 > > I Added test utility class copied from JMemoryBuddy and used it to simplify 4 > of the existing unit tests. > > It's a direct copy of my

RFR: 8088739: [TestBug] RegionBackgroundImageUITest fail with timeout error

2020-10-30 Thread Ambarish Rapte
Each test in RegionBackgroundImageUITest makes several calls to `robot.getPixelColor()` on App thread. Due to this each test requires more than **60** seconds for execution. Fix is to save a screen capture of Scene (on App thread) and then read pixel color from the screen capture(not on app

Re: RFR: 8254691: Enable GitHub actions for jfx repo [v2]

2020-10-30 Thread Johan Vos
On Thu, 29 Oct 2020 18:30:47 GMT, Ambarish Rapte wrote: >> Kevin Rushforth has updated the pull request with a new target base due to a >> merge or a rebase. The incremental webrev excludes the unrelated changes >> brought in by the merge/rebase. The pull request contains three additional >>

Re: RFR: 8254691: Enable GitHub actions for jfx repo [v2]

2020-10-30 Thread Johan Vos
On Wed, 28 Oct 2020 14:43:52 GMT, Kevin Rushforth wrote: >> This is a proposed fix for >> [JDK-8254691](https://bugs.openjdk.java.net/browse/JDK-8254691) to enable >> GitHub actions for the jfx repo. It is similar in purpose to what was done >> for the jdk repo. >> >> Once this is

Re: Re: RFR: 8254691: Enable GitHub actions for jfx repo

2020-10-30 Thread Eric Bresie
So this doesn’t show lower level test just basically a build successfully pass/fail on each platform? Or would it show any low level tests if they failed? Eric Bresie ebre...@gmail.com (mailto:ebre...@gmail.com) > On October 28, 2020 at 9:43:53 AM CDT, Kevin Rushforth

Re: RFR: 8244297: Provide utility for testing for memory leaks [v11]

2020-10-30 Thread Ambarish Rapte
On Wed, 28 Oct 2020 09:47:32 GMT, Florian Kirmaier wrote: >> It's based on the discussion of my previous PR: >> https://github.com/openjdk/jfx/pull/71 >> >> I Added test utility class copied from JMemoryBuddy and used it to simplify >> 4 of the existing unit tests. >> >> It's a direct copy