Re: [teststabilization] RFR: 8223798 : Replace wildcard address with loopback or local host in tests - part 7

2019-05-15 Thread Aleks Efimov
Vyom, Daniel, Thanks for your reviews! Best Regards, Aleksei On 15/05/2019 18:51, Vyom Tiwari wrote: Hi Aleks, latest changes looks good to me . Thanks, Vyom On Wed, May 15, 2019 at 11:12 PM Aleks Efimov mailto:aleksej.efi...@oracle.com>> wrote: Hi Daniel, Thanks for the review. I

Re: [teststabilization] RFR: 8223798 : Replace wildcard address with loopback or local host in tests - part 7

2019-05-15 Thread Vyom Tiwari
Hi Aleks, latest changes looks good to me . Thanks, Vyom On Wed, May 15, 2019 at 11:12 PM Aleks Efimov wrote: > Hi Daniel, > > Thanks for the review. I've modified Socket_getInputStream_[read|write] > to follow your suggestion: > -ServerSocket ss = new ServerSocket(0); >

Re: [teststabilization] RFR: 8223798 : Replace wildcard address with loopback or local host in tests - part 7

2019-05-15 Thread Daniel Fuchs
On 15/05/2019 18:41, Aleks Efimov wrote: Hi Daniel, Thanks for the review. I've modified Socket_getInputStream_[read|write] to follow your suggestion: -    ServerSocket ss = new ServerSocket(0); InetAddress lh = InetAddress.getLocalHost(); +    ServerSocket ss = n

Re: [teststabilization] RFR: 8223798 : Replace wildcard address with loopback or local host in tests - part 7

2019-05-15 Thread Aleks Efimov
Hi Daniel, Thanks for the review. I've modified Socket_getInputStream_[read|write] to follow your suggestion: -    ServerSocket ss = new ServerSocket(0); InetAddress lh = InetAddress.getLocalHost(); +    ServerSocket ss = new ServerSocket(0, 0, lh); Also I've broke

Re: [teststabilization] RFR: 8223798 : Replace wildcard address with loopback or local host in tests - part 7

2019-05-15 Thread Daniel Fuchs
Hi Aleksei, On 15/05/2019 17:07, Aleks Efimov wrote: Hi, Another part of test fixes to address intermittent networking test failures can be viewed here: http://cr.openjdk.java.net/~aefimov/8223798/00/ Socket_getInputStream_read.java: Socket_getOutputStream_write.java: I think you could sim

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

2019-05-15 Thread Aleks Efimov
Hi, Another part of test fixes to address intermittent networking test failures can be viewed here: http://cr.openjdk.java.net/~aefimov/8223798/00/ Could I please ask for the help to review it? JBS: https://bugs.openjdk.java.net/browse/JDK-8223798 With Best Regards, Aleksei