From 7d7e3e807c1c24004a3a1aaae64f8b6e7b80c5da Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Tue, 18 Jun 2019 11:05:38 -0400 Subject: [PATCH] tests: send packet output to log - test_punt.py Move output to log.txt. 11:51:58,111 Verifying against 3 packets in verify_udp_pkts. 11:51:58,111 ###[ Ethernet ]### dst = 02:fe:4c:62:06:e5 src = 02:01:00:00:ff:02 type = 0x800 \###[ IP ]### version = 4 ihl = 5 tos = 0x0 len = 128 ... Type: test Change-Id: Iebaf34c2ac16e7fa8dffbdeadf18ab6c5f4c7494 Signed-off-by: Paul Vinciguerra --- test/test_punt.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_punt.py b/test/test_punt.py index e7ac4dd3fd6..b305e08bf5c 100644 --- a/test/test_punt.py +++ b/test/test_punt.py @@ -141,7 +141,6 @@ class TestPuntSocket(VppTestCase): def verify_udp_pkts(self, rxs, n_rx, port): n_match = 0 for rx in rxs: - rx.show() self.assertTrue(rx.haslayer(UDP)) if rx[UDP].dport == port: n_match += 1 -- 2.16.6