diff mbox series

[ovs-dev] tests: Only use POSIX-compliant comm flags.

Message ID 20201013232055.GE86739@greg-smith
State Accepted
Headers show
Series [ovs-dev] tests: Only use POSIX-compliant comm flags. | expand

Commit Message

Gregory Smith Oct. 13, 2020, 11:20 p.m. UTC
Fixes: ba40effff1c5 ("Support logical switches with multiple localnet ports")
Signed-off-by: Gregory Smith <gasmith@nutanix.com>
---
 tests/ovn.at | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Mark Michelson Oct. 29, 2020, 6:25 p.m. UTC | #1
Thanks, I acked the patch and pushed it to master.

On 10/13/20 7:20 PM, Gregory Smith wrote:
> Fixes: ba40effff1c5 ("Support logical switches with multiple localnet ports")
> Signed-off-by: Gregory Smith <gasmith@nutanix.com>
> ---
>   tests/ovn.at | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tests/ovn.at b/tests/ovn.at
> index 488fd119b..540e77d11 100644
> --- a/tests/ovn.at
> +++ b/tests/ovn.at
> @@ -50,7 +50,7 @@ m4_define([OVN_CHECK_PACKETS_REMOVE_BROADCAST],
>   
>   m4_define([OVN_CHECK_PACKETS_CONTAIN],
>     [ovn_check_packets__ "$1" "$2"
> -   AT_CHECK([sort $rcv_text | comm --nocheck-order -2 -3 expout -], [0], [])])
> +   AT_CHECK([sort $rcv_text | comm -2 -3 expout -], [0], [])])
>   
>   AT_BANNER([OVN components])
>   
>
diff mbox series

Patch

diff --git a/tests/ovn.at b/tests/ovn.at
index 488fd119b..540e77d11 100644
--- a/tests/ovn.at
+++ b/tests/ovn.at
@@ -50,7 +50,7 @@  m4_define([OVN_CHECK_PACKETS_REMOVE_BROADCAST],
 
 m4_define([OVN_CHECK_PACKETS_CONTAIN],
   [ovn_check_packets__ "$1" "$2"
-   AT_CHECK([sort $rcv_text | comm --nocheck-order -2 -3 expout -], [0], [])])
+   AT_CHECK([sort $rcv_text | comm -2 -3 expout -], [0], [])])
 
 AT_BANNER([OVN components])