stas 02/03/07 00:12:05
Modified: src/docs/2.0/devel/testing testing.pod
Log:
-document -trace option
Revision Changes Path
1.14 +26 -2 modperl-docs/src/docs/2.0/devel/testing/testing.pod
Index: testing.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/devel/testing/testing.pod,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- testing.pod 28 Feb 2002 16:23:23 -0000 1.13
+++ testing.pod 7 Mar 2002 08:12:05 -0000 1.14
@@ -118,8 +118,8 @@
% t/TEST -help
-to get the list of options you can use during testing. They are
-covered in the rest of this document.
+to get the list of options you can use during testing. Most options
+are covered further in this document.
=head2 Basic Testing
@@ -280,6 +280,30 @@
cannot run tail(1) on it before the server starts. Every time C<t/TEST
-clean> is run, I<t/logs/error_log> gets deleted, therefore you have
to run the tail(1) command again, when the server is started.
+
+=head2 Controlling the Apache::Test's Sound to Noise Ratio
+
+In addition to controlling the verbosity of the test scripts, you can
+control the amount of information printed by the C<Apache::Test>
+framework itself. Similar to Apache's log levels, C<Apache::Test> uses
+these levels for controlling its sound to noise ratio:
+
+ emerg alert crit error warning notice info debug
+
+where I<emerg> is the for the most important messages and I<debug> for
+the least important ones.
+
+Currently the default level is I<info>, therefore any messages which
+fall into the I<info> category and above (I<notice>, I<warning>,
+etc). If for example you want to see the I<debug> messages you can
+change the default level using I<-trace> option:
+
+ % t/TEST -trace=debug ...
+
+or if you want to get only I<warning> messages and above, use:
+
+ % t/TEST -trace=warning ...
+
=head2 Stress Testing
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]