Re: [ovs-dev] [PATCH 4/6] testsuite: Drain the list of jobs in the shell

2017-07-14 Thread Ben Pfaff
On Sat, Jul 15, 2017 at 11:23:04AM +0900, Takashi YAMAMOTO wrote: > Hi, > > 2017/07/15 6:55 "Ben Pfaff" : > > On Sat, Jul 15, 2017 at 02:39:44AM +0900, YAMAMOTO Takashi wrote: > > SUS says: > > When jobs reports the termination status of a job, > > the shell removes its

Re: [ovs-dev] [PATCH 4/6] testsuite: Drain the list of jobs in the shell

2017-07-14 Thread Takashi YAMAMOTO
Hi, 2017/07/15 6:55 "Ben Pfaff" : On Sat, Jul 15, 2017 at 02:39:44AM +0900, YAMAMOTO Takashi wrote: > SUS says: > When jobs reports the termination status of a job, > the shell removes its process ID from the list of those > "known in the current shell execution

Re: [ovs-dev] [PATCH 4/6] testsuite: Drain the list of jobs in the shell

2017-07-14 Thread Ben Pfaff
On Sat, Jul 15, 2017 at 02:39:44AM +0900, YAMAMOTO Takashi wrote: > SUS says: > When jobs reports the termination status of a job, > the shell removes its process ID from the list of those > "known in the current shell execution environment"; > > With NetBSD /bin/sh, the list involves

[ovs-dev] [PATCH 4/6] testsuite: Drain the list of jobs in the shell

2017-07-14 Thread YAMAMOTO Takashi
SUS says: When jobs reports the termination status of a job, the shell removes its process ID from the list of those "known in the current shell execution environment"; With NetBSD /bin/sh, the list involves zombie processes and ends up with "can not fork" during test runs. ---