Re: [ovs-dev] [PATCH ovn] tests: offload scapy transformations to a separate daemon

2023-09-14 Thread Ihar Hrachyshka
Thank you Ilya, I've posted a unixctl version of the daemon. Interestingly, in my local tests, it shaved some more execution time for test cases compared to the initial version. The new version at: https://patchwork.ozlabs.org/project/ovn/patch/20230914195607.3983847-1-ihrac...@redhat.com/ On Tue,

Re: [ovs-dev] [PATCH ovn] tests: offload scapy transformations to a separate daemon

2023-08-29 Thread Ilya Maximets
On 8/25/23 18:50, Ihar Hrachyshka wrote: > The daemon life cycle spans over the whole test case life time, which > significantly speeds up test cases that rely on fmt_pkt for packet byte > representations. > > The speed-up comes from the fact that we no longer start a python > environment with all

[ovs-dev] [PATCH ovn] tests: offload scapy transformations to a separate daemon

2023-08-25 Thread Ihar Hrachyshka
The daemon life cycle spans over the whole test case life time, which significantly speeds up test cases that rely on fmt_pkt for packet byte representations. The speed-up comes from the fact that we no longer start a python environment with all scapy modules imported on any fmt_pkt invocation; bu