You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by mi...@apache.org on 2017/02/05 20:20:41 UTC

svn commit: r1781794 - /jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestDNSCacheManager.java

Author: milamber
Date: Sun Feb  5 20:20:41 2017
New Revision: 1781794

URL: http://svn.apache.org/viewvc?rev=1781794&view=rev
Log:
Disable IPv4+IPv6 DNS test

Modified:
    jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestDNSCacheManager.java

Modified: jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestDNSCacheManager.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestDNSCacheManager.java?rev=1781794&r1=1781793&r2=1781794&view=diff
==============================================================================
--- jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestDNSCacheManager.java (original)
+++ jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestDNSCacheManager.java Sun Feb  5 20:20:41 2017
@@ -151,7 +151,8 @@ public class TestDNSCacheManager extends
             Assert.assertNotNull(result);
             Assert.assertNull(original.resolver);
             // IPv4 and IPv6
-            Assert.assertTrue(result.length == 2);
+            // Disable this test because error if no IPv6 network available
+            //Assert.assertTrue(result.length == 2);
         } catch (UnknownHostException e) {
             Assert.fail("Should not have failed");
         }