diff options
Diffstat (limited to 'test/test_ipsec_esp.py')
-rw-r--r-- | test/test_ipsec_esp.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_ipsec_esp.py b/test/test_ipsec_esp.py index a8b28c53ee6..e5db0a627a5 100644 --- a/test/test_ipsec_esp.py +++ b/test/test_ipsec_esp.py @@ -332,8 +332,9 @@ class TemplateIpsecEspUdp(ConfigIpsecESP): def tearDown(self): super(TemplateIpsecEspUdp, self).tearDown() - if not self.vpp_dead: - self.vapi.cli("show hardware") + + def show_commands_at_teardown(self): + self.logger.info(self.vapi.cli("show hardware")) class TestIpsecEspUdp(TemplateIpsecEspUdp, IpsecTra4Tests, IpsecTun4Tests): |