stas 01/12/05 00:23:06
Modified: perl-framework/Apache-Test README Log: - document the stress testing options in the cheat sheet Revision Changes Path 1.17 +17 -0 httpd-test/perl-framework/Apache-Test/README Index: README =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/README,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- README 2001/11/22 03:23:34 1.16 +++ README 2001/12/05 08:23:06 1.17 @@ -126,3 +126,20 @@ run all test through mod_proxy % t/TEST -proxy + +---------------------------------------------------------------------- +Stress testing + +run all tests 10 times in a random order (the seed is autogenerated +and reported) +% t/TEST -times=10 -order=random + +run all tests 10 times in a random order using the seed obtained from +the previous random run (e.g. 2352211): +% t/TEST -times=10 -order=2352211 + +rotate all tests 10 times (a, b, c, a, b, c) +% t/TEST -times=10 -order=rotate + +repeat all tests 10 times (a, a, b, b, c, c) +% t/TEST -times=10 -order=repeat
