Re: [ovs-dev] [PATCH] Fix test 'testing ovn -- IP packet buffering' on Windows

2019-01-28 Thread aserdean
> -Mesaj original- > De la: ovs-dev-boun...@openvswitch.org boun...@openvswitch.org> În numele Ben Pfaff > Trimis: Wednesday, January 23, 2019 5:33 PM > Către: Alin Gabriel Serdean > Cc: d...@openvswitch.org > Subiect: Re: [ovs-dev] [PATCH] Fix test 'testing ovn -

Re: [ovs-dev] [PATCH] Fix test 'testing ovn -- IP packet buffering' on Windows

2019-01-23 Thread Ben Pfaff
On Wed, Jan 23, 2019 at 12:41:10PM +0200, Alin Gabriel Serdean wrote: > The test fails on Windows because of: > <--cut--> > ovn-nbctl: sw0: invalid network address: 2001;1\64 > ovn-nbctl: sw1: invalid network address: 2002;1\64 > <--cut--> > > This is due to the fact msys converts '::1' into

Re: [ovs-dev] [PATCH] Fix test 'testing ovn -- IP packet buffering' on Windows

2019-01-23 Thread Alin Gabriel Serdean
> On 23 Jan 2019, at 12:58, Numan Siddique wrote: > > > > On Wed, Jan 23, 2019 at 4:14 PM Alin Gabriel Serdean > wrote: > The test fails on Windows because of: > <--cut--> > ovn-nbctl: sw0: invalid network address: 2001;1\64 > ovn-nbctl: sw1: invalid network

Re: [ovs-dev] [PATCH] Fix test 'testing ovn -- IP packet buffering' on Windows

2019-01-23 Thread Numan Siddique
On Wed, Jan 23, 2019 at 4:14 PM Alin Gabriel Serdean wrote: > The test fails on Windows because of: > <--cut--> > ovn-nbctl: sw0: invalid network address: 2001;1\64 > ovn-nbctl: sw1: invalid network address: 2002;1\64 > <--cut--> > > This is due to the fact msys converts '::1' into ';1'. > > Use

[ovs-dev] [PATCH] Fix test 'testing ovn -- IP packet buffering' on Windows

2019-01-23 Thread Alin Gabriel Serdean
The test fails on Windows because of: <--cut--> ovn-nbctl: sw0: invalid network address: 2001;1\64 ovn-nbctl: sw1: invalid network address: 2002;1\64 <--cut--> This is due to the fact msys converts '::1' into ';1'. Use IPv6 long form instead of its short variant. Signed-off-by: Alin Gabriel