diff -r eaaa79b68cd5 -r 729f9700483a jdk/test/java/net/NetworkInterface/IPv4Only.java --- a/jdk/test/java/net/NetworkInterface/IPv4Only.java Tue Nov 18 15:25:16 2014 -0800 +++ b/jdk/test/java/net/NetworkInterface/IPv4Only.java Wed Dec 03 14:22:58 2014 +0000 @@ -23,7 +23,7 @@ /* @test * @bug 6964714 - * @run main/othervm IPv4Only + * @run main/othervm -Djava.net.preferIPv4Stack=true IPv4Only * @summary Test the networkinterface listing with java.net.preferIPv4Stack=true. */ @@ -34,8 +34,6 @@ public class IPv4Only { public static void main(String[] args) throws Exception { - System.setProperty("java.net.preferIPv4Stack","true"); - Enumeration nifs = NetworkInterface.getNetworkInterfaces(); while (nifs.hasMoreElements()) { NetworkInterface nif = nifs.nextElement();