diff mbox series

[ovs-dev,2/8] tests: Fixed "lflow cache operations".

Message ID 20240604131042.825909-3-xsimonar@redhat.com
State Accepted
Headers show
Series Flaky tests fixes and tests cleanup. | 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 success github build: passed

Commit Message

Xavier Simonart June 4, 2024, 1:10 p.m. UTC
Test was adding acl on an non-existing pg, causing warning/errors
in ovn-controller.log.

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

Patch

diff --git a/tests/ovn.at b/tests/ovn.at
index f4f8934f7..311393bd8 100644
--- a/tests/ovn.at
+++ b/tests/ovn.at
@@ -28849,6 +28849,7 @@  ovn-nbctl ls-add ls1 \
     -- lsp-add ls1 lsp1 \
     -- lsp-add ls1 lsp2 \
     -- pg-add pg1 lsp1 lsp2 \
+    -- pg-add pg2 lsp1 \
     -- create Address_Set name=as1 addresses=\"10.0.0.1\",\"10.0.0.2\"
 check ovn-nbctl --wait=hv sync
 wait_for_ports_up lsp1 lsp2
@@ -28903,11 +28904,7 @@  check ovn-nbctl --wait=hv sync
 AT_CHECK([test "$expr_cnt" = "$(get_cache_count cache-expr)"], [0], [])
 AT_CHECK([test "$matches_cnt" = "$(get_cache_count cache-matches)"], [0], [])
 
-# Ignore errors "Syntax error at \`\@pg2\' expecting port group name"
-# Need  to investigate whteher those errors are expected
-OVN_CLEANUP([hv1
-/Syntax error at/d
-])
+OVN_CLEANUP([hv1])
 
 AT_CLEANUP
 ])