From 744902e306c5a1f00bf13bbe344c6616cc816f0e Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Mon, 14 Aug 2017 10:35:44 -0700 Subject: No overlapping sub-nets on any interface in the same table/VRF (VPP-943) DBGvpp# set int ip addr loop0 10.10.10.10/24 DBGvpp# set int ip addr loop0 10.10.10.11/24 set interface ip address: failed to add 10.10.10.11/24 which conflicts with 10.10.10.10/24 for interface loop0 Change-Id: Iba63ffafbd36b6146ce86adb78139da9d55b40ba Signed-off-by: Neale Ranns --- test/test_ip6.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test/test_ip6.py') diff --git a/test/test_ip6.py b/test/test_ip6.py index 884f793680d..21d8025d583 100644 --- a/test/test_ip6.py +++ b/test/test_ip6.py @@ -212,10 +212,11 @@ class TestIPv6(TestIPv6ND): def tearDown(self): """Run standard test teardown and log ``show ip6 neighbors``.""" - for i in self.sub_interfaces: + for i in self.interfaces: i.unconfig_ip6() i.ip6_disable() i.admin_down() + for i in self.sub_interfaces: i.remove_vpp_config() super(TestIPv6, self).tearDown() @@ -918,6 +919,9 @@ class TestIPv6RD(TestIPv6ND): i.config_ip6() def tearDown(self): + for i in self.interfaces: + i.unconfig_ip6() + i.admin_down() super(TestIPv6RD, self).tearDown() def test_rd_send_router_solicitation(self): -- cgit 1.2.3-korg