diff options
author | Alin Gabriel Serdean <aserdean@ovn.org> | 2017-11-14 03:49:44 +0200 |
---|---|---|
committer | Alin Gabriel Serdean <aserdean@ovn.org> | 2017-11-14 20:40:51 +0200 |
commit | 847dc1c22c0b4af2ba33d15c311be32d34257429 (patch) | |
tree | 11c65b509a33c89b1bbcdf050e7070540d7644d7 /tests/ovn.at | |
parent | 0d8efdc9ca3587ea919cd18a7733fcbb7de08f83 (diff) | |
download | openvswitch-847dc1c22c0b4af2ba33d15c311be32d34257429.tar.gz |
ovn.at: Fix MSYS IPv6 interpretation
Unfortunately MSYS transforms `0::` into the location of the binaries i.e.:
c:\MinGW\msys\1.0\64.
Currently the test:
`testing ovn -- IPv6 Neighbor Solicitation for unknown MAC`
fails because of the above:
"ovn-nbctl: lrp0_ip6: invalid network address: aef0;c:\MinGW\msys\1.0\64"
This patch uses the full form of the IPv6 address instead of its shorter
notation.
Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'tests/ovn.at')
-rw-r--r-- | tests/ovn.at | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ovn.at b/tests/ovn.at index f051d86f5..b6a83cc22 100644 --- a/tests/ovn.at +++ b/tests/ovn.at @@ -8877,7 +8877,7 @@ ovn-nbctl lsp-set-port-security sw0_ip6-port1 \ "50:64:00:00:00:02 aef0::5264:00ff:fe00:0002" ovn-nbctl lr-add lr0_ip6 -ovn-nbctl lrp-add lr0_ip6 lrp0_ip6 00:00:00:00:af:01 aef0::/64 +ovn-nbctl lrp-add lr0_ip6 lrp0_ip6 00:00:00:00:af:01 aef0:0:0:0:0:0:0:0/64 ovn-nbctl lsp-add sw0_ip6 lrp0_ip6-attachment ovn-nbctl lsp-set-type lrp0_ip6-attachment router ovn-nbctl lsp-set-addresses lrp0_ip6-attachment 00:00:00:00:af:01 |