Re: ulimit

2003-07-09 Thread Stas Bekman
, well, I don't have a TEST.PL, so I won't worry about it. I was just wondering if there was a parameter to C<< Apache::TestRunPerl->generate_script >> or something that I could use. ulimit setting is done to allow core files to be generated. It doesn't matter if your

Re: ulimit

2003-07-02 Thread David Wheeler
On Tuesday, July 1, 2003, at 06:19 PM, Geoffrey Young wrote: looks like setting $ENV{APACHE_TEST_ULIMIT_SET}=1 should do the trick. optionally, you could locally override set_ulimit() from your TEST.PL use Apache::TestRun; local *Apache::TestRun::set_ulimit = sub {1}; Ah, well, I don't have a TEST

Re: ulimit

2003-07-02 Thread Geoffrey Young
David Wheeler wrote: Hi All, Is there any way to prevent Apache::Test from setting ulimit during `make test`? Mine is a Pure Perl module, and I don't really need to worry about core files. I'd like to gain the extra time taken to set and unset it repeatedly. looks like se

ulimit

2003-07-02 Thread David Wheeler
Hi All, Is there any way to prevent Apache::Test from setting ulimit during `make test`? Mine is a Pure Perl module, and I don't really need to worry about core files. I'd like to gain the extra time taken to set and unset it repeatedly. TIA, David -- Dav

[patch] preserving the ARGV intact for ulimit restart

2002-01-16 Thread Stas Bekman
currently this doesn't work: t/TEST -preamble "PerlTrace all" since when ulimit restarts, it executes: t/TEST -preamble PerlTrace all "@ARGV" stringification looses the "/' delimitors. this patch attempts to fix this bug. Index