aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_reassembly.py
diff options
context:
space:
mode:
authorKlement Sekera <ksekera@cisco.com>2019-10-10 18:57:34 +0000
committerOle Trøan <otroan@employees.org>2019-10-11 11:38:08 +0000
commit68bae5b293d6066afc1e74677d716d79fb7e6995 (patch)
treed7b9d74a928ef8b50c064c26a9a49a54d405b154 /test/test_reassembly.py
parentbe01e635bcc942395c581eeb5a108edaaa82e36f (diff)
tests: extra logging in reassembly tests
Type: test Change-Id: Ia09c3149490e47e49e59544ab1680a8160e60ac8 Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/test_reassembly.py')
-rw-r--r--test/test_reassembly.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/test_reassembly.py b/test/test_reassembly.py
index ee7830e1762..85fb97dee07 100644
--- a/test/test_reassembly.py
+++ b/test/test_reassembly.py
@@ -836,6 +836,11 @@ class TestIPv4MWReassembly(VppTestCase):
for send_if in self.send_ifs:
send_if.assert_nothing_captured()
+ self.logger.debug(self.vapi.ppcli("show trace"))
+ self.logger.debug(self.vapi.ppcli("show ip4-full-reassembly details"))
+ self.logger.debug(self.vapi.ppcli("show buffers"))
+ self.vapi.cli("clear trace")
+
self.pg_enable_capture()
self.send_packets(first_packets)
self.send_packets(second_packets)
@@ -1464,6 +1469,11 @@ class TestIPv6MWReassembly(VppTestCase):
for send_if in self.send_ifs:
send_if.assert_nothing_captured()
+ self.logger.debug(self.vapi.ppcli("show trace"))
+ self.logger.debug(self.vapi.ppcli("show ip6-full-reassembly details"))
+ self.logger.debug(self.vapi.ppcli("show buffers"))
+ self.vapi.cli("clear trace")
+
self.pg_enable_capture()
self.send_packets(first_packets)
self.send_packets(second_packets)