Re: RFR: 8296405: java/util/concurrent/forkjoin/AsyncShutdownNow.java is too slow

2022-11-15 Thread Alan Bateman
On Mon, 14 Nov 2022 09:37:05 GMT, Jaikiran Pai wrote: > Should we file a JBS to re-enable this so that we don't forget? I'll add a note to JDK-8286352 or JDK-8288899, depending on which one is used. - PR: https://git.openjdk.org/jdk/pull/10986

Re: RFR: 8296405: java/util/concurrent/forkjoin/AsyncShutdownNow.java is too slow

2022-11-14 Thread Jaikiran Pai
On Fri, 4 Nov 2022 14:13:42 GMT, Alan Bateman wrote: > java/util/concurrent/forkjoin/AsyncShutdownNow.java takes ~40s as each test > uses a delay of 5s before it invokes shutdownNow. The test will run in <1s if > changed to poll the thread state and invoke shutdownNow when the thread waits. >

RFR: 8296405: java/util/concurrent/forkjoin/AsyncShutdownNow.java is too slow

2022-11-14 Thread Alan Bateman
java/util/concurrent/forkjoin/AsyncShutdownNow.java takes ~40s as each test uses a delay of 5s before it invokes shutdownNow. The test will run in <1s if changed to poll the thread state and invoke shutdownNow when the thread waits. The update temporarily disables testInvokeAny because of a susp