Hi All,

Can some one help me understand why I am getting the following message on the following perl program :

perl program
============
#!/usr/local/bin/perl

%hsh = (
        ABC => -abc,
        DEF => -def,
       );

for $key (keys %hsh){
  print "Key = $key Value = $hsh{$key}\n";
}
=============

command used : perl -MDevel::Cover <aboveProgram>

output:
=======
Devel::Cover 0.55: Collecting coverage data for branch, condition, statement, subroutine and time.
    Pod coverage is unvailable.  Please install Pod::Coverage from CPAN.
Selecting packages matching:
Ignoring packages matching:
    /Devel/Cover[./]
Ignoring packages in:
    .
    /proj/dite/WorkArea/Raja/perl/lib
    /proj/dite/WorkArea/Raja/perl/lib/5.8.8
    /proj/dite/WorkArea/Raja/perl/lib/5.8.8/i686-linux
    /proj/dite/WorkArea/Raja/perl/lib/site_perl
    /proj/dite/WorkArea/Raja/perl/lib/site_perl/5.8.8
    /proj/dite/WorkArea/Raja/perl/lib/site_perl/5.8.8/i686-linux
Key = ABC Value = -abc
Key = DEF Value = -def
Devel::Cover: Can't find file "../../lib/Storable.pm": ignored.
Devel::Cover: Writing coverage database to /sp/dftm/Activities/MemoryBIST/pbist/flow/data/cover_db/runs/1150441786.22790.00593 ----------------------------------- ------ ------ ------ ------ ------ ------ File stmt bran cond sub time total ----------------------------------- ------ ------ ------ ------ ------ ------ ...6905/LearnPerl/Hash_Example_2.pl 100.0 n/a n/a n/a 100.0 100.0 Total 100.0 n/a n/a n/a 100.0 100.0 ----------------------------------- ------ ------ ------ ------ ------ ------
=========

I couldn't understand what the following message means :

Devel::Cover: Can't find file "../../lib/Storable.pm": ignored.

Even though this is being ignored here, this is causing problems down the line. Can you help me on what this means and how to overcome this ?


Thanks and Regards,
Rajanikanth

Reply via email to