From 7d9c9fadaf43d96b6316126b93fb78d46ee8e05d Mon Sep 17 00:00:00 2001 From: shivamcandela Date: Fri, 17 Dec 2021 07:16:37 +0530 Subject: [PATCH] Added layer3 cleanup logic which will run after test Signed-off-by: shivamcandela --- py-scripts/test_ipv4_ttls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/py-scripts/test_ipv4_ttls.py b/py-scripts/test_ipv4_ttls.py index a325fe5d..8c4cf40d 100755 --- a/py-scripts/test_ipv4_ttls.py +++ b/py-scripts/test_ipv4_ttls.py @@ -271,6 +271,8 @@ class TTLSTest(Realm): self.collect_endp_stats(self.l3_cx_obj_udp.cx_profile.created_cx, traffic_type="UDP") def cleanup(self, sta_list): + self.l3_cx_obj_udp.cx_profile.cleanup_prefix() + self.l3_cx_obj_tcp.cx_profile.cleanup_prefix() self.station_profile.cleanup(sta_list) if self.vap: self.vap_profile.cleanup(1)