You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2017/02/23 22:00:19 UTC

svn commit: r1784209 - /jmeter/trunk/test/src/org/apache/jmeter/engine/LocalHostTest.java

Author: sebb
Date: Thu Feb 23 22:00:19 2017
New Revision: 1784209

URL: http://svn.apache.org/viewvc?rev=1784209&view=rev
Log:
Still trying ...

Modified:
    jmeter/trunk/test/src/org/apache/jmeter/engine/LocalHostTest.java

Modified: jmeter/trunk/test/src/org/apache/jmeter/engine/LocalHostTest.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/test/src/org/apache/jmeter/engine/LocalHostTest.java?rev=1784209&r1=1784208&r2=1784209&view=diff
==============================================================================
--- jmeter/trunk/test/src/org/apache/jmeter/engine/LocalHostTest.java (original)
+++ jmeter/trunk/test/src/org/apache/jmeter/engine/LocalHostTest.java Thu Feb 23 22:00:19 2017
@@ -40,6 +40,10 @@ public class LocalHostTest {
         }
         showAddress(localHost);
         showAddress(InetAddress.getByName("localhost"));
+        for (InetAddress a : InetAddress.getAllByName(InetAddress.getLocalHost().getHostName())) {
+            perr("====================");
+            showAddress(a);            
+        }
     }
 
     private static void showAddress(InetAddress localHost) {