diff options
Diffstat (limited to 'test/test_lb.py')
-rw-r--r-- | test/test_lb.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_lb.py b/test/test_lb.py index 4c0bfadaccb..93b389a1444 100644 --- a/test/test_lb.py +++ b/test/test_lb.py @@ -69,8 +69,9 @@ class TestLB(VppTestCase): def tearDown(self): super(TestLB, self).tearDown() - if not self.vpp_dead: - self.logger.info(self.vapi.cli("show lb vip verbose")) + + def show_commands_at_teardown(self): + self.logger.info(self.vapi.cli("show lb vip verbose")) def getIPv4Flow(self, id): return (IP(dst="90.0.%u.%u" % (id / 255, id % 255), |