From f6f7fe4260f3dd62241a158d4db01efec6281e2b Mon Sep 17 00:00:00 2001 From: "jj%netscape.com" Date: Wed, 9 Apr 2003 23:59:52 +0000 Subject: [PATCH] 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 --- mozilla/tools/tinderbox/build-seamonkey-util.pl | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/mozilla/tools/tinderbox/build-seamonkey-util.pl b/mozilla/tools/tinderbox/build-seamonkey-util.pl index 6e0f39d4058..2a5bd85c507 100644 --- a/mozilla/tools/tinderbox/build-seamonkey-util.pl +++ b/mozilla/tools/tinderbox/build-seamonkey-util.pl @@ -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 +# +# cpan> install Time::HiRes +# [...] +# cpan> install Bundle::LWP +# + sub Setup { InitVars(); my $args = ParseArgs();