[EMAIL PROTECTED] wrote:
> geoff 2004/09/15 16:55:31
>
> Modified: perl-framework/Apache-Test Changes
> perl-framework/Apache-Test/lib/Apache TestMM.pm
> Log:
> run_tests make target no longer invokes t/TEST -clean, making it
> possible to save a few development cycles when a full cleanup is
> not required between runs.
TestMB.pm probably should be updated to be consistent as well.
David, I think the attached patch is right but I'll leave TestMB entirely up
to you.
--Geoff
? mb.patch
? quick.patch
Index: lib/Apache/TestMB.pm
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestMB.pm,v
retrieving revision 1.7
diff -u -r1.7 TestMB.pm
--- lib/Apache/TestMB.pm 5 Sep 2004 00:11:30 -0000 1.7
+++ lib/Apache/TestMB.pm 15 Sep 2004 23:56:48 -0000
@@ -53,7 +53,6 @@
sub ACTION_run_tests {
my $self = shift;
- $self->depends_on('test_clean');
# XXX I'd love to do this without t/TEST.
$self->do_system($self->perl, $self->_bliblib,
$self->localize_file_path($self->apache_test_script),
@@ -71,8 +70,8 @@
sub ACTION_test {
my $self = shift;
$self->depends_on('code');
- $self->depends_on('run_tests');
$self->depends_on('test_clean');
+ $self->depends_on('run_tests');
}
sub _cmodules {