diff options
Diffstat (limited to 'test/test_udp.py')
-rw-r--r-- | test/test_udp.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_udp.py b/test/test_udp.py index edcd293197f..2c0710ba2e2 100644 --- a/test/test_udp.py +++ b/test/test_udp.py @@ -725,6 +725,14 @@ class TestUDP(VppTestCase): i.unconfig_ip4() i.set_table_ip4(0) i.admin_down() + # Unconfigure namespaces - remove our locks to the vrf tables + self.vapi.app_namespace_add_del_v4( + is_add=0, namespace_id="0", sw_if_index=self.loop0.sw_if_index + ) + self.vapi.app_namespace_add_del_v4( + is_add=0, namespace_id="1", sw_if_index=self.loop1.sw_if_index + ) + self.vapi.session_enable_disable(is_enable=0) super(TestUDP, self).tearDown() |