"xargs echo" introduces "^M" character inbetween the records on Windows. Workaround it.
Signed-off-by: Gurucharan Shetty <gshe...@nicira.com> --- tests/ovs-vsctl.at | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/ovs-vsctl.at b/tests/ovs-vsctl.at index 9fa3468..f27ffbd 100644 --- a/tests/ovs-vsctl.at +++ b/tests/ovs-vsctl.at @@ -1171,8 +1171,9 @@ AT_CHECK([RUN_OVS_VSCTL( type : linux-htb ], [], [OVS_VSCTL_CLEANUP]) AT_CHECK([RUN_OVS_VSCTL( - [--columns=other_config list Queue | sort | xargs echo])], [0], -[other_config : {max-rate=100000000, min-rate=100000000} other_config : {min-rate=500000000} + [--columns=other_config list Queue | sort | sed '/^$/d'])], [0], +[other_config : {max-rate="100000000", min-rate="100000000"} +other_config : {min-rate="500000000"} ], [], [OVS_VSCTL_CLEANUP]) AT_CHECK([RUN_OVS_VSCTL( [clear Port a1 qos], -- 1.7.9.5 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev