dougm 01/12/14 01:20:00
Modified: perl-framework/Apache-Test/lib/Apache TestRun.pm
Log:
dont configure() during -clean
Revision Changes Path
1.74 +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.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- TestRun.pm 2001/12/14 08:55:25 1.73
+++ TestRun.pm 2001/12/14 09:20:00 1.74
@@ -530,7 +530,7 @@
# if configure() fails for some reason before it has flushed the
# config to a file, save it so -clean will be able to clean
- eval { $self->configure; };
+ eval { $self->configure } unless $self->{opts}->{clean};
if ($@) {
error "configure() has failed:\n$@";
warning "forcing Apache::TestConfig object save";