diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-06-18 11:05:38 -0400 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-06-19 07:57:32 +0000 |
commit | 7d7e3e807c1c24004a3a1aaae64f8b6e7b80c5da (patch) | |
tree | fb84db0b822aa0fc9d16a6eccae7d27cc2fadd27 /test | |
parent | c257e076211d0bff2547e1b67a62576bbdb2963e (diff) |
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 <pvinci@vinciconsulting.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_punt.py | 1 |
1 files changed, 0 insertions, 1 deletions
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 |