8154543: NetworkInterfaceStreamTest.java fails intermittently after JDK-8146758

Reviewed-by: chegar
This commit is contained in:
Felix Yang 2016-04-20 00:35:02 -07:00 committed by Felix Yang
parent a6a4976af0
commit 187b51a62c

View File

@ -51,7 +51,8 @@ public class NetworkInterfaceStreamTest extends OpTestCase {
public void testNetworkInterfaces() throws SocketException {
Supplier<Stream<NetworkInterface>> ss = () -> {
try {
return allNetworkInterfaces();
return NetworkInterface.networkInterfaces()
.filter(ni -> isIncluded(ni));
}
catch (SocketException e) {
throw new RuntimeException(e);