Server IP : 172.16.15.8 / Your IP : 18.191.9.9 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0555) : /bin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
#!/usr/bin/perl -w # Run this to get a coverage analysis of the embedded documentation use Pod::Coverage; use strict; print "Pod coverage analysis v1.00 (C) by Tels 2001.\n"; print "Using Pod::Coverage v$Pod::Coverage::VERSION\n\n"; print scalar localtime()," Starting analysis:\n\n"; my $covered = 0; my $uncovered; my $count = 0; my $c; open FILE, 'MANIFEST' or die "Can't read MANIFEST: $!"; while (<FILE>) { chomp; my ($file) = split /[\s\t]/,$_; next unless $file =~ /^lib.*\.pm$/; $file =~ s/^lib\///; # remove lib and .pm $file =~ s/\.pm$//; $file =~ s/\//::/g; # / => :: my $rc = Pod::Coverage->new( package => $file ); $covered += $rc->covered(); $uncovered += $rc->uncovered(); $count ++; $c = $rc->coverage() || 0; $c = int($c * 10000)/100; print "$file has a doc coverage of $c%.\n"; my @naked = $rc->naked(); if (@naked > 0) { print "Uncovered routines are:\n"; print " ",join("\n ",sort @naked),"\n"; # sort by name # could sort by line_num } print "\n"; } my $total = $covered+$uncovered; my $average = 'unknown'; $average = int(10000*$covered/$total)/100 if $total > 0; print "Summary:\n"; print " sub routines total : $total\n"; print " sub routines covered : $covered\n"; print " sub routines uncovered: $uncovered\n"; print " total coverage : $average%\n\n";