From: Benoît Ganne Date: Tue, 3 Sep 2019 16:17:38 +0000 (+0200) Subject: gbp: remove loopback interfaces between tests X-Git-Tag: v19.08.2~282 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F15%2F22415%2F2;p=vpp.git gbp: remove loopback interfaces between tests Type: fix Change-Id: I440f25b95b23b717518d101a1327ecf16d6ba39a Signed-off-by: Benoît Ganne (cherry picked from commit d51880c5de3a1b22d9ac510305bdfe98fa12e51c) --- diff --git a/src/plugins/gbp/test/test_gbp.py b/src/plugins/gbp/test/test_gbp.py index cb426492891..3989e233c93 100644 --- a/src/plugins/gbp/test/test_gbp.py +++ b/src/plugins/gbp/test/test_gbp.py @@ -652,6 +652,9 @@ class TestGBP(VppTestCase): for i in self.pg_interfaces: i.admin_down() super(TestGBP, self).tearDown() + for i in self.lo_interfaces: + i.remove_vpp_config() + self.lo_interfaces = [] self.vlan_102.remove_vpp_config() self.vlan_101.remove_vpp_config() self.vlan_100.remove_vpp_config()