theory 2004/07/09 13:01:26
Modified: perl-framework/Apache-Test Changes
perl-framework/Apache-Test/lib/Apache TestMB.pm
Log:
Be verbose in TestMB when verbosity is called for, but not otherwise.
Revision Changes Path
1.147 +4 -0 httpd-test/perl-framework/Apache-Test/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- Changes 9 Jul 2004 18:38:34 -0000 1.146
+++ Changes 9 Jul 2004 20:01:26 -0000 1.147
@@ -18,6 +18,10 @@
to match the naming convention used in Apache::TestMM and elsewhere.
[David]
+Apache::TestMB now only prints the "Generating test running script"
+message if verbosity is enabled (e.g., by passing --verbose when
+executing Build.PL). [David]
+
=item 1.12 - June 28, 2004
1.5 +1 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestMB.pm
Index: TestMB.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestMB.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- TestMB.pm 9 Jul 2004 18:37:58 -0000 1.4
+++ TestMB.pm 9 Jul 2004 20:01:26 -0000 1.5
@@ -135,7 +135,7 @@
}
# Make it so!
- print "Generating test running script $script\n";
+ print "Generating test running script $script\n" if $self->verbose;
Apache::Test::config()->write_perlscript($script, $body);
$self->add_to_cleanup($self->apache_test_script);
}