From: Neale Ranns Date: Tue, 27 Apr 2021 13:54:46 +0000 (+0000) Subject: gre: Remove the debugging logging from the mGRE tests X-Git-Tag: v21.10-rc0~175 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F38%2F32138%2F4;p=vpp.git gre: Remove the debugging logging from the mGRE tests Type: test Signed-off-by: Neale Ranns Change-Id: I5c540b3a2f26689973daec80372c5a935a455a12 --- diff --git a/src/vnet/gre/test/test_gre.py b/src/vnet/gre/test/test_gre.py index 3192fee0e8a..ba20ba8dec0 100644 --- a/src/vnet/gre/test/test_gre.py +++ b/src/vnet/gre/test/test_gre.py @@ -1133,12 +1133,10 @@ class TestGRE(VppTestCase): route_via_tun.add_vpp_config() # all packets dropped at this point - self.logger.error(self.vapi.cli("sh adj 19")) rx = self.send_and_assert_no_replies(self.pg0, tx_e) gre_if.admin_down() gre_if.admin_up() - self.logger.error(self.vapi.cli("sh adj 19")) rx = self.send_and_assert_no_replies(self.pg0, tx_e) # @@ -1153,10 +1151,7 @@ class TestGRE(VppTestCase): # Send a packet stream that is routed into the tunnel # - packets are GRE encapped # - try: - rx = self.send_and_expect(self.pg0, tx_e, itf) - finally: - self.logger.error(self.vapi.cli("sh adj 19")) + rx = self.send_and_expect(self.pg0, tx_e, itf) self.verify_tunneled_4o4(self.pg0, rx, tx_e, itf.local_ip4, itf._remote_hosts[ii].ip4)