Re: [ovs-dev] [PATCH ovn] system-tests: Reduce flakiness of ACL reject tests

2023-03-02 Thread Dumitru Ceara
On 3/1/23 09:18, Simon Horman wrote: > On Tue, Feb 21, 2023 at 01:38:56PM +0100, Ales Musil wrote: >> The tests are looking for specific output from tcpdump >> counting number of occurrences and expecting only 1. It >> might happen that in the time period there are already two >> or more packets

Re: [ovs-dev] [PATCH ovn] system-tests: Reduce flakiness of ACL reject tests

2023-03-01 Thread Simon Horman
On Tue, Feb 21, 2023 at 01:38:56PM +0100, Ales Musil wrote: > The tests are looking for specific output from tcpdump > counting number of occurrences and expecting only 1. It > might happen that in the time period there are already two > or more packets and the test simply fails. Change the

[ovs-dev] [PATCH ovn] system-tests: Reduce flakiness of ACL reject tests

2023-02-21 Thread Ales Musil
The tests are looking for specific output from tcpdump counting number of occurrences and expecting only 1. It might happen that in the time period there are already two or more packets and the test simply fails. Change the condition to be greater or equal to one. Signed-off-by: Ales Musil ---