Ask a Question related to PERL Miscellaneous, Design and Development.
-
Himal #1
Devel::Coverage
Hi all,
I am new to using Perl and am trying to do some coverage analysis.
When I do
perl -d:Coverage temp.pl
I get Cant locate Devel/Coverage.pm. What should I do for this.
Also do I alway have to do
perl -d:Coverage temp.pl
to get/update the .cvp file.
Thanks for any input.
himal.
Himal Guest
-
[RFC] Devel::Dependencies
Hello, after reading my article "A Timely Start" (http://www.perl.com/pub/a/2005/12/21/a_timely_start.html) some people have expressed the wish... -
visualizing B-tree index coverage
Does anyone know of a tools that allows one to visualize the tree created by a multi-column B-tree index? A picture of a tree with branches,... -
Measure Ink Coverage
I would like to know if Illustrator or Photoshop can calculate the amount of ink coverage a particular image or letter will use as compared to... -
Testing code branching coverage
I'm wondering if it might be possible to write ruby code that could dynamically check my classes for branches and keep track of each branch during... -
Determining Coverage
A co-worker was finally able to dig it up in some notes from a class. The equation is 255 - (histogram mean value) / 255 = % coverage. Hopefully... -
James E Keenan #2
Re: Devel::Coverage
[email]himal5@hotmail.com[/email] (Himal) wrote in message news:<365e1935.0307010656.8378c1d@posting.google.c om>...
Devel::Coverage is not included in the standard Perl distribution.> Hi all,
> I am new to using Perl and am trying to do some coverage analysis.
> When I do
> perl -d:Coverage temp.pl
> I get Cant locate Devel/Coverage.pm. What should I do for this.
>
A quick test I use in this sitation: At the command prompt, type
"perldoc Devel::Coverage". If the response is no documentation
available, then, at the very least, you don't have any documentation
for that module and, in 99+% of the cases, the module is not loaded.
If you have the proper permissions, you can load it yourself from
CPAN:
[url]http://search.cpan.org/author/RJRAY/Devel-Coverage-0.2/Coverage.pm[/url]
Note: the documentation on CPAN describes this module as "still very
early alpha-quality" -- which of course means that it would not be
included in any standard Perl distribution and why you do not have it
loaded.
HTH
Jim Keenan
James E Keenan Guest
-
Himal #3
Re: Devel::Coverage
Well it was my error in using Devel::Coverage that was giving me
problems.
I have downloaded Devel-Coverage-0.2.gz from CPAN and the README in it
explains it rather simply how to go about it.
There do seem to be an issue using it with perl 5.8.0.
Cheers,
Himal.
[email]himal5@hotmail.com[/email] (Himal) wrote in message news:<365e1935.0307010656.8378c1d@posting.google.c om>...> Hi all,
> I am new to using Perl and am trying to do some coverage analysis.
> When I do
> perl -d:Coverage temp.pl
> I get Cant locate Devel/Coverage.pm. What should I do for this.
>
> Also do I alway have to do
> perl -d:Coverage temp.pl
> to get/update the .cvp file.
>
> Thanks for any input.
> himal.Himal Guest
-
James E Keenan #4
Re: Devel::Coverage
[email]himal5@hotmail.com[/email] (Himal) wrote in message news:<365e1935.0307020447.57c48e88@posting.google. com>...
I took a look at this myself. Note that version 0.2 has not been> Well it was my error in using Devel::Coverage that was giving me
> problems.
>
> I have downloaded Devel-Coverage-0.2.gz from CPAN and the README in it
> explains it rather simply how to go about it.
>
> There do seem to be an issue using it with perl 5.8.0.
>
updated since July 2000 (predating Perl 5.8 by 23 months) and did not
include *any* tests in its distribution. Having no tests, it never
passed any installation tests conducted by CPAN testers. If you have
further problems with it, you will have no choice but to contact the
module's author directly -- and hope he is still maintaining it!
Jim Keenan
James E Keenan Guest



Reply With Quote

