diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2024-07-16 12:36:38 -0400 |
---|---|---|
committer | Damjan Marion <dmarion@0xa5.net> | 2024-07-18 14:45:49 +0000 |
commit | 0da0883453e7855a65fea7db85aebe69eb4d69b0 (patch) | |
tree | bb30e769bde61cbf237db35390dd297df26b8041 /test | |
parent | 04da32426018a338a7585bc6a412c78847e5eef8 (diff) |
tests: output raw packet data when decoding pcap files
Type: test
Change-Id: I4e945b2bd067466afdaa58a6f07a1ab2c567bc2b
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/vpp_pg_interface.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vpp_pg_interface.py b/test/vpp_pg_interface.py index cdb91ed1e41..1e02801cda9 100644 --- a/test/vpp_pg_interface.py +++ b/test/vpp_pg_interface.py @@ -187,7 +187,7 @@ class VppPGInterface(VppInterface): self.test.logger.debug( f"Generating testcase pg streams decode file: {pg_decode}" ) - ts_opts = "-Vr" + ts_opts = "-Vxr" for p in sorted(Path(pcap_dir).glob(f"{filename_prefix}*.pcap")): self.test.logger.debug(f"Decoding {p}") with open(f"{pg_decode}", "a", buffering=1) as f: |