aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/gre
diff options
context:
space:
mode:
authorNeale Ranns <neale@graphiant.com>2021-04-27 13:54:46 +0000
committerDamjan Marion <dmarion@me.com>2021-04-27 23:57:00 +0000
commitf2b6b9e29b55075d09cfc3c25852a87c2eade596 (patch)
tree34923cde21ee4d19a30aeef210a4897c47de9490 /src/vnet/gre
parentac8f936fdc86731db6d7dc67b4f4e4903271001d (diff)
gre: Remove the debugging logging from the mGRE tests
Type: test Signed-off-by: Neale Ranns <neale@graphiant.com> Change-Id: I5c540b3a2f26689973daec80372c5a935a455a12
Diffstat (limited to 'src/vnet/gre')
-rw-r--r--src/vnet/gre/test/test_gre.py7
1 files changed, 1 insertions, 6 deletions
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)