On Tue, 3 Sep 2024 06:08:34 GMT, Prasanta Sadhukhan <psadhuk...@openjdk.org> wrote:
> Secondary loop was added for JDK-8078269 not for JDK-8007563 so you need to > check if test fail without Secondary loop without that fix and passes with > the fix.. I tested without the fix for JDK-8078269 for different scenarion: 1. Old test i.e. with SecondaryLoop with Thread.sleep(200) **Test Failed for Windows platform** 2. Old test i.e. with SecondaryLoop with Thread.sleep(500) **Test Passed** 3. Changed test i.e without SecondaryLoop with added robot.delay(200) **Test Failed for Windows platform** 4. Changed test i.e. without SecondaryLoop with added robot.delay(500) **Test Passed** Since the old test with longer delay (500 ms) and changed test with delay of 500 ms passed without the fix of JDK-8078269, looks like the reason for failure could be less delay. ------------- PR Comment: https://git.openjdk.org/jdk/pull/20791#issuecomment-2325841922