Re: RFR: 8315484: java/awt/dnd/RejectDragDropActionTest.java timed out [v8]

2023-10-13 Thread Alexey Ivanov
On Thu, 12 Oct 2023 22:01:22 GMT, Damon Nguyen wrote: >> test/jdk/java/awt/dnd/RejectDragDropActionTest.java line 103: >> >>> 101: !p.equals(endPoint) && !incorrectActionDetected; >>> 102: p.translate(sign(endPoint.x - p.x), >>> 103: sig

Re: RFR: 8315484: java/awt/dnd/RejectDragDropActionTest.java timed out [v8]

2023-10-12 Thread Damon Nguyen
On Thu, 12 Oct 2023 16:27:45 GMT, Alexey Ivanov wrote: >> Damon Nguyen has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Remove excess > > test/jdk/java/awt/dnd/RejectDragDropActionTest.java line 103: > >> 101: !p.equals(

Re: RFR: 8315484: java/awt/dnd/RejectDragDropActionTest.java timed out [v8]

2023-10-12 Thread Alexey Ivanov
On Thu, 5 Oct 2023 16:20:08 GMT, Damon Nguyen wrote: >> This test intermittently fails by timeout. Increasing the timeout alone >> doesn't solve the failure as it still fails in about 400 runs. Adding >> another delay and reducing the delay amount to 1000ms. Now, the test passes >> after 2 set

Re: RFR: 8315484: java/awt/dnd/RejectDragDropActionTest.java timed out [v8]

2023-10-05 Thread Damon Nguyen
> This test intermittently fails by timeout. Increasing the timeout alone > doesn't solve the failure as it still fails in about 400 runs. Adding another > delay and reducing the delay amount to 1000ms. Now, the test passes after 2 > sets of 500 repeats on all OS's without a timeout. Damon Nguy