summaryrefslogtreecommitdiff
path: root/tests/ovs-ofctl.at
diff options
context:
space:
mode:
authorGurucharan Shetty <gshetty@nicira.com>2014-06-09 10:04:58 -0700
committerGurucharan Shetty <gshetty@nicira.com>2014-06-26 16:46:44 -0700
commitccad219bdb4d504d97975b3cbdb588af0528afa1 (patch)
tree8818c74a55701ab625e14b7c5e8a4f2bb26ac012 /tests/ovs-ofctl.at
parent055b166862df7cb2abbc09588bd7fa4301f6f275 (diff)
downloadopenvswitch-ccad219bdb4d504d97975b3cbdb588af0528afa1.tar.gz
ovs-ofctl.at: Prevent msys from getting confused with ipv6 address.
msys has a set of rules which triggers an automatic conversion of arguments into something else to suit Windows requirements. Sometimes this also causes unwanted conversions. Details of the rules is here: http://www.mingw.org/wiki/Posix_path_conversion msys converts ::1/::1 into ;1\;1. To prevent this, use fullform ipv6 address of the form 0:0:0:0:0:0:0:1 instead. Signed-off-by: Gurucharan Shetty <gshetty@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'tests/ovs-ofctl.at')
-rw-r--r--tests/ovs-ofctl.at4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ovs-ofctl.at b/tests/ovs-ofctl.at
index 1f8261c18..a093e85f1 100644
--- a/tests/ovs-ofctl.at
+++ b/tests/ovs-ofctl.at
@@ -61,9 +61,9 @@ for test_case in \
'ip,ip_dst=192.168.0.0/24 any' \
'ip,ip_dst=192.0.168.0/255.0.255.0 NXM,OXM,OpenFlow11' \
'ipv6,ipv6_src=::1 NXM,OXM' \
- 'ipv6,ipv6_src=::1/::1 NXM,OXM' \
+ 'ipv6,ipv6_src=0:0:0:0:0:0:0:1/::1 NXM,OXM' \
'ipv6,ipv6_dst=::1 NXM,OXM' \
- 'ipv6,ipv6_dst=::1/::1 NXM,OXM' \
+ 'ipv6,ipv6_dst=0:0:0:0:0:0:0:1/::1 NXM,OXM' \
'ipv6,ipv6_label=5 NXM,OXM' \
'ipv6,ipv6_label=5/1 NXM,OXM' \
'ip,nw_proto=1 any' \