Integrated: 8360981: Remove use of Thread.stop in test/jdk/java/net/Socket/DeadlockTest.java

2025-07-26 Thread Jaikiran Pai
On Sat, 26 Jul 2025 09:04:09 GMT, Jaikiran Pai wrote: > Can I please get a review of this test-only change which removes the use of > `Thread.stop()` from the test? This addresses > https://bugs.openjdk.org/browse/JDK-8360981. > > The use of `Thread.stop()` `test/jdk/java/net/Socket/DeadlockTe

Re: RFR: 8360981: Remove use of Thread.stop in test/jdk/java/net/Socket/DeadlockTest.java

2025-07-26 Thread Jaikiran Pai
On Sat, 26 Jul 2025 09:04:09 GMT, Jaikiran Pai wrote: > Can I please get a review of this test-only change which removes the use of > `Thread.stop()` from the test? This addresses > https://bugs.openjdk.org/browse/JDK-8360981. > > The use of `Thread.stop()` `test/jdk/java/net/Socket/DeadlockTe

Integrated: 8362855: Test java/net/ipv6tests/TcpTest.java should report SkippedException when there no ia4addr or ia6addr

2025-07-26 Thread SendaoYan
On Thu, 24 Jul 2025 13:02:41 GMT, SendaoYan wrote: > Hi all, > > I think the test java/net/ipv6tests/TcpTest.java should report > jtreg.SkippedException when there no IPV4 addresses or no IPV6 addresses, > rather than just print a messge and then report test run passes. > > Change has been ve

Re: RFR: 8362855: Test java/net/ipv6tests/TcpTest.java should report SkippedException when there no ia4addr or ia6addr

2025-07-26 Thread SendaoYan
On Fri, 25 Jul 2025 07:39:40 GMT, Jaikiran Pai wrote: >> Hi all, >> >> I think the test java/net/ipv6tests/TcpTest.java should report >> jtreg.SkippedException when there no IPV4 addresses or no IPV6 addresses, >> rather than just print a messge and then report test run passes. >> >> Change h

Integrated: 8362581: Timeouts in java/nio/channels/SocketChannel/OpenLeak.java on UNIX

2025-07-26 Thread Michael McMahon
On Fri, 25 Jul 2025 12:08:38 GMT, Michael McMahon wrote: > Hi, > > This is a fix for 8362581 caused by the implementation for > https://bugs.openjdk.org/browse/JDK-8348986 > An incorrect check was added to the method Exceptions.ioException() which > wasn't noticed partly > because that file wa

Re: RFR: 8360981: Remove use of Thread.stop in test/jdk/java/net/Socket/DeadlockTest.java

2025-07-26 Thread Alan Bateman
On Sat, 26 Jul 2025 09:04:09 GMT, Jaikiran Pai wrote: > Can I please get a review of this test-only change which removes the use of > `Thread.stop()` from the test? This addresses > https://bugs.openjdk.org/browse/JDK-8360981. > > The use of `Thread.stop()` `test/jdk/java/net/Socket/DeadlockTe

RFR: 8360981: Remove use of Thread.stop in test/jdk/java/net/Socket/DeadlockTest.java

2025-07-26 Thread Jaikiran Pai
Can I please get a review of this test-only change which removes the use of `Thread.stop()` from the test? This addresses https://bugs.openjdk.org/browse/JDK-8360981. The use of `Thread.stop()` `test/jdk/java/net/Socket/DeadlockTest.java` isn't necessary for what this test is currently testing.