Re: [ovs-dev] [v6 07/11] test/sytem-dpdk: Add unit test for mfex autovalidator

2021-07-08 Thread Amber, Kumar
Thanks Eelco Fixed From: Eelco Chaudron Sent: Thursday, July 8, 2021 2:07 PM To: Amber, Kumar Cc: Ferriter, Cian ; ovs-dev@openvswitch.org; f...@sysclose.org; i.maxim...@ovn.org; Van Haaren, Harry ; Stokes, Ian Subject: Re: [v6 07/11] test/sytem-dpdk: Add unit test for mfex autovalidator

Re: [ovs-dev] [v6 07/11] test/sytem-dpdk: Add unit test for mfex autovalidator

2021-07-08 Thread Eelco Chaudron
On 7 Jul 2021, at 20:34, Amber, Kumar wrote: Hi Eelco, Replies are inline. \ No newline at end of file diff --git a/tests/pcap/mfex_test b/tests/pcap/mfex_test I would give the pcap file the .pcap extension just to be clear! Actually cannot all the pcaps present in test prior to

Re: [ovs-dev] [v6 07/11] test/sytem-dpdk: Add unit test for mfex autovalidator

2021-07-07 Thread Amber, Kumar
Hi Eelco, Replies are inline. +++ b/tests/mfex_fuzzy.py @@ -0,0 +1,32 @@ +#!/usr/bin/python3 +try: + from scapy.all import * +except ModuleNotFoundError as err: + print(err + ": Scapy") +import sys +import os + +path = os.environ['OVS_DIR'] + "/tests/pcap/fuzzy" This is failing in my setup, as

Re: [ovs-dev] [v6 07/11] test/sytem-dpdk: Add unit test for mfex autovalidator

2021-07-07 Thread Eelco Chaudron
On 6 Jul 2021, at 15:11, Cian Ferriter wrote: From: Kumar Amber Tests: 6: OVS-DPDK - MFEX Autovalidator 7: OVS-DPDK - MFEX Autovalidator Fuzzy Added a new directory to store the PCAP file used in the tests and a script to generate the fuzzy traffic type pcap to be used in fuzzy unit

[ovs-dev] [v6 07/11] test/sytem-dpdk: Add unit test for mfex autovalidator

2021-07-06 Thread Cian Ferriter
From: Kumar Amber Tests: 6: OVS-DPDK - MFEX Autovalidator 7: OVS-DPDK - MFEX Autovalidator Fuzzy Added a new directory to store the PCAP file used in the tests and a script to generate the fuzzy traffic type pcap to be used in fuzzy unit test. Signed-off-by: Kumar Amber --- v5: - fix