[teststabilization] RFR: 8224204: Replace wildcard address with loopback or local host in tests - part 10

2019-05-21 Thread Daniel Fuchs
Hi, Please find below a patch for: 8224204: Replace wildcard address with loopback or local host in tests - part 10 https://bugs.openjdk.java.net/browse/JDK-8224204 which fixes a bunch of sun/net/* tests that were observed failing: webrev: http://cr.openjdk.java.net/~dfuchs/webrev_822

RFR 8224477 [13] java.net.Socket::setOption - implementation mismatch to spec

2019-05-21 Thread Chris Hegarty
The get/setOption methods of java.net Socket, ServerSocket, and DatagramSocket, are specified to throw NullPointerException if the given option name is null ( rather than UnsupportedOperationException, which is currently thrown ). The implementation correctly did this in JDK 9 ( on *nix platforms a

Re: RFR 8224477 [13] java.net.Socket::setOption - implementation mismatch to spec

2019-05-21 Thread Alan Bateman
On 21/05/2019 19:36, Chris Hegarty wrote: The get/setOption methods of java.net Socket, ServerSocket, and DatagramSocket, are specified to throw NullPointerException if the given option name is null ( rather than UnsupportedOperationException, which is currently thrown ). The implementation corre