[patch] better failure diagnostics for config token substitution

2001-12-23 Thread Stas Bekman
if the config token get mistyped, e.g. @servrename@ the current replace() sub will simply die without helping to locate which token is unknown to Apache-Test. This patch reports the offensive token (of course it'd be nice to tell which file it comes from but the current implementation doesn't

[patch] don't complain about old core files

2001-12-23 Thread Stas Bekman
this patch: - s/scan/scan_core/ for consistency with warn_core - don't complain aload when an old core from some old run is found (i'm tired of remembering to remove old core files) Index: Apache-Test/lib/Apache/TestRun.pm === RCS

Re: [patch] autogeneration of TEST/SMOKE/REPORT

2001-12-23 Thread Stas Bekman
Doug MacEachern wrote: On Fri, 21 Dec 2001, Stas Bekman wrote: This patch removes the need for t/TEST.PL, t/SMOKE.PL, build/bugreport.pl and implements in each set of the classes used by these scripts a generate_script() method, which generates these scripts. - If you try to generate t/SMOKE

Re: [patch] catch server dies early (was Re: perl-framework: mod_dav but not mod_dav?)

2001-12-23 Thread Stas Bekman
On Mon, 24 Dec 2001, Stas Bekman wrote: On Tue, 4 Dec 2001, Doug MacEachern wrote: On Wed, 5 Dec 2001, Stas Bekman wrote: ok, but that catches only syntax errors. if we can catch the return status from system() we can catch all errors, causing the failure. that would be great.