diff mbox series

[ovs-dev,2/2] ovn-performance.at: Fix syntax error in ACL.

Message ID 1562732591-47881-2-git-send-email-hzhou8@ebay.com
State Accepted
Commit 809ac71dccaba4ecfa3b623d2aacba1760eb17a2
Headers show
Series [ovs-dev,1/2] ovn-performance.at: Missing steps for connecting LS to LR. | expand

Commit Message

Han Zhou July 10, 2019, 4:23 a.m. UTC
From: Han Zhou <hzhou8@ebay.com>

This doesn't impact the effectiveness of the test but just fix an
obvious error in ACL syntax which was noticed when looking at test
logs.

Signed-off-by: Han Zhou <hzhou8@ebay.com>
---
 tests/ovn-performance.at | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Ben Pfaff July 11, 2019, 9:07 p.m. UTC | #1
On Tue, Jul 09, 2019 at 09:23:11PM -0700, Han Zhou wrote:
> From: Han Zhou <hzhou8@ebay.com>
> 
> This doesn't impact the effectiveness of the test but just fix an
> obvious error in ACL syntax which was noticed when looking at test
> logs.
> 
> Signed-off-by: Han Zhou <hzhou8@ebay.com>

Thanks for the fixes!  I applied these to master.
diff mbox series

Patch

diff --git a/tests/ovn-performance.at b/tests/ovn-performance.at
index 5e061ee..a8a15f8 100644
--- a/tests/ovn-performance.at
+++ b/tests/ovn-performance.at
@@ -332,7 +332,7 @@  for i in 1 2; do
     # Add ACLs for port $lp
     OVN_CONTROLLER_EXPECT_NO_HIT(
         [hv1 hv2], [lflow_run],
-        [ovn-nbctl --wait=hv acl-add $ls to-lport 1001 'outport == \"$lp\" && ip4.src == \\$$as' allow]
+        [ovn-nbctl --wait=hv acl-add $ls to-lport 1001 'outport == \"$lp\" && ip4.src == \$$as' allow]
     )
     OVN_CONTROLLER_EXPECT_NO_HIT(
         [hv1 hv2], [lflow_run],
@@ -357,7 +357,7 @@  for i in 1 2; do
     # Delete ACLs for port $lp
     OVN_CONTROLLER_EXPECT_NO_HIT(
         [hv1 hv2], [lflow_run],
-        [ovn-nbctl --wait=hv acl-del $ls to-lport 1001 'outport == \"$lp\" && ip4.src == \\$$as']
+        [ovn-nbctl --wait=hv acl-del $ls to-lport 1001 'outport == \"$lp\" && ip4.src == \$$as']
     )
     OVN_CONTROLLER_EXPECT_NO_HIT(
         [hv1 hv2], [lflow_run],