diff mbox series

[ovs-dev,02/15] tests: fixed "Logical router policy packet marking"

Message ID 20230918164714.3144984-3-xsimonar@redhat.com
State Accepted
Headers show
Series Fixed another set of flaky Unit Tests | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed
ovsrobot/github-robot-_ovn-kubernetes fail github build: failed

Commit Message

Xavier Simonart Sept. 18, 2023, 4:47 p.m. UTC
The test was sometimes failing if an arp packet was received
after installing priority=0 flow, and before installing
the flow matching arp.

Signed-off-by: Xavier Simonart <xsimonar@redhat.com>
---
 tests/ovn.at | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tests/ovn.at b/tests/ovn.at
index ba5ce298a..6aabe985b 100644
--- a/tests/ovn.at
+++ b/tests/ovn.at
@@ -28137,9 +28137,10 @@  OVS_WAIT_UNTIL([
 ])
 
 as hv1 check ovs-ofctl del-flows br-phys
+
 AT_DATA([flows.txt], [dnl
-table=0, priority=0 actions=NORMAL
 table=0, priority=200 arp,actions=drop
+table=0, priority=0 actions=NORMAL
 table=0, priority=100, pkt_mark=0x64 actions=drop
 table=0, priority=100, pkt_mark=0x2 actions=drop
 table=0, priority=100, pkt_mark=0x3 actions=drop