[ovs-dev] [PATCH] ovs-vsctl.at: Fix a ssl unit test on Windows.

2015-08-24 Thread Gurucharan Shetty
In Windows, when we do a 'pwd', it calls 'pwd -W' to give a Windows path. ovs-pki utility does not understand Windows path style, so the test fails. This commit prevents the overloading of 'pwd' command to let ovs-pki generate the certificates correctly. Reported-by: Ben Pfaff Signed-off-by: Guru

Re: [ovs-dev] [PATCH] ovs-vsctl.at: Fix a ssl unit test on Windows.

2015-08-24 Thread Ben Pfaff
On Mon, Aug 24, 2015 at 07:45:22AM -0700, Gurucharan Shetty wrote: > In Windows, when we do a 'pwd', it calls 'pwd -W' to give > a Windows path. ovs-pki utility does not understand Windows > path style, so the test fails. This commit prevents the > overloading of 'pwd' command to let ovs-pki genera

Re: [ovs-dev] [PATCH] ovs-vsctl.at: Fix a ssl unit test on Windows.

2015-08-24 Thread Gurucharan Shetty
On Mon, Aug 24, 2015 at 10:16 AM, Ben Pfaff wrote: > On Mon, Aug 24, 2015 at 07:45:22AM -0700, Gurucharan Shetty wrote: >> In Windows, when we do a 'pwd', it calls 'pwd -W' to give >> a Windows path. ovs-pki utility does not understand Windows >> path style, so the test fails. This commit prevents

Re: [ovs-dev] [PATCH] ovs-vsctl.at: Fix a ssl unit test on Windows.

2015-08-24 Thread Ben Pfaff
On Mon, Aug 24, 2015 at 02:27:50PM -0700, Gurucharan Shetty wrote: > On Mon, Aug 24, 2015 at 10:16 AM, Ben Pfaff wrote: > > On Mon, Aug 24, 2015 at 07:45:22AM -0700, Gurucharan Shetty wrote: > >> In Windows, when we do a 'pwd', it calls 'pwd -W' to give > >> a Windows path. ovs-pki utility does no