Re: performance testing with Test::

2009-08-25 Thread Jim Cromie
On Thu, Aug 20, 2009 at 1:21 PM, Michael G Schwern wrote: > Jim Cromie wrote: > > What's notable in its absence is any *real* use of perl-dist's tests. > > I dug into the code, and found that this works. > > > > $> HARNESS_TIMER=1 make test > > ext/threads/t/end

Re: killing all child processes created in a test

2009-08-25 Thread Jonathan Swartz
Right. Unfortunately, httpd not only gets a ppid of 1, but it starts a new process group itself (which makes sense for its needs). If only a process could be a member of multiple hierarchical process groups :), but as I understand it, it only gets one. On Tue, 25 Aug 2009 09:56 +0100, "Mark Morgan

Re: killing all child processes created in a test

2009-08-25 Thread Mark Morgan
On Mon, Aug 24, 2009 at 6:37 PM, Jonathan Swartz wrote: > Yes, getting the pid from each process launch is not the problem - it's > more of a wish that I could do this automagically somehow, instead of > having to collect all the pids somewhere. But it seems as if I'll have > to do that. Is it fea

Re: killing all child processes created in a test

2009-08-25 Thread Jonathan Swartz
Yes, getting the pid from each process launch is not the problem - it's more of a wish that I could do this automagically somehow, instead of having to collect all the pids somewhere. But it seems as if I'll have to do that. Thanks Jon On Mon, 24 Aug 2009 13:00 -0400, "Greg Sabino Mullane" wrote