added comments to describe how to install perl modules needed for performance tests. -- mcafee

git-svn-id: svn://10.0.0.236/trunk@140949 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jj%netscape.com
2003-04-09 23:59:52 +00:00
parent 3c8b96063b
commit f6f7fe4260

View File

@@ -23,7 +23,7 @@ use Config; # for $Config{sig_name} and $Config{sig_num}
use File::Find ();
use File::Copy;
$::UtilsVersion = '$Revision: 1.233 $ ';
$::UtilsVersion = '$Revision: 1.234 $ ';
package TinderUtils;
@@ -37,6 +37,21 @@ require "post-mozilla.pl" if -e "post-mozilla.pl";
#
require "gettime.pl";
#
# For performance tests, we need the following perl modules installed:
# (MacOSX, Linux, Win2k):
#
# Time::HiRes for higher timer resolution
# Bundle::LWP for http (to report data to graph)
#
# The "CPAN" way of installing this is to start here:
# % perl -MCPAN -e shell
# <take defaults..>
# cpan> install Time::HiRes
# [...]
# cpan> install Bundle::LWP
#
sub Setup {
InitVars();
my $args = ParseArgs();