summaryrefslogtreecommitdiffstats
path: root/test/test_pppoe.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_pppoe.py')
-rw-r--r--test/test_pppoe.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/test_pppoe.py b/test/test_pppoe.py
index 5c8495fed98..54378673eb4 100644
--- a/test/test_pppoe.py
+++ b/test/test_pppoe.py
@@ -43,16 +43,17 @@ class TestPPPoE(VppTestCase):
def tearDown(self):
super(TestPPPoE, self).tearDown()
+ for i in self.pg_interfaces:
+ i.unconfig_ip4()
+ i.admin_down()
+
+ def show_commands_at_teardown(self):
self.logger.info(self.vapi.cli("show int"))
self.logger.info(self.vapi.cli("show pppoe fib"))
self.logger.info(self.vapi.cli("show pppoe session"))
self.logger.info(self.vapi.cli("show ip fib"))
self.logger.info(self.vapi.cli("show trace"))
- for i in self.pg_interfaces:
- i.unconfig_ip4()
- i.admin_down()
-
def create_stream_pppoe_discovery(self, src_if, dst_if,
client_mac, count=1):
packets = []