libdevel-cover-perl 0.77-1ubuntu2 source package in Ubuntu

Changelog

libdevel-cover-perl (0.77-1ubuntu2) oneiric; urgency=low

  * No-change upload to build against Perl 5.14.
 -- Martin Pitt <email address hidden>   Tue, 05 Jul 2011 12:21:28 +0200

Upload details

Uploaded by:
Martin Pitt
Uploaded to:
Oneiric
Original maintainer:
Ubuntu Developers
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libdevel-cover-perl_0.77.orig.tar.gz 177.3 KiB 89ed0795fd5015d914f42c5da861fe8739df099c26966d37c9d5531f133f866f
libdevel-cover-perl_0.77-1ubuntu2.debian.tar.gz 5.5 KiB 3d5554bb1969e150456ea6f7fc7a2ea05d0ef95db5c26c7cf360ef7225dc7e6b
libdevel-cover-perl_0.77-1ubuntu2.dsc 2.3 KiB 818f35b225a300573783dfe8c99cde772345a223f68c758ccb1e6243363dd82e

Available diffs

View changes file

Binary packages built by this source

libdevel-cover-perl: Perl tool for determining code coverage metrics

 Devel::Cover is a Perl module that helps collect and display code coverage
 information. Code coverage information is collected using a pluggable runops
 function which counts how many times each op is executed. This data is then
 mapped back to reality using the B compiler modules. There is also a another
 statement profiler which needs a better backend to be really useful.
 .
 Statement, branch, condition, subroutine, pod and time coverage information is
 reported. Statement coverage data should be reasonable, although there may be
 some statements which are not reported. Branch and condition coverage data
 should be mostly accurate too, although not always what one might initially
 expect. Subroutine coverage should be as accurate as statement coverage. Pod
 coverage comes from Pod::Coverage. If Pod::Coverage::CountParents is available
 it will be used instead. Coverage data for path coverage are not yet
 collected.
 .
 The cover program can be used to generate coverage reports. Another included
 program, gcov2perl, can convert gcov files to Devel::Cover databases.