Benchmark::Timer - Benchmarking with statistical confidence Perl extension to benchmark code, with or without statistical confidence. NEW IN THIS VERSION Version 0.6.1: Thu Sep 16 2004 - Modified Makefile.PL to use Module::Install::CustomInstallationPath - Changed version numbering - Fixed broken dependency specification in Makefile.PL MODULE DEPENDENCIES To use this module, you will need to install: - Time::HiRes If you intend on using the statistical features, you will also need to install: - Statistics::PointEstimation. You should be prompted to install these modules automatically when you run "perl Makefile.PL". INSTALLATION To install this package, change to the directory where you unarchived this distribution and type the following: perl Makefile.PL make make test make install You will be prompted for installation locations. You can suppress these prompts by specifying either "PREFIX=/installation/path" (for installation into a custom location), "INSTALLDIRS=site" (for installation into site-specific Perl directories), or "INSTALLDIRS=perl" (for installation into standard Perl directories). If you make the installation into your own directory, then remember that you must tell perl where to search for modules before trying to 'use' them. For example: use lib '/home/userid/lib'; use Benchmark::Timer; During the 'make test', the statistical test may take some time to run, depending on how accurate "sleep(1)" is on your system. The normal time is less than 5 seconds. DOCUMENTATION Just "perldoc Benchmark::Timer". After installation on Unix systems, you can also do "man Benchmark::Timer". HOMEPAGE Visit http://sourceforge.net/projects/benchmark-timer/ for the latest version, mailing lists, discussion forums, CVS access, and more. REPORTING BUGS You can report bugs by filing a bug report at the project homepage. COPYRIGHT Copyright (c) 2001-2002 Andrew Ho. Copyright (c) 2004 David Coppit. All rights reserved, save those granted by the license. LICENSE This code is distributed under the GNU General Public License (GPL). See the file LICENSE included in the distribution. AUTHOR David Coppit (current maintainer) Andrew Ho (original author)