From 4008ac998f43265451281cb6e759cd6184e50bed Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Mon, 13 Feb 2017 23:20:04 -0800 Subject: Changing the IP table for an interface is an error if the interface already has an address configured (VPP-601) Change-Id: I311fc264f73dd3b2b3ce9d7d1c33cd0515b36c4a Signed-off-by: Neale Ranns --- test/test_gre.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/test_gre.py') diff --git a/test/test_gre.py b/test/test_gre.py index 89f39e4e..f2a5e0b0 100644 --- a/test/test_gre.py +++ b/test/test_gre.py @@ -39,6 +39,10 @@ class TestGRE(VppTestCase): def tearDown(self): super(TestGRE, self).tearDown() + for i in self.pg_interfaces: + i.unconfig_ip4() + i.unconfig_ip6() + i.admin_down() def create_stream_ip4(self, src_if, src_ip, dst_ip): pkts = [] -- cgit 1.2.3-korg