This commit is contained in:
Erik Joelsson 2014-03-28 18:03:40 +01:00
commit 6db88c8747

View File

@ -30,6 +30,7 @@ import java.net.InetAddress;
import java.util.Enumeration;
public class Test {
static final boolean isWindows = System.getProperty("os.name").startsWith("Windows");
public static void main(String args[]) throws Exception {
@ -38,6 +39,11 @@ public class Test {
while (nifs.hasMoreElements()) {
NetworkInterface ni = (NetworkInterface)nifs.nextElement();
//JDK-8038276: Should not test on Windows with Teredo Tunneling Pseudo-Interface
String dName = ni.getDisplayName();
if (isWindows && dName != null && dName.contains("Teredo"))
continue;
String name = ni.getName();
System.out.println("\n" + name);