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

2016-08-30 Thread Guru Shetty
On 30 August 2016 at 05:00, 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 V2 01/10] python tests: Skip python tests specific to Linux

2016-08-30 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