Re: [ovs-dev] [PATCH 01/12] python tests: Skip python tests specific to Linux

2016-08-29 Thread Paul Boca
Hi Guru, please see my comment inline. Thanks, Paul From: Guru Shetty [mailto:g...@ovn.org] Sent: Friday, August 26, 2016 8:39 PM To: Paul Boca Cc: dev@openvswitch.org Subject: Re: [ovs-dev] [PATCH 01/12] python tests: Skip python tests specific to Linux On 26 August 2016 at 07:40, Paul

Re: [ovs-dev] [PATCH 01/12] python tests: Skip python tests specific to Linux

2016-08-26 Thread Guru Shetty
On 26 August 2016 at 07:40, Paul Boca wrote: > There is a difference between POSIX pid and Windows pid, not all the time > are equal. > On Windows when a python script is started, a sh command is triggered as > the parent > for script. So when we try to get the daemon pid with 'echo $!', this wil

[ovs-dev] [PATCH 01/12] python tests: Skip python tests specific to Linux

2016-08-26 Thread Paul Boca
There is a difference between POSIX pid and Windows pid, not all the time are equal. On Windows when a python script is started, a sh command is triggered as the parent for script. So when we try to get the daemon pid with 'echo $!', this will get the pid of sh not of python.exe as expected. Som