/usr/share/perl5/Test2/Util/Times.pm is in libtest2-suite-perl 0.000102-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | package Test2::Util::Times;
use strict;
use warnings;
use List::Util qw/sum/;
our $VERSION = '0.000102';
our @EXPORT_OK = qw/render_bench/;
use base 'Exporter';
sub render_bench {
my ($start, $end, $user, $system, $cuser, $csystem) = @_;
my $time = $end - $start;
my $duration;
if ($time < 10) {
$duration = sprintf('%1.5fs', $time);
}
elsif ($time < 60) {
$duration = sprintf('%2.4fs', $time);
}
else {
my $msec = substr(sprintf('%0.2f', $time - int($time)), -2, 2);
my $secs = $time % 60;
my $mins = int($time / 60) % 60;
my $hours = int($time / 60 / 60) % 24;
my $days = int($time / 60 / 60 / 24);
my @units = (qw/d h m/, '');
$duration = '';
for my $t ($days, $hours, $mins, $secs) {
my $u = shift @units;
next unless $t || $duration;
$duration = join ':' => grep { length($_) } $duration, sprintf('%02u%s', $t, $u);
}
$duration ||= '0';
$duration .= ".$msec" if int($msec);
$duration .= 's';
}
my $bench = sprintf(
"%s on wallclock (%5.2f usr %5.2f sys + %5.2f cusr %5.2f csys = %5.2f CPU)",
$duration, $user, $system, $cuser, $csystem, sum($user, $system, $cuser, $csystem),
);
$bench =~ s/\s+/ /g;
$bench =~ s/(\(|\))\s+/$1/g;
return $bench;
}
1;
=pod
=encoding UTF-8
=head1 NAME
Test2::Util::Times - Format timing/benchmark information.
=head1 DESCRIPTION
This modules exports tools for rendering timing data at the end of tests.
=head1 EXPORTS
All exports are optional. You must specify subs to import.
=over 4
=item $str = render_bench($start, $end, $user, $system, $cuser, $csystem)
=item $str = render_bench($start, time(), times())
This will produce a string like one of these (Note these numbers are completely
made up). I<Which string is used depends on the time elapsed.>
0.12345s on wallclock (0.05 usr 0.00 sys + 0.00 cusr 0.00 csys = 0.05 CPU)
11.1234s on wallclock (0.05 usr 0.00 sys + 0.00 cusr 0.00 csys = 0.05 CPU)
01m:54.45s on wallclock (0.05 usr 0.00 sys + 0.00 cusr 0.00 csys = 0.05 CPU)
18h:22m:54.45s on wallclock (0.05 usr 0.00 sys + 0.00 cusr 0.00 csys = 0.05 CPU)
04d:18h:22m:54.45s on wallclock (0.05 usr 0.00 sys + 0.00 cusr 0.00 csys = 0.05 CPU)
The first 2 arguments are the C<$start> and C<$end> times in seconds (as
returned by C<time()> or C<Time::HiRes::time()>).
The last 4 arguments are timing information as returned by the C<times()>
function.
=back
=head1 SOURCE
The source code repository for Test2-Suite can be found at
F<https://github.com/Test-More/Test2-Suite/>.
=head1 MAINTAINERS
=over 4
=item Chad Granum E<lt>exodist@cpan.orgE<gt>
=back
=head1 AUTHORS
=over 4
=item Chad Granum E<lt>exodist@cpan.orgE<gt>
=back
=head1 COPYRIGHT
Copyright 2017 Chad Granum E<lt>exodist@cpan.orgE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://dev.perl.org/licenses/>
=cut
|