You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/06/25 17:06:33 UTC

git commit: updated refs/heads/master to d90b8d8

Repository: cloudstack
Updated Branches:
  refs/heads/master 218c4713a -> d90b8d88e


Revert "CLOUDSTACK-6747 test for test to allow all cidrs on other end of a vpc"

This reverts commit 218c4713ae796bcb0002f12421d24dfee9a5320f.


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/d90b8d88
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/d90b8d88
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/d90b8d88

Branch: refs/heads/master
Commit: d90b8d88ed16aae91759a287c1c3f527d4d2cb18
Parents: 218c471
Author: Daan Hoogland <da...@onecht.net>
Authored: Wed Jun 25 17:06:10 2014 +0200
Committer: Daan Hoogland <da...@onecht.net>
Committed: Wed Jun 25 17:06:10 2014 +0200

----------------------------------------------------------------------
 utils/test/com/cloud/utils/net/NetUtilsTest.java | 12 ------------
 1 file changed, 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/d90b8d88/utils/test/com/cloud/utils/net/NetUtilsTest.java
----------------------------------------------------------------------
diff --git a/utils/test/com/cloud/utils/net/NetUtilsTest.java b/utils/test/com/cloud/utils/net/NetUtilsTest.java
index e3a4671..cd5109c 100644
--- a/utils/test/com/cloud/utils/net/NetUtilsTest.java
+++ b/utils/test/com/cloud/utils/net/NetUtilsTest.java
@@ -231,18 +231,6 @@ public class NetUtilsTest {
     }
 
     @Test
-    public void testIsValidCidrList() throws Exception {
-        //Test to check IP Range of 2 CIDR
-        String cidrFirst = "10.0.144.0/20,1.2.3.4/32,5.6.7.8/24";
-        String cidrSecond = "10.0.151.0/20,129.0.0.0/4";
-        String cidrThird = "10.0.144.0/21";
-
-        assertTrue(NetUtils.isValidCIDR(cidrFirst));
-        assertTrue(NetUtils.isValidCIDR(cidrSecond));
-        assertTrue(NetUtils.isValidCIDR(cidrThird));
-    }
-
-    @Test
     public void testIsSameIpRange() {
         String cidrFirst = "10.0.144.0/20";
         String cidrSecond = "10.0.151.0/20";