diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-27 12:46:44 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-27 12:46:44 +0000 |
commit | 43ef773bf404929508ebcd1d5537829ee65ae26f (patch) | |
tree | a2e2ace7e985321255186df0a7bbd4791dd5cadd /lib/Test/Harness | |
parent | f8daf111cf97dcea4d3f7a99b328e7928e16363c (diff) | |
download | perl-43ef773bf404929508ebcd1d5537829ee65ae26f.tar.gz |
Upgrade to Test::Harness 2.52
p4raw-id: //depot/perl@24989
Diffstat (limited to 'lib/Test/Harness')
-rw-r--r-- | lib/Test/Harness/Changes | 18 | ||||
-rw-r--r-- | lib/Test/Harness/bin/prove | 8 |
2 files changed, 25 insertions, 1 deletions
diff --git a/lib/Test/Harness/Changes b/lib/Test/Harness/Changes index 6efac351da..cb6cf4f0dc 100644 --- a/lib/Test/Harness/Changes +++ b/lib/Test/Harness/Changes @@ -1,5 +1,23 @@ Revision history for Perl extension Test::Harness +2.52 Sun Jun 26 23:05:19 CDT 2005 + No changes + +2.51_02 + [ENHANCEMENTS] + * The Test::Harness timer is now off by default. Set HARNESS_TIMER + true if you want it. Added --timer flag to prove. + +2.50_01 + [FIXES] + * Call CORE::time() to figure out if we should print when we're + printing once per second. Otherwise, we're using Time::HiRes' + version of it. Thanks, Nicholas Clark. + +2.50 Tue Jun 21 14:32:12 CDT 2005 + [FIXES] + * Added some includes in t/strap-analyze.t to make Cygwin happy. + 2.49_02 Tue Jun 21 09:54:44 CDT 2005 [FIXES] * Added some includes in t/test_harness.t to make Cygwin happy. diff --git a/lib/Test/Harness/bin/prove b/lib/Test/Harness/bin/prove index 3b109d924c..ee62afbc3e 100644 --- a/lib/Test/Harness/bin/prove +++ b/lib/Test/Harness/bin/prove @@ -40,6 +40,7 @@ GetOptions( 's|shuffle' => \$shuffle, 't' => sub { unshift @switches, "-t" }, # Always want -t up front 'T' => sub { unshift @switches, "-T" }, # Always want -T up front + 'timer' => \$Test::Harness::Timer, 'v|verbose' => \$Test::Harness::verbose, 'V|version' => sub { print_version(); exit; }, 'ext=s@' => \@ext, @@ -179,6 +180,7 @@ Options: -s, --shuffle Run the tests in a random order. -T Enable tainting checks -t Enable tainting warnings + --timer Print elapsed time after each test file -v, --verbose Display standard output of test scripts while running them. -V, --version Display version info @@ -292,6 +294,10 @@ Runs test programs under perl's -t taint warning mode. Runs test programs under perl's -T taint mode. +=head2 --timer + +Print elapsed time after each test file + =head2 -v, --verbose Display standard output of test scripts while running them. Also sets @@ -323,7 +329,7 @@ Andy Lester C<< <andy@petdance.com> >> =head1 COPYRIGHT -Copyright 2003 by Andy Lester C<< <andy@petdance.com> >>. +Copyright 2005 by Andy Lester C<< <andy@petdance.com> >>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. |