stas 01/12/30 22:18:52
Modified: perl-framework/Apache-Test/lib/Apache TestRun.pm
Log:
s/error/info/ warnings level when an old core file is found at the startup
(because it's *not* an error for the current test)
Revision Changes Path
1.78 +1 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm
Index: TestRun.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- TestRun.pm 31 Dec 2001 06:16:07 -0000 1.77
+++ TestRun.pm 31 Dec 2001 06:18:52 -0000 1.78
@@ -607,7 +607,7 @@
finddepth(sub {
return unless /^core$/;
my $core = "$File::Find::dir/$_";
- error "consider removing an old $core file before running tests";
+ info "consider removing an old $core file before running tests";
# remember the timestamp of $core so we can check if it's the
# old core file at the end of the run and not complain then
$core_files{$core} = -M $core;