diff options
Diffstat (limited to 'test/test_ping.py')
-rw-r--r-- | test/test_ping.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_ping.py b/test/test_ping.py index 75c18d46c69..7e5c92f63c6 100644 --- a/test/test_ping.py +++ b/test/test_ping.py @@ -42,8 +42,9 @@ class TestPing(VppTestCase): def tearDown(self): super(TestPing, 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")) def test_ping_basic(self): """ basic ping test """ |