From 523d1c7dbe55c906af85b14789115acd86a7887d Mon Sep 17 00:00:00 2001 From: Jozef Pupava Date: Mon, 9 Oct 2023 10:37:13 +0200 Subject: [PATCH] ovn: Teardown whole environment --- tests/console/ovn.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/console/ovn.pm b/tests/console/ovn.pm index 32ffe867cbed..61918c4df8da 100644 --- a/tests/console/ovn.pm +++ b/tests/console/ovn.pm @@ -83,6 +83,9 @@ sub run { # teardown assert_script_run 'ip netns del vm2'; assert_script_run 'ip netns del vm1'; + assert_script_run 'ovn-nbctl lsp-del vm2'; + assert_script_run 'ovn-nbctl lsp-del vm1'; + assert_script_run 'ovn-nbctl ls-del network1'; assert_script_run 'ovs-vsctl del-br br-int'; systemctl 'stop openvswitch ovn-controller ovn-northd', timeout => 200; }